Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Add_001 / test.recipe
1 # This recipe is to test zero size tensor for luci and luci-interpreter
2 operand {
3   name: "ifm1"
4   type: FLOAT32
5   shape { dim: 1 dim: 0 dim: 1 }
6 }
7 operand {
8   name: "ifm2"
9   type: FLOAT32
10   shape { dim: 1 dim: 0 dim: 1 }
11   filler {
12     tag: "explicit"
13   }
14 }
15 operand {
16   name: "ofm"
17   type: FLOAT32
18   shape { dim: 1 dim: 0 dim: 1 }
19 }
20 operation {
21   type: "Add"
22   input: "ifm1"
23   input: "ifm2"
24   output: "ofm"
25   add_options {
26     activation: NONE
27   }
28 }
29 input: "ifm1"
30 output: "ofm"