Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Fill_001 / test.recipe
1 operand {
2   name: "dims"
3   type: INT32
4   shape { dim: 3 }
5 }
6 operand {
7   name: "value"
8   type: FLOAT32
9   shape { dim: 1 }
10 }
11
12 operand {
13   name: "ofm"
14   type: FLOAT32
15   shape { dim: 3 dim: 2 dim: 8 }
16 }
17
18 operation {
19   type: "Fill"
20   fill_options {
21   }
22   input: "dims"
23   input: "value"
24   output: "ofm"
25 }
26
27 input: "dims"
28 input: "value"
29 output: "ofm"