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