Commit 1be4ea43 authored by charlie's avatar charlie
Browse files

Fix test typo

parent 60d5fa1a
...@@ -1221,11 +1221,11 @@ TEST_CASE(multibroadcast_2in_static_dyn2) ...@@ -1221,11 +1221,11 @@ TEST_CASE(multibroadcast_2in_static_dyn2)
std::vector<migraphx::shape::dynamic_dimension> b{{8, 8, 0}, {6, 6, 0}}; std::vector<migraphx::shape::dynamic_dimension> b{{8, 8, 0}, {6, 6, 0}};
migraphx::shape b_shape{migraphx::shape::float_type, b}; migraphx::shape b_shape{migraphx::shape::float_type, b};
expect_shape(migraphx::shape{migraphx::shape::float_type, {{8, 8, 0}, {6, 6, 0}}}, expect_shape(migraphx::shape{migraphx::shape::float_type, {{8, 8, 0}, {6, 6, 0}}},
migraphx::make_op("multibroadcast", {{"output_dyn_dims", migraphx::to_value(b)}}), migraphx::make_op("multibroadcast", {{"out_dyn_dims", migraphx::to_value(b)}}),
a_shape, a_shape,
b_shape); b_shape);
expect_shape(migraphx::shape{migraphx::shape::float_type, {{8, 8, 0}, {6, 6, 0}}}, expect_shape(migraphx::shape{migraphx::shape::float_type, {{8, 8, 0}, {6, 6, 0}}},
migraphx::make_op("multibroadcast", {{"output_dyn_dims", migraphx::to_value(b)}}), migraphx::make_op("multibroadcast", {{"out_dyn_dims", migraphx::to_value(b)}}),
b_shape, b_shape,
a_shape); a_shape);
} }
...@@ -1283,11 +1283,11 @@ TEST_CASE(multibroadcast_2in_dyn_dyn1) ...@@ -1283,11 +1283,11 @@ TEST_CASE(multibroadcast_2in_dyn_dyn1)
std::vector<migraphx::shape::dynamic_dimension> b{{2, 4, 2}, {2, 4, 0}}; std::vector<migraphx::shape::dynamic_dimension> b{{2, 4, 2}, {2, 4, 0}};
migraphx::shape b_shape{migraphx::shape::float_type, b}; migraphx::shape b_shape{migraphx::shape::float_type, b};
expect_shape(migraphx::shape{migraphx::shape::float_type, {{1, 4, 0}, {2, 4, 2}, {2, 4, 0}}}, expect_shape(migraphx::shape{migraphx::shape::float_type, {{1, 4, 0}, {2, 4, 2}, {2, 4, 0}}},
migraphx::make_op("multibroadcast", {{"output_dyn_dims", migraphx::to_value(a)}}), migraphx::make_op("multibroadcast", {{"out_dyn_dims", migraphx::to_value(a)}}),
a_shape, a_shape,
b_shape); b_shape);
expect_shape(migraphx::shape{migraphx::shape::float_type, {{1, 4, 0}, {2, 4, 2}, {2, 4, 0}}}, expect_shape(migraphx::shape{migraphx::shape::float_type, {{1, 4, 0}, {2, 4, 2}, {2, 4, 0}}},
migraphx::make_op("multibroadcast", {{"output_dyn_dims", migraphx::to_value(a)}}), migraphx::make_op("multibroadcast", {{"out_dyn_dims", migraphx::to_value(a)}}),
b_shape, b_shape,
a_shape); a_shape);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment