aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/CLAMP.tosac
diff options
context:
space:
mode:
Diffstat (limited to 'pseudocode/operators/CLAMP.tosac')
-rw-r--r--pseudocode/operators/CLAMP.tosac2
1 files changed, 1 insertions, 1 deletions
diff --git a/pseudocode/operators/CLAMP.tosac b/pseudocode/operators/CLAMP.tosac
index 7a26d50..cfac632 100644
--- a/pseudocode/operators/CLAMP.tosac
+++ b/pseudocode/operators/CLAMP.tosac
@@ -10,6 +10,6 @@
ERROR_IF(max_val < min_val);
for_each(index in shape) {
in_out_t value = tensor_read<in_out_t>(input, shape, index);
- value = apply_clip<in_out_t>(value, min_val, max_val);
+ value = apply_clip_s<in_out_t>(value, min_val, max_val);
tensor_write<in_out_t>(output, shape, index, value);
}