aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/CONCAT_SHAPE.tosac
diff options
context:
space:
mode:
Diffstat (limited to 'pseudocode/operators/CONCAT_SHAPE.tosac')
-rw-r--r--pseudocode/operators/CONCAT_SHAPE.tosac18
1 files changed, 18 insertions, 0 deletions
diff --git a/pseudocode/operators/CONCAT_SHAPE.tosac b/pseudocode/operators/CONCAT_SHAPE.tosac
new file mode 100644
index 0000000..4b6def6
--- /dev/null
+++ b/pseudocode/operators/CONCAT_SHAPE.tosac
@@ -0,0 +1,18 @@
+//
+// This confidential and proprietary software may be used only as
+// authorised by a licensing agreement from ARM Limited
+// (C) COPYRIGHT 2024 ARM Limited
+// ALL RIGHTS RESERVED
+// The entire notice above must be reproduced on all authorised
+// copies and copies may only be made to the extent permitted
+// by a licensing agreement from ARM Limited.
+
+ERROR_IF(length(output) != sum(length(input1[k]) for all k));
+
+size_t index = 0;
+for (int32_t i=0; i < length(input1); i++) {
+ for (int32_t j=0; j < length(input1[i]); j++) {
+ output[index] = input1[i][j];
+ index++;
+ }
+}