Imported Upstream version 1.12.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / ReduceProd_dynamic_000 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
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: 3 }
11   filler {
12     tag: "explicit"
13     arg: "0" arg: "1" arg: "2"
14   }
15 }
16 operand {
17   name: "ofm"
18   type: FLOAT32
19   shape { }
20 }
21 operation {
22   type: "ReduceProd"
23   reduce_prod_options {
24     keep_dims: false
25   }
26   input: "ifm"
27   input: "reduction_indices"
28   output: "ofm"
29 }
30 input: "ifm"
31 output: "ofm"