Enable importing of TF_NASNet_Mobile (#1252)
[platform/upstream/dldt.git] / ngraph / test / models / onnx / dynamic_shapes / slice_2d_input_opset1.prototxt
1 ir_version: 6
2 producer_name: "nGraph ONNX Importer"
3 graph {
4   name: "test_slice"
5   node {
6     input: "data"
7     output: "sliced"
8     name: "Slice"
9     op_type: "Slice"
10     attribute {
11       name: "axes"
12       ints: 0
13       ints: 1
14       type: INTS
15     }
16     attribute {
17       name: "starts"
18       ints: 1
19       ints: 0
20       type: INTS
21     }
22     attribute {
23       name: "ends"
24       ints: 2
25       ints: 4
26       type: INTS
27     }
28   }
29   input {
30     name: "data"
31     type {
32       tensor_type {
33         elem_type: 1
34         shape {
35           dim {
36             dim_value:2
37           }
38           dim {
39             dim_value:4
40           }
41         }
42       }
43     }
44   }
45   output {
46     name: "sliced"
47     type {
48       tensor_type {
49         elem_type: 1
50         shape {
51         }
52       }
53     }
54   }
55 }
56 opset_import {
57   version: 1
58 }