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