summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Concatenation_U8_000/test.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowLiteRecipes/Concatenation_U8_000/test.recipe')
-rw-r--r--res/TensorFlowLiteRecipes/Concatenation_U8_000/test.recipe31
1 files changed, 31 insertions, 0 deletions
diff --git a/res/TensorFlowLiteRecipes/Concatenation_U8_000/test.recipe b/res/TensorFlowLiteRecipes/Concatenation_U8_000/test.recipe
new file mode 100644
index 000000000..3ae21e356
--- /dev/null
+++ b/res/TensorFlowLiteRecipes/Concatenation_U8_000/test.recipe
@@ -0,0 +1,31 @@
+operand {
+ name: "ifm1"
+ type: UINT8
+ shape { dim: 1 dim: 4 dim: 4 dim: 1 }
+ quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
+}
+operand {
+ name: "ifm2"
+ type: UINT8
+ shape { dim: 1 dim: 4 dim: 4 dim: 2 }
+ quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
+}
+operand {
+ name: "ofm"
+ type: UINT8
+ shape { dim: 1 dim: 4 dim: 4 dim: 3 }
+ quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
+}
+operation {
+ type: "Concatenation"
+ concatenation_options {
+ axis: 3
+ activation: NONE
+ }
+ input: "ifm1"
+ input: "ifm2"
+ output: "ofm"
+}
+input: "ifm1"
+input: "ifm2"
+output: "ofm"