aboutsummaryrefslogtreecommitdiff
path: root/python/tosa/Attribute.py
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2023-11-01 16:12:07 -0700
committerEric Kunze <eric.kunze@arm.com>2023-11-01 16:14:25 -0700
commit4881c29247d4b411de446b13d9bd58ea93737aac (patch)
treec1a55620543fd0fff382a9f8c7ceeab14b6aa5db /python/tosa/Attribute.py
parent5917fc7a9392da8fd1e8c68b2d00b89709a31584 (diff)
downloadserialization_lib-4881c29247d4b411de446b13d9bd58ea93737aac.tar.gz
Add support for local_bound attribute
local_bound is used to determine when fast convolution algorithms can be used in implementing the operation. Signed-off-by: Eric Kunze <eric.kunze@arm.com> Change-Id: I9970a2544e90a620f46ac4d3d01cec90a15710a9
Diffstat (limited to 'python/tosa/Attribute.py')
-rw-r--r--python/tosa/Attribute.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/tosa/Attribute.py b/python/tosa/Attribute.py
index 25ade44..2589f71 100644
--- a/python/tosa/Attribute.py
+++ b/python/tosa/Attribute.py
@@ -26,3 +26,4 @@ class Attribute(object):
NegateAttribute = 20
CustomAttribute = 21
FFTAttribute = 22
+ RFFTAttribute = 23