Skip to content

Commit b772674

Browse files
committed
fixup! Add shape_of conversion
1 parent 5421507 commit b772674

File tree

1 file changed

+0
-5
lines changed
  • src/common/transformations/src/transformations/mlir/op

1 file changed

+0
-5
lines changed

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

-5
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,9 @@ struct ConvertShapeOf {
2525
const auto ov_output_element_type = node->get_output_element_type(0);
2626
const auto ov_output_shape = node->get_output_partial_shape(0);
2727
const auto input = context.getInputs(node)[0];
28-
auto dynamic_dimensions = context.get_dynamic_dimension_values(ov_output_shape);
29-
auto outType = importTensor(context.context, ov_output_shape, ov_output_element_type);
30-
// importPrecision(context.context, ov_output_element_type) yileds si64 type.
31-
// This is incompatible with arith.index_cast.
3228
auto shapeOf = builder.create<shape::ShapeOfOp>(loc, mlir::ValueRange{input});
3329
auto casted_type = RankedTensorType::get(ArrayRef(importShape(ov_output_shape)), importPrecision(context.context, ov_output_element_type));
3430
auto cast = builder.create<arith::IndexCastOp>(loc, casted_type, mlir::ValueRange{shapeOf});
35-
std::cerr << shapeOf->getParentOp() << "\n";
3631
context.addOutputs(node, cast);
3732
}
3833
};

0 commit comments

Comments
 (0)