Commit 70858f87 authored by Shucai Xiao's avatar Shucai Xiao
Browse files

change test example to achieve better code coverage.

parent f61beaf8
......@@ -42,7 +42,7 @@ TEST_CASE(param_add)
auto p1 = create_program_float();
auto p2 = create_program_half();
migraphx::quantize(p1, {"all"});
migraphx::quantize(p1);
EXPECT(p1 == p2);
}
......@@ -142,7 +142,7 @@ TEST_CASE(param_add_sub)
auto p1 = create_program_float();
auto p2 = create_program_half_all();
migraphx::quantize(p1, {"all"});
migraphx::quantize(p1);
migraphx::run_passes(p1, {migraphx::dead_code_elimination{}});
EXPECT(p1 == p2);
......
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