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