aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/operation.py
diff options
context:
space:
mode:
authorPatrik Gustavsson <patrik.gustavsson@arm.com>2021-10-01 11:10:25 +0200
committerpatrik.gustavsson <patrik.gustavsson@arm.com>2021-10-01 11:03:38 +0000
commitef3ebddb6b4fd951046cbe7799721f6f0ed2fc87 (patch)
tree9019c0cb4bb1a513ee1b4b00932e16031ab7da65 /ethosu/vela/operation.py
parent3ff7a4aed60fefababdced93a5aba91409a4050c (diff)
downloadethos-u-vela-ef3ebddb6b4fd951046cbe7799721f6f0ed2fc87.tar.gz
TOSA: Add support for Identity operation
Added support for Identity operation. Signed-off-by: Patrik Gustavsson <patrik.gustavsson@arm.com> Change-Id: If00b30528932f7531807ce3914d6c1875ab72fa4
Diffstat (limited to 'ethosu/vela/operation.py')
-rw-r--r--ethosu/vela/operation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethosu/vela/operation.py b/ethosu/vela/operation.py
index b4267926..1e733d56 100644
--- a/ethosu/vela/operation.py
+++ b/ethosu/vela/operation.py
@@ -189,7 +189,7 @@ class Op(Enum):
GreaterEqual = OperatorInfo()
HardSwish = OperatorInfo(indices=NNG_IFM_INDICES)
HashtableLookup = OperatorInfo()
- Identity = OperatorInfo()
+ Identity = OperatorInfo(indices=NNG_IFM_INDICES)
If = OperatorInfo()
L2Norm = OperatorInfo()
L2Pool2D = OperatorInfo()