Commit 1add453a authored by Khalique Ahmed's avatar Khalique Ahmed
Browse files

change tests

parent c00100f9
...@@ -51,7 +51,7 @@ struct test_conv_add_relu : verify_program<test_conv_add_relu> ...@@ -51,7 +51,7 @@ struct test_conv_add_relu : verify_program<test_conv_add_relu>
} }
}; };
struct test_conv_add_relu : verify_program<test_conv_add_relu> struct test_conv_add_relu_conv : verify_program<test_conv_add_relu_conv>
{ {
migraphx::program create_program() const migraphx::program create_program() const
{ {
......
...@@ -42,6 +42,7 @@ struct test_conv_pooling : verify_program<test_conv_pooling> ...@@ -42,6 +42,7 @@ struct test_conv_pooling : verify_program<test_conv_pooling>
auto pooling = mm->add_instruction( auto pooling = mm->add_instruction(
migraphx::make_op("pooling", {{"mode", migraphx::op::pooling_mode::max}}), conv); migraphx::make_op("pooling", {{"mode", migraphx::op::pooling_mode::max}}), conv);
mm->add_instruction(migraphx::make_op("relu"), pooling); mm->add_instruction(migraphx::make_op("relu"), pooling);
std::cout << p << std::endl;
return p; return p;
} }
}; };
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