Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / res / TensorFlowLiteRecipes / StridedSlice_002 / test.recipe
1 operand {
2   name: "ifm"
3   type: FLOAT32
4   shape { dim: 4 dim: 2 dim: 10 }
5 }
6 operand {
7   name: "begin"
8   type: INT32
9   shape { dim: 3 }
10   filler {
11     tag: "explicit"
12     arg: "0" arg: "0" arg: "0"
13   }
14 }
15 operand {
16   name: "end"
17   type: INT32
18   shape { dim: 3 }
19   filler {
20     tag: "explicit"
21     arg: "0" arg: "1" arg: "0"
22   }
23 }
24 operand {
25   name: "strides"
26   type: INT32
27   shape { dim: 3 }
28   filler {
29     tag: "explicit"
30     arg: "1" arg: "1" arg: "1"
31   }
32 }
33 operand {
34   name: "ofm"
35   type: FLOAT32
36   shape { dim:4 dim: 10 }
37 }
38 operation {
39   type: "StridedSlice"
40   strided_slice_options {
41     begin_mask: 5
42     end_mask: 5
43     ellipsis_mask: 0
44     new_axis_mask: 0
45     shrink_axis_mask: 2
46   }
47   input: "ifm"
48   input: "begin"
49   input: "end"
50   input: "strides"
51   output: "ofm"
52 }
53 input: "ifm"
54 output: "ofm"