aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/RSQRT.tosac
diff options
context:
space:
mode:
Diffstat (limited to 'pseudocode/operators/RSQRT.tosac')
-rw-r--r--pseudocode/operators/RSQRT.tosac2
1 files changed, 1 insertions, 1 deletions
diff --git a/pseudocode/operators/RSQRT.tosac b/pseudocode/operators/RSQRT.tosac
index 15d884a..add9f62 100644
--- a/pseudocode/operators/RSQRT.tosac
+++ b/pseudocode/operators/RSQRT.tosac
@@ -8,7 +8,7 @@
// by a licensing agreement from ARM Limited.
for_each(index in shape) {
- in_out_t value1 = tensor_read<in_out_t>(input1, shape1, index);
+ in_out_t value1 = tensor_read<in_out_t>(input1, shape, index);
in_out_t result;
if (value1 < 0) {
result = NaN;