Skip to content

Commit 5c87127

Browse files
committed
tests: lib: cmsis_nn: add missing filter dimension
Specify the missing filter dimension that was the reason for the v6.0.0 version bump. Signed-off-by: Jordan Yates <[email protected]>
1 parent f06b9b0 commit 5c87127

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/lib/cmsis_nn/src/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ ZTEST(cmsis_nn, test_convolve)
170170
input_dims.c = CONV_4_IN_CH;
171171
filter_dims.w = CONV_4_FILTER_X;
172172
filter_dims.h = CONV_4_FILTER_Y;
173+
filter_dims.c = CONV_4_IN_CH;
173174
output_dims.w = CONV_4_OUTPUT_W;
174175
output_dims.h = CONV_4_OUTPUT_H;
175176
output_dims.c = CONV_4_OUT_CH;

0 commit comments

Comments
 (0)