Commit eb6ac6a5 authored by Brian Pickrell's avatar Brian Pickrell
Browse files

formatting

parent 36bb977b
......@@ -2220,10 +2220,7 @@ TEST_CASE(rand_uniform)
{
std::vector<migraphx::shape::dynamic_dimension> dd{{5, 8}, {3, 7}};
migraphx::shape s1{migraphx::shape::float_type, dd};
expect_shape(
s1,
migraphx::make_op("rand_uniform", {{"seed", 1}}),
s1);
expect_shape(s1, migraphx::make_op("rand_uniform", {{"seed", 1}}), s1);
}
TEST_CASE(rand_uniform_2args)
......@@ -2232,10 +2229,7 @@ TEST_CASE(rand_uniform_2args)
migraphx::shape s1{migraphx::shape::float_type, dd};
migraphx::shape s2{migraphx::shape::uint32_type, dd};
expect_shape(
s1,
migraphx::make_op("rand_uniform", {{"seed", 1}}),
s1, s2);
expect_shape(s1, migraphx::make_op("rand_uniform", {{"seed", 1}}), s1, s2);
}
TEST_CASE(quant_convolution_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