aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/TRANSPOSE.tosac
diff options
context:
space:
mode:
authorKevin Petit <kevin.petit@arm.com>2024-01-16 21:40:08 +0000
committerKevin Petit <kevin.petit@arm.com>2024-01-16 21:40:32 +0000
commit1c16f5447886826cd86d0fe2893dcd193c42dcec (patch)
treeaa0c335dc3d09684d5d98a27b5d20a8ef343ff89 /pseudocode/operators/TRANSPOSE.tosac
parenta7ac313a13f8f82b4b3ca9730bd746392f6600d9 (diff)
downloadspecification-1c16f5447886826cd86d0fe2893dcd193c42dcec.tar.gz
pseudocode: a collection of trivial fixes
- Add missing parenthesis in ARITHMETIC_SHIFT_RIGHT - Add missing semicolons - Remove stray dot in VARIABLE_WRITE Change-Id: I28ab7c80c735995437588fffeffb1f12d112f3ec Signed-off-by: Kevin Petit <kevin.petit@arm.com>
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 a8f0815..e75db79 100644
--- a/pseudocode/operators/TRANSPOSE.tosac
+++ b/pseudocode/operators/TRANSPOSE.tosac
@@ -22,13 +22,13 @@ for_each(index in perms) {
// Ensure that the output shapes have the properly
// permuted shapes
for(i = 0; i < rank(shape); i++) {
- ERROR_IF(shape1[perms[i]] != shape[i])
+ ERROR_IF(shape1[perms[i]] != shape[i]);
}
for_each(index in shape) {
dim_t tmp_index = index;
for(i = 0; i < rank(shape); i++) {
- tmp_index[perms[i]] = index[i]
+ tmp_index[perms[i]] = index[i];
}
in_out_t value = tensor_read<in_out_t>(input1, shape1, tmp_index);
tensor_write<in_out_t>(output, shape, index, value);