"...composable_kernel_rocm.git" did not exist on "0475a3272d37de8b8989c072dfe310958579902a"
Commit aa412fc5 authored by Khalique's avatar Khalique
Browse files

formatting

parent 23546ab5
...@@ -136,7 +136,8 @@ TEST_CASE(non_standard_flatten_op) ...@@ -136,7 +136,8 @@ TEST_CASE(non_standard_flatten_op)
migraphx::module m; migraphx::module m;
auto l = m.add_parameter("x", {migraphx::shape::float_type, {2, 6, 6, 6}}); auto l = m.add_parameter("x", {migraphx::shape::float_type, {2, 6, 6, 6}});
auto t = m.add_instruction(migraphx::make_op("slice", {{"axes", {2, 3}}, {"starts", {1, 1}}, {"ends", {6, 6}}}), l); auto t = m.add_instruction(
migraphx::make_op("slice", {{"axes", {2, 3}}, {"starts", {1, 1}}, {"ends", {6, 6}}}), l);
auto c = m.add_instruction(migraphx::make_op("contiguous"), t); auto c = m.add_instruction(migraphx::make_op("contiguous"), t);
m.add_instruction(migraphx::make_op("flatten"), c); m.add_instruction(migraphx::make_op("flatten"), c);
auto count = std::distance(m.begin(), m.end()); auto count = std::distance(m.begin(), m.end());
......
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