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
composable_kernel_ROCM
Commits
f11f4b08
"vscode:/vscode.git/clone" did not exist on "df0d68106eb3bbc38d59648fbc7bb9560d0fb52c"
Commit
f11f4b08
authored
Feb 12, 2025
by
Astha Rai
Browse files
fixed header guard issues
parent
982c17e6
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
1 deletion
+6
-1
include/ck/tensor_operation/gpu/device/device_base.hpp
include/ck/tensor_operation/gpu/device/device_base.hpp
+1
-0
include/ck/tensor_operation/gpu/grid/block_to_ctile_map.hpp
include/ck/tensor_operation/gpu/grid/block_to_ctile_map.hpp
+1
-0
include/ck/utility/data_type.hpp
include/ck/utility/data_type.hpp
+2
-1
include/ck/utility/math_v2.hpp
include/ck/utility/math_v2.hpp
+1
-0
include/ck/utility/tuple_helper.hpp
include/ck/utility/tuple_helper.hpp
+1
-0
No files found.
include/ck/tensor_operation/gpu/device/device_base.hpp
View file @
f11f4b08
...
...
@@ -16,6 +16,7 @@
#include "ck/stream_config.hpp"
#endif
#endif
namespace
ck
{
namespace
tensor_operation
{
...
...
include/ck/tensor_operation/gpu/grid/block_to_ctile_map.hpp
View file @
f11f4b08
...
...
@@ -17,6 +17,7 @@
#include <limits>
#include <stdlib.h>
#endif
#endif
namespace
ck
{
...
...
include/ck/utility/data_type.hpp
View file @
f11f4b08
...
...
@@ -2624,6 +2624,7 @@ using pk_i4x2_t = typename vector_type<pk_i4_t, 2>::type;
using
pk_i4x4_t
=
typename
vector_type
<
pk_i4_t
,
4
>::
type
;
using
pk_i4x8_t
=
typename
vector_type
<
pk_i4_t
,
8
>::
type
;
#ifdef __HIPCC_RTC__
#ifdef CK_CODE_GEN_RTC
template
<
typename
T
>
struct
NumericLimits
;
...
...
@@ -2971,7 +2972,6 @@ struct NumericLimits<bf8_ocp_t>
return
bit_cast
<
bf8_ocp_t
>
(
binary_qnan
);
}
};
#endif
template
<
>
struct
NumericLimits
<
f4_t
>
...
...
@@ -3085,6 +3085,7 @@ struct NumericLimits<e8m0_bexp_t>
}
};
#endif
#endif
template
<
typename
T
>
struct
NumericUtils
...
...
include/ck/utility/math_v2.hpp
View file @
f11f4b08
...
...
@@ -465,6 +465,7 @@ inline __host__ double expm1<double>(double x)
return
std
::
expm1
(
x
);
}
#endif
#endif
// math functions for the HIP kernel, some are implemented by calling hip builtin functions
static
inline
__device__
float
abs
(
float
x
)
{
return
::
abs
(
x
);
};
...
...
include/ck/utility/tuple_helper.hpp
View file @
f11f4b08
...
...
@@ -173,6 +173,7 @@ using is_tuple = decltype(ck::declval<T&>().IsTuple());
template
<
typename
...
Ts
>
__host__
__device__
constexpr
auto
IsNestedTuple
(
const
Tuple
<
Ts
...
>&
)
{
#ifndef __HIPCC_RTC__
#ifndef CK_CODE_GEN_RTC
return
(
is_detected
<
is_tuple
,
Ts
>::
value
||
...);
#endif
...
...
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