aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/PAD.tosac
diff options
context:
space:
mode:
authorKevin Petit <kevin.petit@arm.com>2024-02-08 11:03:31 +0000
committerKevin Petit <kevin.petit@arm.com>2024-02-23 18:34:06 +0000
commitafaaa673e1620315e0d7d863d7bcef1a2dc54df9 (patch)
treebdba3f5658083c12694ae28448ed8551039ced6d /pseudocode/operators/PAD.tosac
parent0635552aed54eee35ca417901b65754a07a12dae (diff)
downloadspecification-afaaa673e1620315e0d7d863d7bcef1a2dc54df9.tar.gz
pseudocode: a collection of variable declaration fixes
Only cases where types are obvious. - Add missing types - Do not re-declare variables - Fix scope of declaration Signed-off-by: Kevin Petit <kevin.petit@arm.com> Change-Id: I7d44d9adde606094e0a7910fb438649521ff3ec0
Diffstat (limited to 'pseudocode/operators/PAD.tosac')
-rw-r--r--pseudocode/operators/PAD.tosac4
1 files changed, 2 insertions, 2 deletions
diff --git a/pseudocode/operators/PAD.tosac b/pseudocode/operators/PAD.tosac
index 45ef674..b458170 100644
--- a/pseudocode/operators/PAD.tosac
+++ b/pseudocode/operators/PAD.tosac
@@ -9,14 +9,14 @@
// Check output shape matches the padded input shape
ERROR_IF(rank(shape) != rank(shape1));
-for (i = 0; i < rank(shape); i++) {
+for (int32_t i = 0; i < rank(shape); i++) {
ERROR_IF(padding[i * 2] < 0 || padding[(i * 2) + 1] < 0);
ERROR_IF(shape[i] != padding[i * 2] + shape1[i] + padding[(i * 2) + 1]);
}
for_each(index in shape) {
shape_t index1 = index;
bool_t is_pad = false;
- for(i = 0; i < rank(shape); i++) {
+ for(int32_t i = 0; i < rank(shape); i++) {
index1[i] = index1[i] - padding[i * 2];
if (index1[i] < 0 || index[i] >= length(shape[i])) {
is_pad = true;