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