aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/scheduler.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/scheduler.py')
-rw-r--r--ethosu/vela/scheduler.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ethosu/vela/scheduler.py b/ethosu/vela/scheduler.py
index 9dca63a8..208b121e 100644
--- a/ethosu/vela/scheduler.py
+++ b/ethosu/vela/scheduler.py
@@ -182,6 +182,7 @@ class SchedulerOperation:
self.activation = ps.primary_op.activation
self.kernel = ps.primary_op.kernel
self.resampling_mode = ps.primary_op.ifm_resampling_mode
+ self.reversed_operands = False
self.uses_scalar = ps.primary_op.ifm2 is not None and (
ps.primary_op.ifm.shape == [] or ps.primary_op.ifm2.shape == []
)
@@ -239,6 +240,7 @@ class SchedulerOperation:
# The non-broadcasted IFM should be the primary input
or (ifm1.shape != ofm.shape and ifm2.shape == ofm.shape)
):
+ self.reversed_operands = True
self.ifm, self.ifm2 = self.ifm2, self.ifm
self.parent_ps.ifm_shapes = self.parent_ps.ifm_shapes[::-1]