aboutsummaryrefslogtreecommitdiff
path: root/chapters/tensor_ops.adoc
diff options
context:
space:
mode:
authorJerry Ge <jerry.ge@arm.com>2023-03-21 18:25:00 +0000
committerJerry Ge <jerry.ge@arm.com>2023-03-21 19:25:21 +0000
commitf28bd0a0946e339a4bbd50f9490d986ab8af022e (patch)
treefb016bcfd036c992dde7bd82270f4ec3abc4d6e0 /chapters/tensor_ops.adoc
parent6577bcd5e7ba3a053ba8fcb7a41df5fae6c9651b (diff)
downloadspecification-f28bd0a0946e339a4bbd50f9490d986ab8af022e.tar.gz
Update Argmax's rank maximum to MAX_RANK
Signed-off-by: Jerry Ge <jerry.ge@arm.com> Change-Id: Idc68dfee54f1855782e57a8855b4e4120e25e74d
Diffstat (limited to 'chapters/tensor_ops.adoc')
-rw-r--r--chapters/tensor_ops.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapters/tensor_ops.adoc b/chapters/tensor_ops.adoc
index cb268fa..508b680 100644
--- a/chapters/tensor_ops.adoc
+++ b/chapters/tensor_ops.adoc
@@ -17,7 +17,7 @@ include::{generated}/operators/ARGMAX.adoc[]
[source,c++]
----
-ERROR_IF(axis < 0 || axis >= rank(shape1) || rank(shape1) > 4);
+ERROR_IF(axis < 0 || axis >= rank(shape1));
if (axis == 0) {
left_shape = [];
} else {