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