aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/high_level_command_stream_generator.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/high_level_command_stream_generator.py')
-rw-r--r--ethosu/vela/high_level_command_stream_generator.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ethosu/vela/high_level_command_stream_generator.py b/ethosu/vela/high_level_command_stream_generator.py
index 6fcf80cb..b3ea9d49 100644
--- a/ethosu/vela/high_level_command_stream_generator.py
+++ b/ethosu/vela/high_level_command_stream_generator.py
@@ -109,7 +109,9 @@ def generate_high_level_commands_for_sched_op(sched_op, schedule):
# Create activation function if needed
for op in ps.ops:
if op.type.is_relu_op() or op.type in (Op.Tanh, Op.Sigmoid):
- ps.primary_op.activation = create_activation_function(op.type)
+ ps.primary_op.activation = create_activation_function(
+ op.type, min=op.attrs.get("min", None), max=op.attrs.get("max", None)
+ )
# Generate commands for the Op that produces this Op's IFM, if applicable
if cascade_info is None or cascade_info.start == sched_op.index: