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
480288f8
Commit
480288f8
authored
Nov 21, 2023
by
Umang Yadav
Browse files
use void for highest to match template candidates
parent
f9542d5b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/targets/gpu/kernels/include/migraphx/kernels/float8.hpp
src/targets/gpu/kernels/include/migraphx/kernels/float8.hpp
+1
-1
src/targets/gpu/kernels/include/migraphx/kernels/math.hpp
src/targets/gpu/kernels/include/migraphx/kernels/math.hpp
+1
-1
src/targets/gpu/kernels/include/migraphx/kernels/ops.hpp
src/targets/gpu/kernels/include/migraphx/kernels/ops.hpp
+1
-1
No files found.
src/targets/gpu/kernels/include/migraphx/kernels/float8.hpp
View file @
480288f8
...
@@ -32,8 +32,8 @@
...
@@ -32,8 +32,8 @@
#define MIGRAPHX_F8_DOWNCAST_CLIPPING 1 // NOLINT
#define MIGRAPHX_F8_DOWNCAST_CLIPPING 1 // NOLINT
#include <migraphx/kernels/types.hpp>
#include <migraphx/kernels/types.hpp>
#include <migraphx/kernels/float8_impl.hpp>
#include <migraphx/kernels/type_traits.hpp>
#include <migraphx/kernels/type_traits.hpp>
#include <migraphx/kernels/float8_impl.hpp>
namespace
migraphx
{
namespace
migraphx
{
namespace
fp8
{
namespace
fp8
{
...
...
src/targets/gpu/kernels/include/migraphx/kernels/math.hpp
View file @
480288f8
...
@@ -25,11 +25,11 @@
...
@@ -25,11 +25,11 @@
#define MIGRAPHX_GUARD_KERNELS_MATH_HPP
#define MIGRAPHX_GUARD_KERNELS_MATH_HPP
#include <migraphx/kernels/types.hpp>
#include <migraphx/kernels/types.hpp>
#include <migraphx/kernels/float8.hpp>
#include <migraphx/kernels/vec.hpp>
#include <migraphx/kernels/vec.hpp>
#include <migraphx/kernels/functional.hpp>
#include <migraphx/kernels/functional.hpp>
#include <migraphx/kernels/type_traits.hpp>
#include <migraphx/kernels/type_traits.hpp>
#include <migraphx/kernels/hip.hpp>
#include <migraphx/kernels/hip.hpp>
#include <migraphx/kernels/float8.hpp>
namespace
migraphx
{
namespace
migraphx
{
...
...
src/targets/gpu/kernels/include/migraphx/kernels/ops.hpp
View file @
480288f8
...
@@ -118,7 +118,7 @@ struct highest
...
@@ -118,7 +118,7 @@ struct highest
template
<
class
T
>
template
<
class
T
>
constexpr
operator
T
()
const
constexpr
operator
T
()
const
{
{
return
numeric_max
<
vec_type
<
T
>>
();
return
numeric_max
<
vec_type
<
T
>
,
void
>
();
}
}
};
};
}
// namespace migraphx
}
// namespace migraphx
...
...
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