aboutsummaryrefslogtreecommitdiff
path: root/chapters/data_nodes.adoc
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2021-02-22 13:21:05 -0800
committerEric Kunze <eric.kunze@arm.com>2021-03-03 14:45:13 -0800
commit54ff87d31637c97958ac49e40312e9b6de0a8f1a (patch)
tree3fb67a5830882eb4d3e2f885df1c5604042caa1d /chapters/data_nodes.adoc
parent70b140f0219464a239bb40e53023d7de02eb71cc (diff)
downloadspecification-54ff87d31637c97958ac49e40312e9b6de0a8f1a.tar.gz
Change CONCAT to allow a list of input tensors
Originally only a pair of input tensors were allowed. This aligns with what the frameworks do, and simplifies the translation of frameworks into TOSA and allows compilers to view the output as a whole. Change-Id: Id4461abdf0cc763e84e086142222e87d28cd8afc Signed-off-by: Eric Kunze <eric.kunze@arm.com>
Diffstat (limited to 'chapters/data_nodes.adoc')
-rw-r--r--chapters/data_nodes.adoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chapters/data_nodes.adoc b/chapters/data_nodes.adoc
index 4297a9a..87b0b9b 100644
--- a/chapters/data_nodes.adoc
+++ b/chapters/data_nodes.adoc
@@ -43,7 +43,7 @@ Returns a tensor with the same shape, type, and contents as the input.
|===
|Argument|Type|Name|Shape|Description
-|Input|in_t|input1|shape|Input tensor
+|Input|in_t*|input1|shape|Input tensor
|Output|in_t*|output|shape|Output tensor of same type, size as the input tensor
|===
@@ -68,8 +68,8 @@ Returns a list of tensors with the same shape, type, and contents as the input l
|===
|Argument|Type|Name|Shape|Description
-|Input|in_t|input1|[shape1, shape2, …]|List of input tensors
-|Output|in_t*|output|[shape1, shape2, …]|List of output tensors of same type, size as the input tensors
+|Input|in_t**|input1|shape[]|List of input tensors
+|Output|in_t**|output|shape[]|List of output tensors of same type, size as the input tensors
|===
*Supported Data Types:*