aboutsummaryrefslogtreecommitdiff
path: root/tools/tosa.py
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2024-04-10 16:54:16 -0700
committerEric Kunze <eric.kunze@arm.com>2024-04-16 16:46:48 -0700
commit132acad52654a72d638faeaed8dc1488d5b1fe15 (patch)
treee413b8e4aaf45ecc02055526706e9fbcbab2194a /tools/tosa.py
parent0d7d001c73d5063a8d9b6dba388aded0973a3110 (diff)
downloadspecification-132acad52654a72d638faeaed8dc1488d5b1fe15.tar.gz
Add allowed profiles for each extension
Each extension can contain a list of profiles that it works with. Signed-off-by: Eric Kunze <eric.kunze@arm.com> Change-Id: I7cf2ad0c57fc8a36500212b7d554a8153fc2efe5
Diffstat (limited to 'tools/tosa.py')
-rw-r--r--tools/tosa.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/tosa.py b/tools/tosa.py
index e70b297..016aba6 100644
--- a/tools/tosa.py
+++ b/tools/tosa.py
@@ -41,10 +41,11 @@ class TOSAProfile:
class TOSAProfileExtension:
- def __init__(self, name, description, status):
+ def __init__(self, name, description, status, profiles):
self.name = name
self.description = description
self.status = status
+ self.profiles = profiles
self.ops = []
@@ -155,7 +156,8 @@ class TOSASpec:
name = ext.get("name")
description = ext.get("description")
status = ext.get("status")
- return TOSAProfileExtension(name, description, status)
+ profiles = [x.text for x in ext]
+ return TOSAProfileExtension(name, description, status, profiles)
def __load_level(self, level):
name = level.get("name")