aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Petit <kevin.petit@arm.com>2022-12-07 21:20:48 +0000
committerEric Kunze <eric.kunze@arm.com>2022-12-09 15:52:20 +0000
commita269fd4c806ca0c08123a640132be02dbe86fa7c (patch)
tree28ed63e35e8b97aa3bde8e2662cbc916f1fccd6a
parentb7293aedaea197acf1e5f93a0b450e6989c498d8 (diff)
downloadspecification-a269fd4c806ca0c08123a640132be02dbe86fa7c.tar.gz
SCATTER/GATHER: Remove redundant definition of index_t
index_t is globally defined as int32_t. Signed-off-by: Kevin Petit <kevin.petit@arm.com> Change-Id: I86ed2d42d488fb8e7630e98e3564f14ba5664f8c
-rw-r--r--tosa.xml26
-rw-r--r--tosa.xsd2
2 files changed, 12 insertions, 16 deletions
diff --git a/tosa.xml b/tosa.xml
index 627bd5a..f952e40 100644
--- a/tosa.xml
+++ b/tosa.xml
@@ -1898,21 +1898,20 @@ used.</description>
</argument>
</arguments>
<types>
- <type name='index_t'/>
<type name='value_t'/>
</types>
- <typesupport mode="signed 8" index_t="int32_t" value_t="int8_t"/>
- <typesupport mode="signed 16" index_t="int32_t" value_t="int16_t"/>
- <typesupport mode="signed 32" index_t="int32_t" value_t="int32_t"/>
- <typesupport mode="fp16" index_t="int32_t" value_t="fp16_t">
+ <typesupport mode="signed 8" value_t="int8_t"/>
+ <typesupport mode="signed 16" value_t="int16_t"/>
+ <typesupport mode="signed 32" value_t="int32_t"/>
+ <typesupport mode="fp16" value_t="fp16_t">
<profile name="MI"/>
<profile name="MT"/>
</typesupport>
- <typesupport mode="bf16" index_t="int32_t" value_t="bf16_t">
+ <typesupport mode="bf16" value_t="bf16_t">
<profile name="MI"/>
<profile name="MT"/>
</typesupport>
- <typesupport mode="fp32" index_t="int32_t" value_t="fp32_t">
+ <typesupport mode="fp32" value_t="fp32_t">
<profile name="MI"/>
<profile name="MT"/>
</typesupport>
@@ -1934,21 +1933,20 @@ used.</description>
</argument>
</arguments>
<types>
- <type name='index_t'/>
<type name='value_t'/>
</types>
- <typesupport mode="signed 8" index_t="int32_t" value_t="int8_t"/>
- <typesupport mode="signed 16" index_t="int32_t" value_t="int16_t"/>
- <typesupport mode="signed 32" index_t="int32_t" value_t="int32_t"/>
- <typesupport mode="fp16" index_t="int32_t" value_t="fp16_t">
+ <typesupport mode="signed 8" value_t="int8_t"/>
+ <typesupport mode="signed 16" value_t="int16_t"/>
+ <typesupport mode="signed 32" value_t="int32_t"/>
+ <typesupport mode="fp16" value_t="fp16_t">
<profile name="MI"/>
<profile name="MT"/>
</typesupport>
- <typesupport mode="bf16" index_t="int32_t" value_t="bf16_t">
+ <typesupport mode="bf16" value_t="bf16_t">
<profile name="MI"/>
<profile name="MT"/>
</typesupport>
- <typesupport mode="fp32" index_t="int32_t" value_t="fp32_t">
+ <typesupport mode="fp32" value_t="fp32_t">
<profile name="MI"/>
<profile name="MT"/>
</typesupport>
diff --git a/tosa.xsd b/tosa.xsd
index 87ee3b5..6f0d3b5 100644
--- a/tosa.xsd
+++ b/tosa.xsd
@@ -51,7 +51,6 @@
<xs:enumeration value="acc_t"/>
<xs:enumeration value="weight_t"/>
<xs:enumeration value="resize_t"/>
- <xs:enumeration value="index_t"/>
<xs:enumeration value="value_t"/>
<xs:enumeration value="table_t"/>
<xs:enumeration value="TABLE_SIZE"/>
@@ -175,7 +174,6 @@
<xs:attribute name="weight_t" type="datatype"/>
<xs:attribute name="acc_t" type="datatype"/>
<xs:attribute name="resize_t" type="datatype"/>
- <xs:attribute name="index_t" type="datatype"/>
<xs:attribute name="value_t" type="datatype"/>
<xs:attribute name="table_t" type="datatype"/>
<xs:attribute name="TABLE_SIZE" type="xs:int"/>