mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-26 09:49:08 +00:00
Do not use warpSize as compile time constant as it is removed (#2320)
* Do not use warpSize as compile time constant as it is removed * Update tile_image_to_column_shape.hpp update warpSize usage. * clean-up all use of warpSize, make sure code builds * fix --------- Co-authored-by: Illia Silin <98187287+illsilin@users.noreply.github.com> Co-authored-by: illsilin <Illia.Silin@amd.com> Co-authored-by: Bartlomiej Kocot <barkocot@amd.com>
This commit is contained in:
committed by
GitHub
parent
3af66e99ab
commit
4c57157d50
@@ -274,6 +274,12 @@
|
||||
|
||||
namespace ck {
|
||||
|
||||
#if defined(__GFX9__) || !defined(__HIP_DEVICE_COMPILE__)
|
||||
__device__ static constexpr int WarpSize = 64;
|
||||
#else
|
||||
__device__ static constexpr int WarpSize = 32;
|
||||
#endif
|
||||
|
||||
enum struct InMemoryDataOperationEnum
|
||||
{
|
||||
Set,
|
||||
|
||||
Reference in New Issue
Block a user