File tree 1 file changed +0
-5
lines changed
src/common/transformations/src/transformations/mlir/op
1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,9 @@ struct ConvertShapeOf {
25
25
const auto ov_output_element_type = node->get_output_element_type (0 );
26
26
const auto ov_output_shape = node->get_output_partial_shape (0 );
27
27
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.
32
28
auto shapeOf = builder.create <shape::ShapeOfOp>(loc, mlir::ValueRange{input});
33
29
auto casted_type = RankedTensorType::get (ArrayRef (importShape (ov_output_shape)), importPrecision (context.context , ov_output_element_type));
34
30
auto cast = builder.create <arith::IndexCastOp>(loc, casted_type, mlir::ValueRange{shapeOf});
35
- std::cerr << shapeOf->getParentOp () << " \n " ;
36
31
context.addOutputs (node, cast);
37
32
}
38
33
};
You can’t perform that action at this time.
0 commit comments