"vscode:/vscode.git/clone" did not exist on "585e863eabe1626e901fa8bed9961473b4d8c8c8"
Commit 746eee8c authored by Khalique's avatar Khalique
Browse files

fix exp and log definitions

parent 98c3690f
......@@ -182,7 +182,7 @@ TEST_CASE(sum_test)
EXPECT(p == prog);
}
void exp_test()
TEST_CASE(exp_test)
{
migraphx::program p;
auto input = p.add_parameter("x", migraphx::shape{migraphx::shape::float_type, {10}});
......@@ -192,7 +192,7 @@ void exp_test()
EXPECT(p == prog);
}
void log_test()
TEST_CASE(log_test)
{
migraphx::program p;
auto input = p.add_parameter("x", migraphx::shape{migraphx::shape::float_type, {10}});
......
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