aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2022-08-24 08:56:58 -0700
committerEric Kunze <eric.kunze@arm.com>2022-08-24 08:58:44 -0700
commit74a37cace8b8de155b7ccd9bbe76d7de3eacfd9b (patch)
tree63bd003fa3e3ee23a6e6ce876fef47cd0a46805a
parent52dd6bb66b2baadfdbaaa32dd94978951d304e04 (diff)
downloadspecification-74a37cace8b8de155b7ccd9bbe76d7de3eacfd9b.tar.gz
Fix cut and paste error for MATMUL
tosa.xml had the wrong mode for 16-bit MATMUL. Change-Id: I1feeac9b9a5f61c53d64ae826aa5727da21e5dce Signed-off-by: Eric Kunze <eric.kunze@arm.com>
-rw-r--r--tosa.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/tosa.xml b/tosa.xml
index 06e6c97..6674ef0 100644
--- a/tosa.xml
+++ b/tosa.xml
@@ -353,21 +353,21 @@
<type name='in_t' />
<type name='out_t' />
</types>
- <typesupport mode="signed 8x8 with int32 accumulate" in_t="int8_t" weight_t="int8_t" out_t="int32_t" />
- <typesupport mode="signed 16x8 with int48 accumulate" in_t="int16_t" weight_t="int8_t" out_t="int48_t" />
- <typesupport mode="fp16 with fp16 accumulate" in_t="fp16_t" weight_t="fp16_t" out_t="fp16_t">
+ <typesupport mode="signed 8x8 with int32 accumulate" in_t="int8_t" out_t="int32_t" />
+ <typesupport mode="signed 16x16 with int48 accumulate" in_t="int16_t" out_t="int48_t" />
+ <typesupport mode="fp16 with fp16 accumulate" in_t="fp16_t" out_t="fp16_t">
<profile name="MI"/>
<profile name="MT"/>
</typesupport>
- <typesupport mode="fp16 with fp32 accumulate" in_t="fp16_t" weight_t="fp16_t" out_t="fp32_t">
+ <typesupport mode="fp16 with fp32 accumulate" in_t="fp16_t" out_t="fp32_t">
<profile name="MI"/>
<profile name="MT"/>
</typesupport>
- <typesupport mode="bf16 with fp32 accumulate" in_t="bf16_t" weight_t="bf16_t" out_t="fp32_t">
+ <typesupport mode="bf16 with fp32 accumulate" in_t="bf16_t" out_t="fp32_t">
<profile name="MI"/>
<profile name="MT"/>
</typesupport>
- <typesupport mode="fp32 with fp32 accumulate" in_t="fp32_t" weight_t="fp32_t" out_t="fp32_t">
+ <typesupport mode="fp32 with fp32 accumulate" in_t="fp32_t" out_t="fp32_t">
<profile name="MI"/>
<profile name="MT"/>
</typesupport>