summaryrefslogtreecommitdiff
path: root/compiler/enco/test/tflite/Concat_003/test.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/enco/test/tflite/Concat_003/test.recipe')
-rw-r--r--compiler/enco/test/tflite/Concat_003/test.recipe29
1 files changed, 29 insertions, 0 deletions
diff --git a/compiler/enco/test/tflite/Concat_003/test.recipe b/compiler/enco/test/tflite/Concat_003/test.recipe
new file mode 100644
index 000000000..8f1b64ea6
--- /dev/null
+++ b/compiler/enco/test/tflite/Concat_003/test.recipe
@@ -0,0 +1,29 @@
+# Concatenate two feature maps along "batch" dimension
+operand {
+ name: "ifm1"
+ type: FLOAT32
+ shape { dim: 1 dim: 1 dim: 1 dim: 1 }
+}
+operand {
+ name: "ifm2"
+ type: FLOAT32
+ shape { dim: 2 dim: 1 dim: 1 dim: 1 }
+}
+operand {
+ name: "ofm"
+ type: FLOAT32
+ shape { dim: 3 dim: 1 dim: 1 dim: 1 }
+}
+operation {
+ type: "Concatenation"
+ concatenation_options {
+ axis: 0
+ activation: NONE
+ }
+ input: "ifm1"
+ input: "ifm2"
+ output: "ofm"
+}
+input: "ifm1"
+input: "ifm2"
+output: "ofm"