From b2d87395050c50d1af57be343984434a27095f3c Mon Sep 17 00:00:00 2001 From: Gattopandacorno Date: Mon, 19 Dec 2022 09:57:55 +0100 Subject: [PATCH] Remove `bundle` param from `INTERFACE axis` Co-authored-by: Fabio Zanichelli <274956@studenti.unimore.it> Co-authored-by: Stefano Pigozzi <256895@studenti.unimore.it> --- hls/assignment/sobel/sobel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hls/assignment/sobel/sobel.cpp b/hls/assignment/sobel/sobel.cpp index f9e0a1c..6561eda 100644 --- a/hls/assignment/sobel/sobel.cpp +++ b/hls/assignment/sobel/sobel.cpp @@ -3,8 +3,8 @@ void sobel(uint8_t *__restrict__ out, uint8_t *__restrict__ in, const int width, const int height) { -#pragma HLS INTERFACE axis port=out bundle=boutput -#pragma HLS INTERFACE axis port=in bundle=binput +#pragma HLS INTERFACE axis port=out +#pragma HLS INTERFACE axis port=in #pragma HLS INTERFACE s_axilite port=width bundle=bwidth #pragma HLS INTERFACE s_axilite port=height bundle=bheight