Skip to content

Commit 5133aca

Browse files
committed
fixup! Add transpose pattern
1 parent fcd72be commit 5133aca

File tree

1 file changed

+1
-1
lines changed
  • src/common/transformations/src/transformations/mlir/op

1 file changed

+1
-1
lines changed

src/common/transformations/src/transformations/mlir/op/transpose.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ struct ConvertTranspose {
3030

3131
auto const_order = dynamic_cast<ov::op::v0::Constant*>(node->get_input_node_ptr(1));
3232
assert(const_order && "non-const order not supported");
33-
std::vector<int32_t> coords = const_order->get_vector<int32_t>();
33+
ov::Coordinate coords = const_order->get_coordinate_val();
3434
SmallVector<int64_t> order(coords.begin(), coords.end());
3535

3636
auto empty = builder.create<tensor::EmptyOp>(loc, out_type, dynamic_dimensions);

0 commit comments

Comments
 (0)