summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/ReduceMin_dynamic_000/test.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowLiteRecipes/ReduceMin_dynamic_000/test.recipe')
-rw-r--r--res/TensorFlowLiteRecipes/ReduceMin_dynamic_000/test.recipe29
1 files changed, 29 insertions, 0 deletions
diff --git a/res/TensorFlowLiteRecipes/ReduceMin_dynamic_000/test.recipe b/res/TensorFlowLiteRecipes/ReduceMin_dynamic_000/test.recipe
new file mode 100644
index 000000000..50603ba5f
--- /dev/null
+++ b/res/TensorFlowLiteRecipes/ReduceMin_dynamic_000/test.recipe
@@ -0,0 +1,29 @@
+operand {
+ name: "ifm"
+ type: FLOAT32
+ shape { dim: 1 dim: 8 dim: 8 dim: 4 }
+ shape_signature { dim: -1 dim: 8 dim: 8 dim: 4 }
+}
+operand {
+ name: "axis"
+ type: INT32
+ shape { dim: 1 }
+ filler { tag: "explicit" arg: "-1" }
+}
+operand {
+ name: "ofm"
+ type: FLOAT32
+ shape { dim: 1 dim: 8 dim: 8 dim: 1 }
+ shape_signature { dim: -1 dim: 8 dim: 8 dim: 1 }
+}
+operation {
+ type: "ReduceMin"
+ reduce_min_options {
+ keep_dims: true
+ }
+ input: "ifm"
+ input: "axis"
+ output: "ofm"
+}
+input: "ifm"
+output: "ofm"