ir_version: 5
producer_name: "nGraph ONNX Importer"
graph {
  node {
    input: "x"
    input: "axis"
    output: "y"
    op_type: "CumSum"
    attribute {
      name: "exclusive"
      i: 0
      type: INT
    }
    attribute {
      name: "reverse"
      i: 0
      type: INT
    }
  }
  name: "test_cum_sum"
  input {
    name: "x"
    type {
      tensor_type {
        elem_type: 1
        shape {
          dim {
            dim_value: 2
          }
          dim {
            dim_value: 3
          }
        }
      }
    }
  }
  initializer {
    data_type: 7
    name: "axis"
    int64_data: 1
  }
  input {
    name: "axis"
    type {
      tensor_type {
        elem_type: 7
      }
    }
  }
  output {
    name: "y"
    type {
      tensor_type {
        elem_type: 1
        shape {
          dim {
            dim_value: 2
          }
          dim {
            dim_value: 3
          }
        }
      }
    }
  }
}
opset_import {
  version: 11
}