From 918b96056f2d72e11517176a6b7bceb1a6240b3a Mon Sep 17 00:00:00 2001 From: zhengzekang <359521840@qq.com> Date: Fri, 26 Jan 2024 02:02:42 +0000 Subject: [PATCH] fix typo --- marlin/marlin_cuda_kernel.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/marlin/marlin_cuda_kernel.cu b/marlin/marlin_cuda_kernel.cu index 7257901..4626c8b 100644 --- a/marlin/marlin_cuda_kernel.cu +++ b/marlin/marlin_cuda_kernel.cu @@ -62,7 +62,7 @@ __device__ inline void cp_async4_pred(void* smem_ptr, const void* glob_ptr, bool ); } -// Asynchronous global->shared copy with a chache hint indicating that the values may be evicted immediately; used for +// Asynchronous global->shared copy with a cache hint indicating that the values may be evicted immediately; used for // quantized weights B, which are only accessed precisely once and should thus not pollute the L2 cache which we need // for inputs A and outputs C. __device__ inline void cp_async4_stream(void* smem_ptr, const void* glob_ptr) {