aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/TRANSPOSE.tosac
diff options
context:
space:
mode:
Diffstat (limited to 'pseudocode/operators/TRANSPOSE.tosac')
-rw-r--r--pseudocode/operators/TRANSPOSE.tosac4
1 files changed, 2 insertions, 2 deletions
diff --git a/pseudocode/operators/TRANSPOSE.tosac b/pseudocode/operators/TRANSPOSE.tosac
index 3981f54..09fea65 100644
--- a/pseudocode/operators/TRANSPOSE.tosac
+++ b/pseudocode/operators/TRANSPOSE.tosac
@@ -21,13 +21,13 @@ for_each(index in perms) {
// Ensure that the output shapes have the properly
// permuted shapes
-for(i = 0; i < rank(shape); i++) {
+for(int32_t i = 0; i < rank(shape); i++) {
ERROR_IF(shape1[perms[i]] != shape[i]);
}
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++) {
tmp_index[perms[i]] = index[i];
}
in_out_t value = tensor_read<in_out_t>(input1, shape1, tmp_index);