"driver/driver.cpp" did not exist on "50b96745c68d17c3c03b4492d23867eb5e859aa7"
Commit 5793740d authored by charlie's avatar charlie
Browse files

Fix test typo?

parent 0fb17f71
......@@ -34,7 +34,7 @@ struct test_elu : verify_program<test_elu>
migraphx::program p;
auto* mm = p.get_main_module();
auto x = mm->add_parameter("x", migraphx::shape{migraphx::shape::float_type, {4, 3, 3, 3}});
mm->add_instruction(migraphx::make_op("leaky_relu", {{"alpha", 1.0}}), x);
mm->add_instruction(migraphx::make_op("elu", {{"alpha", 1.0}}), x);
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