summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Pack_000/test.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowLiteRecipes/Pack_000/test.recipe')
-rw-r--r--res/TensorFlowLiteRecipes/Pack_000/test.recipe28
1 files changed, 28 insertions, 0 deletions
diff --git a/res/TensorFlowLiteRecipes/Pack_000/test.recipe b/res/TensorFlowLiteRecipes/Pack_000/test.recipe
new file mode 100644
index 000000000..5d9141d9e
--- /dev/null
+++ b/res/TensorFlowLiteRecipes/Pack_000/test.recipe
@@ -0,0 +1,28 @@
+operand {
+ name: "input"
+ type: FLOAT32
+ shape { dim: 2 dim: 4 dim: 3 }
+}
+operand {
+ name: "input_1"
+ type: FLOAT32
+ shape { dim: 2 dim: 4 dim: 3 }
+}
+operand {
+ name: "stack_4d"
+ type: FLOAT32
+ shape { dim: 2 dim: 2 dim: 4 dim: 3 }
+}
+operation {
+ type: "Pack"
+ pack_options {
+ values_count: 2,
+ axis: 1
+ }
+ input: "input"
+ input: "input_1"
+ output: "stack_4d"
+}
+input: "input"
+input: "input_1"
+output: "stack_4d"