aboutsummaryrefslogtreecommitdiff
path: root/chapters/data_layout.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'chapters/data_layout.adoc')
-rw-r--r--chapters/data_layout.adoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chapters/data_layout.adoc b/chapters/data_layout.adoc
index 4b01d55..de90322 100644
--- a/chapters/data_layout.adoc
+++ b/chapters/data_layout.adoc
@@ -18,8 +18,8 @@ No data conversion happens during a concat operation.
|===
|Argument|Type|Name|Shape|Description
-|Input|in_t**|input1|shapes1[]|List of input tensors
-|Attribute|int|axis|-|Axis along which concatenation is to occur
+|Input|in_t**|input1|shapes1[]|List of input tensors. All inputs must have the same rank
+|Attribute|int|axis|-|Axis along which concatenation is to occur, in range from 0 to rank(shape)-1
|Output|in_t*|output|shape|Output tensor
|===
@@ -149,7 +149,7 @@ Returns a tensor with the same type/values as the input, with the data reversed
|Argument|Type|Name|Shape|Description
|Input|in_t*|input|shape|Input tensor from 1 to 4 dims
-|Attribute|int|axis|-|Axis to reverse
+|Attribute|int|axis|-|Axis to reverse, in range from 0 to rank(shape)-1
|Output|in_t*|output|shape|Output tensor. Same shape as input tensor.
|===