diff --git a/sw/applications/example_im2col/im2colGolden.c b/sw/applications/example_im2col/im2colGolden.c index 94f86b717..7ffd56bb9 100644 --- a/sw/applications/example_im2col/im2colGolden.c +++ b/sw/applications/example_im2col/im2colGolden.c @@ -40,7 +40,6 @@ const uint32_t golden_im2col_nchw[108] = { 43660, 52141, 0, 52033, 35992, 0, 0, 0, 0 }; - const uint32_t input_image_nhwc[48] = { 4047, 16986, 10416, 22393, 36967, 57252, diff --git a/sw/applications/example_im2col/im2col_lib.c b/sw/applications/example_im2col/im2col_lib.c index 35d37b2ef..ae4d11604 100644 --- a/sw/applications/example_im2col/im2col_lib.c +++ b/sw/applications/example_im2col/im2col_lib.c @@ -19,7 +19,7 @@ int output_data[OH_NCHW*OW_NCHW]; int im2col_nchw_int32() { - PRINTF("%d %d\n", OH_NCHW, OW_NCHW); + PRINTF("OH: %d, OW: %d\n", OH_NCHW, OW_NCHW); int size_transfer = 0; int im_row = 0; diff --git a/sw/applications/example_im2col/im2col_lib.h b/sw/applications/example_im2col/im2col_lib.h index 75c430b78..2f5719494 100644 --- a/sw/applications/example_im2col/im2col_lib.h +++ b/sw/applications/example_im2col/im2col_lib.h @@ -24,7 +24,6 @@ // By default, printfs are activated for FPGA and for simulation. #define PRINTF_IN_FPGA 1 #define PRINTF_IN_SIM 1 -#define TARGET_PYNQ_Z2 1 #define DEBUG 0 // Set to 1 to enable debug prints #define TIMING 0 // Set to 1 to enable timing measurements