We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcd72be commit 5133acaCopy full SHA for 5133aca
src/common/transformations/src/transformations/mlir/op/transpose.cpp
@@ -30,7 +30,7 @@ struct ConvertTranspose {
30
31
auto const_order = dynamic_cast<ov::op::v0::Constant*>(node->get_input_node_ptr(1));
32
assert(const_order && "non-const order not supported");
33
- std::vector<int32_t> coords = const_order->get_vector<int32_t>();
+ ov::Coordinate coords = const_order->get_coordinate_val();
34
SmallVector<int64_t> order(coords.begin(), coords.end());
35
36
auto empty = builder.create<tensor::EmptyOp>(loc, out_type, dynamic_dimensions);
0 commit comments