Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / Range_000 / test.recipe
1 operand {
2   name: "start"
3   type: FLOAT32
4   shape { }
5   filler {
6     tag: "constant"
7     arg: "1"
8   }
9 }
10
11 operand {
12   name: "limit"
13   type: FLOAT32
14   shape { }
15   filler {
16     tag: "constant"
17     arg: "10"
18   }
19 }
20
21 operand {
22   name: "delta"
23   type: FLOAT32
24   shape { }
25   filler {
26     tag: "constant"
27     arg: "4"
28   }
29 }
30
31 operand {
32   name: "ofm"
33   type: FLOAT32
34   shape { dim: 3 }
35 }
36
37 operation {
38   type: "Range"
39   range_options {
40   }
41   input: "start"
42   input: "limit"
43   input: "delta"
44   output: "ofm"
45 }
46
47 output: "ofm"