Skip to content

Commit 947f64e

Browse files
authored
Fix linting issues
1 parent 6d51838 commit 947f64e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

csrc/common.cuh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
// CDNA (gfx9xx) = 64, RDNA (gfx10xx/gfx11xx/gfx12xx) = 32.
1111
// __AMDGCN_WAVEFRONT_SIZE is not defined by all compiler versions (removed since ROCm 7.0),
1212
// so fall back to architecture-family macros when it is absent.
13-
// This is a macro that is defined by the compiler during each device-code pass and as such should only be used inside kernels.
13+
// This is a macro that is defined by the compiler during each device-code pass and as such
14+
// should only be used inside kernels.
1415
#ifdef __AMDGCN_WAVEFRONT_SIZE
1516
#define BNB_WARP_SIZE __AMDGCN_WAVEFRONT_SIZE
1617
#elif defined(__GFX9__)

0 commit comments

Comments
 (0)