Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
MIGraphX
Commits
ad1afd58
"tests/pipelines/ddpm/__init__.py" did not exist on "d8287fcd1d94f33df55b54e2e1c140c2ab15b444"
Unverified
Commit
ad1afd58
authored
Nov 10, 2023
by
Artur Wojcik
Committed by
GitHub
Nov 10, 2023
Browse files
fix call to std::isinf() on Windows (#2425)
parent
35e5298e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/include/migraphx/op/isinf.hpp
src/include/migraphx/op/isinf.hpp
+1
-1
No files found.
src/include/migraphx/op/isinf.hpp
View file @
ad1afd58
...
@@ -35,7 +35,7 @@ struct isinf : unary<isinf>
...
@@ -35,7 +35,7 @@ struct isinf : unary<isinf>
{
{
auto
apply
()
const
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"
;
}
std
::
string
name
()
const
{
return
"isinf"
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment