Imported Upstream version 1.12.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / ReduceAny_dynamic_001 / test.recipe
1 operand {
2   name: "ifm"
3   type: BOOL
4   shape { dim: 1 dim: 3 dim: 4 }
5   shape_signature { dim: -1 dim: 3 dim: 4 }
6 }
7 operand {
8   name: "reduction_indices"
9   type: INT32
10   shape { dim: 1 }
11   filler {
12     tag: "explicit"
13     arg: "1"
14   }
15 }
16 operand {
17   name: "ofm"
18   type: BOOL
19   shape { dim: 1 dim: 4 }
20   shape_signature { dim: -1 dim: 4 }
21 }
22 operation {
23   type: "ReduceAny"
24   reduce_any_options {
25     keep_dims: false
26   }
27   input: "ifm"
28   input: "reduction_indices"
29   output: "ofm"
30 }
31 input: "ifm"
32 output: "ofm"