aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/CONV3D.tosac
diff options
context:
space:
mode:
Diffstat (limited to 'pseudocode/operators/CONV3D.tosac')
-rw-r--r--pseudocode/operators/CONV3D.tosac2
1 files changed, 1 insertions, 1 deletions
diff --git a/pseudocode/operators/CONV3D.tosac b/pseudocode/operators/CONV3D.tosac
index a0f9130..7568564 100644
--- a/pseudocode/operators/CONV3D.tosac
+++ b/pseudocode/operators/CONV3D.tosac
@@ -17,7 +17,7 @@ ERROR_IF(OH != idiv_check(IH - 1 + pad_top + pad_bottom - (KH - 1) * dilation_y,
ERROR_IF(OW != idiv_check(IW - 1 + pad_left + pad_right - (KW - 1) * dilation_x, stride_x) + 1);
ERROR_IF(BC != OC && BC != 1);
-for_each(0 <= n < N, 0 <= od < OD, 0 <= oy < OH, 0 <= ox < OW; 0 <= oc < OC) {
+for_each(0 <= n < N, 0 <= od < OD, 0 <= oy < OH, 0 <= ox < OW, 0 <= oc < OC) {
out_t acc = 0;
index_t id = od * stride_d - pad_d0;
index_t iy = oy * stride_y - pad_top;