fix c4244

This commit is contained in:
panhaiqi 2023-03-07 15:47:11 -08:00
parent df502e1c2a
commit cbc78dbde7

View File

@ -550,8 +550,8 @@ TEST(type_prop, matmul_propagate_label_on_b_input_after_reshape) {
const auto matmul = make_shared<op::MatMul>(a, reshape_b, false, false);
const auto& output_shape = matmul->get_output_partial_shape(0);
const Element labels = get_shape_labels(output_shape);
const auto labels = get_shape_labels(output_shape);
ASSERT_THAT(labels, ElementsAre(my_label, 0, 0));
ASSERT_THAT(labels, ElementsAre((int)my_label, 0, 0));
ASSERT_EQ(output_shape, (PartialShape{marked_dim, 5, 8}));
}