ir_version: 3
producer_name: "backend-test"
graph {
  node {
    input: "X"
    input: "W"
    output: "Y"
    op_type: "ConvTranspose"
    attribute {
      name: "output_shape"
      ints: 10
      ints: 8
      type: INTS
    }
    attribute {
      name: "strides"
      ints: 3
      ints: 2
      type: INTS
    }
  }
  name: "test_convtranspose_output_shape"
  input {
    name: "X"
    type {
      tensor_type {
        elem_type: 1
        shape {
          dim {
            dim_value: 1
          }
          dim {
            dim_value: 1
          }
          dim {
            dim_value: 3
          }
          dim {
            dim_value: 3
          }
        }
      }
    }
  }
  input {
    name: "W"
    type {
      tensor_type {
        elem_type: 1
        shape {
          dim {
            dim_value: 1
          }
          dim {
            dim_value: 2
          }
          dim {
            dim_value: 3
          }
          dim {
            dim_value: 3
          }
        }
      }
    }
  }
  output {
    name: "Y"
    type {
      tensor_type {
        elem_type: 1
        shape {
          dim {
            dim_value: 1
          }
          dim {
            dim_value: 2
          }
          dim {
            dim_value: 10
          }
          dim {
            dim_value: 8
          }
        }
      }
    }
  }
}
opset_import {
  version: 9
}