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
ec55785e
Commit
ec55785e
authored
Nov 09, 2023
by
Artur Wojcik
Browse files
fix compilation after merge
parent
cab91417
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
src/include/migraphx/module.hpp
src/include/migraphx/module.hpp
+1
-0
src/include/migraphx/op/isinf.hpp
src/include/migraphx/op/isinf.hpp
+1
-1
No files found.
src/include/migraphx/module.hpp
View file @
ec55785e
...
...
@@ -42,6 +42,7 @@
namespace
migraphx
{
inline
namespace
MIGRAPHX_INLINE_NS
{
MIGRAPHX_EXPORT
const
operation
&
get_operation
(
instruction_ref
ins
);
struct
module_impl
;
...
...
src/include/migraphx/op/isinf.hpp
View file @
ec55785e
...
...
@@ -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"
;
}
...
...
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