mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-20 06:49:15 +00:00
Fix compilation errors with latest clang22 version. (#3396)
* remove target attributes from deduction guides * switch CK_TILE_HOST_DEVICE_EXTERN based on clang version
This commit is contained in:
@@ -47,9 +47,8 @@ struct composes<F>
|
||||
F f_;
|
||||
};
|
||||
|
||||
/// FIXME: create macro to replace '__host__ __device__' and nothing more
|
||||
template <typename... Ts>
|
||||
__host__ __device__ composes(Ts&&...) -> composes<remove_cvref_t<Ts>...>;
|
||||
CK_TILE_HOST_DEVICE_EXTERN composes(Ts&&...) -> composes<remove_cvref_t<Ts>...>;
|
||||
|
||||
template <typename SaturateType>
|
||||
struct saturates
|
||||
|
||||
Reference in New Issue
Block a user