Commit 4ba2083d authored by charlie's avatar charlie
Browse files

Use ${function:exp} for elu

parent dc79a00a
......@@ -38,7 +38,7 @@ struct elu : unary<elu>
std::string point_op() const
{
return "${function:where}(${0} > 0, ${0}, ${alpha} * (migraphx::exp(${0}) - 1))";
return "${function:where}(${0} > 0, ${0}, ${alpha} * (${function:exp}(${0}) - 1))";
}
template <class Self, class F>
......
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