openvino/ngraph/test/models/onnx/split_variable_parts_2d.pro...

74 lines
1.1 KiB
Plaintext

ir_version: 3
producer_name: "nGraph ONNX Importer"
graph {
node {
input: "input"
output: "output_1"
output: "output_2"
op_type: "Split"
attribute {
name: "axis"
i: 1
type: INT
}
attribute {
name: "split"
ints: 2
ints: 4
type: INTS
}
}
name: "test_split_variable_parts_2d"
input {
name: "input"
type {
tensor_type {
elem_type: 1
shape {
dim {
dim_value: 2
}
dim {
dim_value: 6
}
}
}
}
}
output {
name: "output_1"
type {
tensor_type {
elem_type: 1
shape {
dim {
dim_value: 2
}
dim {
dim_value: 2
}
}
}
}
}
output {
name: "output_2"
type {
tensor_type {
elem_type: 1
shape {
dim {
dim_value: 2
}
dim {
dim_value: 4
}
}
}
}
}
}
opset_import {
version: 8
}