aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/DEPTHWISE_CONV2D.tosac
diff options
context:
space:
mode:
Diffstat (limited to 'pseudocode/operators/DEPTHWISE_CONV2D.tosac')
-rw-r--r--pseudocode/operators/DEPTHWISE_CONV2D.tosac4
1 files changed, 2 insertions, 2 deletions
diff --git a/pseudocode/operators/DEPTHWISE_CONV2D.tosac b/pseudocode/operators/DEPTHWISE_CONV2D.tosac
index 6cbcc6a..a473375 100644
--- a/pseudocode/operators/DEPTHWISE_CONV2D.tosac
+++ b/pseudocode/operators/DEPTHWISE_CONV2D.tosac
@@ -30,8 +30,8 @@ for_each(0 <= n < N, 0 <= oy < OH, 0 <= ox < OW, 0 <= c < C, 0 <= m < M) {
out_t weight = static_cast<out_t>(tensor_read<weight_t>(weight,
[KH,KW,C,M],
[ky,kx,c,m]));
- value = apply_sub_s<out_t>(value, static_cast<out_t>input_zp);
- weight = apply_sub_s<out_t>(weight, static_cast<out_t>weight_zp);
+ value = apply_sub_s<out_t>(value, static_cast<out_t>(input_zp));
+ weight = apply_sub_s<out_t>(weight, static_cast<out_t>(weight_zp));
acc = apply_add_s<out_t>(acc, apply_mul_s<out_t>(value, weight));
}
}