We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b494e1d commit deba0fdCopy full SHA for deba0fd
lib/src/kernels/convolution/mli_krn_dotprod.h
@@ -488,7 +488,9 @@ static acc_T __attribute__ ((always_inline)) dotprod2D_inp_width_v(
488
int in_width_step) {
489
in_row_step -= width * in_col_step;
490
kern_row_step -= width * kern_col_step;
491
+#pragma clang loop unroll(full)
492
for (int row = 0; row < height; row++) {
493
494
for (int clmn = 0; clmn < width; clmn++) {
495
int16_t k = *krn;
496
v2q15_t k_v = { k, k };
0 commit comments