re-structure tuple/array to avoid spill

This commit is contained in:
carlushuang
2024-03-11 15:32:10 +00:00
parent 0bd76de8a6
commit 9f34bcb431
14 changed files with 386 additions and 143 deletions

View File

@@ -43,7 +43,7 @@ struct alignas(2) half_t
constexpr fp16_hip_t to_fp16() const { return ck_tile::bit_cast<fp16_hip_t>(data); }
// constructor
constexpr half_t() : data() {}
constexpr half_t() : data{} {}
// construct from HIP half
CK_TILE_HOST_DEVICE