"tools/vscode:/vscode.git/clone" did not exist on "555334def9b27d4972c3e970683265380c42a47d"
Commit dfbab16e authored by Paul's avatar Paul
Browse files

Remove inline namespace

parent ef46b4dd
...@@ -34,7 +34,7 @@ struct test_add_nhwc : verify_program<test_add_nhwc> ...@@ -34,7 +34,7 @@ struct test_add_nhwc : verify_program<test_add_nhwc>
migraphx::program p; migraphx::program p;
auto* mm = p.get_main_module(); auto* mm = p.get_main_module();
auto s = migraphx::shape::from_permutation( auto s = migraphx::shape::from_permutation(
migraphx::version_1::shape::float_type, {4, 3, 8, 8}, {0, 2, 3, 1}); migraphx::shape::float_type, {4, 3, 8, 8}, {0, 2, 3, 1});
auto x = mm->add_parameter("x", s); auto x = mm->add_parameter("x", s);
auto y = mm->add_parameter("y", s); auto y = mm->add_parameter("y", s);
auto add = mm->add_instruction(migraphx::make_op("add"), x, y); auto add = mm->add_instruction(migraphx::make_op("add"), x, y);
......
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