aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerry Ge <jerry.ge@arm.com>2023-10-31 15:52:26 +0000
committerEric Kunze <eric.kunze@arm.com>2023-11-01 22:32:18 +0000
commit946ba352736017f417dcaf2ff6d18fc9ae534038 (patch)
treeb1ba94668042f70449968867e537c0f5b8250d5b
parentf791b447392c5112946ac9c49b1add83e2bfe7c0 (diff)
downloadspecification-946ba352736017f417dcaf2ff6d18fc9ae534038.tar.gz
Update CustomOp's attribute names
- "operator" is a reserved keyword in C++ - Update the attribute names to avoid those conflicts Signed-off-by: Jerry Ge <jerry.ge@arm.com> Change-Id: Iecb1edc50eb1a1232e05250b8baa79cfceb8cd61
-rw-r--r--tosa.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tosa.xml b/tosa.xml
index 8bcdb95..9aacdfc 100644
--- a/tosa.xml
+++ b/tosa.xml
@@ -2612,10 +2612,10 @@ used.</description>
<argument category="input" name="input_list" type="tensor_list_t" shape="-" tensor-element-type="-">
<description>List of input tensors</description>
</argument>
- <argument category="attribute" name="operator" type="String" shape="-" tensor-element-type="-">
+ <argument category="attribute" name="operator_name" type="String" shape="-" tensor-element-type="-">
<description>String which tells the backend which custom operator is being called</description>
</argument>
- <argument category="attribute" name="domain" type="String" shape="-" tensor-element-type="-">
+ <argument category="attribute" name="domain_name" type="String" shape="-" tensor-element-type="-">
<description>String idenifier which can help avoid name collisions on the operator field.
Different implementations of a given operator would be in different domains.
Implementations can choose which domains they want to support.</description>