Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions csrc/common.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@
// Warp size

#if BNB_HIP
#if IS_CDNA
#define BNB_WARP_SIZE 64 // CDNA
// All of gfx9 is Wave64, including the GCN5 parts IS_CDNA omits.
#if defined(__GFX9__)
#define BNB_WARP_SIZE 64 // GCN5 / CDNA
#else
#define BNB_WARP_SIZE 32 // RDNA
#endif
Expand Down
Loading