Skip to content

Commit

Permalink
Merge branch 'develop' into missing_export_module
Browse files Browse the repository at this point in the history
  • Loading branch information
causten authored Nov 10, 2023
2 parents bb05a95 + ad1afd5 commit d9c91f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/migraphx/op/isinf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ struct isinf : unary<isinf>
{
auto apply() const
{
return [&](auto x) { return std::isinf(x); };
return [&](auto x) { return std::isinf(static_cast<double>(x)); };
}

std::string name() const { return "isinf"; }
Expand Down

0 comments on commit d9c91f0

Please sign in to comment.