Skip to content

Commit

Permalink
tests: lib: cmsis_nn: add missing filter dimension
Browse files Browse the repository at this point in the history
Specify the missing filter dimension that was the reason for the v6.0.0
version bump.

Signed-off-by: Jordan Yates <[email protected]>
  • Loading branch information
JordanYates committed Jun 10, 2024
1 parent c66077a commit e5e6835
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/lib/cmsis_nn/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ ZTEST(cmsis_nn, test_convolve)
input_dims.c = CONV_4_IN_CH;
filter_dims.w = CONV_4_FILTER_X;
filter_dims.h = CONV_4_FILTER_Y;
filter_dims.c = CONV_4_IN_CH;
output_dims.w = CONV_4_OUTPUT_W;
output_dims.h = CONV_4_OUTPUT_H;
output_dims.c = CONV_4_OUT_CH;
Expand Down

0 comments on commit e5e6835

Please sign in to comment.