aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/PAD.tosac
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2024-01-12 17:18:42 -0800
committerEric Kunze <eric.kunze@arm.com>2024-01-31 06:00:03 +0000
commit526f6c7b5d20e967109ca92c8fc54c26c0438135 (patch)
tree7186a2dec336db8389cdf0cf8bacd60f9da4cf64 /pseudocode/operators/PAD.tosac
parent7e5d187c612fcc715ea3f7f0c900eb13af75a660 (diff)
downloadspecification-f33b66dfea7cf2fa88ecbbb7fe1ce4cb695287b0.tar.gz
Add section of shape operatorsv0.90.0
Rework of the shape operations. Shape operations are now done in shape specific operators rather than being based on type. shape_t is reworked to a list of size_t values. Signed-off-by: Eric Kunze <eric.kunze@arm.com> Change-Id: I2fca0728f9caa6a6fc34a8ce9e389bb581eea959
Diffstat (limited to 'pseudocode/operators/PAD.tosac')
-rw-r--r--pseudocode/operators/PAD.tosac8
1 files changed, 4 insertions, 4 deletions
diff --git a/pseudocode/operators/PAD.tosac b/pseudocode/operators/PAD.tosac
index 4adf114..45ef674 100644
--- a/pseudocode/operators/PAD.tosac
+++ b/pseudocode/operators/PAD.tosac
@@ -10,14 +10,14 @@
// Check output shape matches the padded input shape
ERROR_IF(rank(shape) != rank(shape1));
for (i = 0; i < rank(shape); i++) {
- ERROR_IF(padding[i,0] < 0 || padding[i,1] < 0);
- ERROR_IF(shape[i] != padding[i, 0] + shape1[i] + padding[i, 1]);
+ 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) {
- dim_t index1 = index;
+ shape_t index1 = index;
bool_t is_pad = false;
for(i = 0; i < rank(shape); i++) {
- index1[i] = index1[i] - padding[i,0];
+ index1[i] = index1[i] - padding[i * 2];
if (index1[i] < 0 || index[i] >= length(shape[i])) {
is_pad = true;
}