aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/SIN.tosac
diff options
context:
space:
mode:
Diffstat (limited to 'pseudocode/operators/SIN.tosac')
-rw-r--r--pseudocode/operators/SIN.tosac2
1 files changed, 1 insertions, 1 deletions
diff --git a/pseudocode/operators/SIN.tosac b/pseudocode/operators/SIN.tosac
index 9a24a00..82361a9 100644
--- a/pseudocode/operators/SIN.tosac
+++ b/pseudocode/operators/SIN.tosac
@@ -9,6 +9,6 @@
for_each(index in shape) {
in_out_t value1 = tensor_read<in_out_t>(input, shape, index);
- value = sin<in_out_t>(value1);
+ in_out_t value = sin<in_out_t>(value1);
tensor_write<in_out_t>(output, shape, index, value);
}