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