summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Sub_000/test.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowLiteRecipes/Sub_000/test.recipe')
-rw-r--r--res/TensorFlowLiteRecipes/Sub_000/test.recipe27
1 files changed, 27 insertions, 0 deletions
diff --git a/res/TensorFlowLiteRecipes/Sub_000/test.recipe b/res/TensorFlowLiteRecipes/Sub_000/test.recipe
new file mode 100644
index 000000000..c934bb8aa
--- /dev/null
+++ b/res/TensorFlowLiteRecipes/Sub_000/test.recipe
@@ -0,0 +1,27 @@
+operand {
+ name: "ifm1"
+ type: FLOAT32
+ shape { dim: 1 dim: 5 dim:2 dim:3 }
+}
+operand {
+ name: "ifm2"
+ type: FLOAT32
+ shape { dim: 1 dim: 5 dim:2 dim:3 }
+}
+operand {
+ name: "ofm"
+ type: FLOAT32
+ shape { dim: 1 dim: 5 dim:2 dim:3 }
+}
+operation {
+ type: "Sub"
+ sub_options {
+ activation: 0
+ }
+ input: "ifm1"
+ input: "ifm2"
+ output: "ofm"
+}
+input: "ifm1"
+input: "ifm2"
+output: "ofm"