aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Petit <kevin.petit@arm.com>2023-05-16 10:58:42 +0100
committerEric Kunze <eric.kunze@arm.com>2023-05-17 15:28:53 +0000
commitd7282186957676237717fbaadc4090a5af838cb3 (patch)
treef2948e3e3e9f689b712c1817be25315a20f622ea
parentc0e467a02522a1b2706d7ac0ba2f952a36e62767 (diff)
downloadspecification-d7282186957676237717fbaadc4090a5af838cb3.tar.gz
Use index_t for SLICE start/size
Signed-off-by: Kevin Petit <kevin.petit@arm.com> Change-Id: I3b57615531eebebd356528deeb95a4930ca0b04c
-rw-r--r--tosa.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tosa.xml b/tosa.xml
index a9d8b5a..c11ad99 100644
--- a/tosa.xml
+++ b/tosa.xml
@@ -1958,11 +1958,11 @@
<description>Input tensor</description>
<rank min="1" max="MAX_RANK"/>
</argument>
- <argument category="attribute" name="start" type="int32_t" shape="[rank(shape1)]">
+ <argument category="attribute" name="start" type="index_t" shape="[rank(shape1)]">
<description>List of integer coordinates, of length equal to the rank of input1. Start coordinate for slicing.</description>
<rank min="1" max="1"/>
</argument>
- <argument category="attribute" name="size" type="int32_t" shape="[rank(shape1)]">
+ <argument category="attribute" name="size" type="index_t" shape="[rank(shape1)]">
<description>List of integer size values, of length equal to the rank of input1. Size of the input to be
used.</description>
<levellimit value="rank(shape)" limit="MAX_RANK"/>