aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/TILE.tosac
diff options
context:
space:
mode:
Diffstat (limited to 'pseudocode/operators/TILE.tosac')
-rw-r--r--pseudocode/operators/TILE.tosac2
1 files changed, 1 insertions, 1 deletions
diff --git a/pseudocode/operators/TILE.tosac b/pseudocode/operators/TILE.tosac
index be1cfee..5ebd1c1 100644
--- a/pseudocode/operators/TILE.tosac
+++ b/pseudocode/operators/TILE.tosac
@@ -11,7 +11,7 @@ ERROR_IF(rank(shape1) != rank(shape));
for_each(index in shape) {
shape_t tmp_index = index;
- for(i = 0; i < rank(shape); i++) {
+ for(int32_t i = 0; i < rank(shape); i++) {
ERROR_IF(shape1[i] * multiples[i] != shape[i]);
tmp_index[i] = index[i] % shape1[i];
}