Skip to content

Commit 0f0545c

Browse files
author
Annie Ren
committed
remove Trailing whitespace
1 parent a6857c0 commit 0f0545c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ggml/src/ggml-cuda/mmq.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ bool ggml_cuda_should_use_mmq(enum ggml_type type, int cc, int64_t ne11, int64_t
299299
break;
300300
case GGML_TYPE_Q4_0_ROCMFP4:
301301
case GGML_TYPE_Q4_0_ROCMFP4_FAST:
302-
// guard on RDNA3.5 (gfx1151) for now.
302+
// guard on RDNA3.5 (gfx1151) for now.
303303
mmq_supported = GGML_CUDA_CC_IS_RDNA3_5(cc);
304304
break;
305305
default:

ggml/src/ggml-cuda/vecdotq.cuh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,10 +403,10 @@ static __device__ __forceinline__ int rocmfp4_get_qs_i32(const void * x, const i
403403
#endif
404404
}
405405

406-
// AMD-specific fast path for expanding eight packed ROCmFP4 nibbles into two int32 DP4A operands.
406+
// AMD-specific fast path for expanding eight packed ROCmFP4 nibbles into two int32 DP4A operands.
407407
// This encodes the Codebook10 table directly as four 32-bit constants:
408408
// [0, 1, 2, 3], [4, 6, 8, 10], [0, -1, -2, -3], [-4, -6, -8, -10]
409-
// Avoiding the table pointer keeps the ROCm/HIP MMVQ/MMQ hot path fully local to this format.
409+
// Avoiding the table pointer keeps the ROCm/HIP MMVQ/MMQ hot path fully local to this format.
410410
// Non-HIP builds still use llama.cpp's generic table expander.
411411
static __device__ __forceinline__ int2 rocmfp4_get_int_from_codebook_16(const int & q4, const int8_t * fallback_table) {
412412
#if defined(GGML_USE_HIP)

0 commit comments

Comments
 (0)