aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominic Symes <dominic.symes@arm.com>2023-06-14 18:11:19 +0100
committerDominic Symes <dominic.symes@arm.com>2023-06-23 10:06:09 +0000
commit14aa62036d11e70d497d7c5510bdb3aac08b89f3 (patch)
tree79e67e6ff92dfc0cef218fcb91740722cb2a506a
parent8e14dcd2f86e9a3b9c2283fb0f0325088565bbe7 (diff)
downloadspecification-14aa62036d11e70d497d7c5510bdb3aac08b89f3.tar.gz
FULLY_CONNECTED: Change weights and bias to be inputs
To be consistent with CONV2D, the FULLY_CONNECTED weight and bias arguments should be inputs rather than attributes. Signed-off-by: Dominic Symes <dominic.symes@arm.com> Change-Id: I77bd0ca36f98bccd0c2224060476e3b4ac04b4bf
-rw-r--r--tosa.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tosa.xml b/tosa.xml
index 9905dde..c2a76b5 100644
--- a/tosa.xml
+++ b/tosa.xml
@@ -380,11 +380,11 @@
<description>Input tensor</description>
<rank min="2" max="2"/>
</argument>
- <argument category="attribute" name="weight" type="tensor_t" shape="[OC,IC]" tensor-element-type="weight_t">
+ <argument category="input" name="weight" type="tensor_t" shape="[OC,IC]" tensor-element-type="weight_t">
<description>Weights</description>
<rank min="2" max="2"/>
</argument>
- <argument category="attribute" name="bias" type="tensor_t" shape="[OC]" tensor-element-type="out_t">
+ <argument category="input" name="bias" type="tensor_t" shape="[OC]" tensor-element-type="out_t">
<description>Per output channel bias data.</description>
<rank min="1" max="1"/>
</argument>