]> git.djapps.eu Git - pkg/ggml/sources/ggml/commitdiff
CUDA: fix insufficient buffer clearing for MMQ (llama/10032)
authorJohannes Gäßler <redacted>
Thu, 24 Oct 2024 12:40:23 +0000 (14:40 +0200)
committerGeorgi Gerganov <redacted>
Sat, 26 Oct 2024 07:31:47 +0000 (10:31 +0300)
src/ggml-cuda.cu

index 4a0329a639624174fdf5ae954e8ae988d867faed..21c9f5e3829cb3d84230ec7177eba5beda38ff5f 100644 (file)
@@ -1479,11 +1479,12 @@ static void ggml_cuda_op_mul_mat(
         if (src0_is_contiguous) {
             dev[id].src0_dd = split ? (char *) src0_extra->data_device[id] : (char *) src0->data;
         } else {
-            // If src0 is not contiguous it will be copied to a temporary buffer, it may then be necessary to clear padding.
+            // If src0 is not contiguous it will be copied to a temporary buffer.
+            // This buffer needs to be cleared entirely because multiple regions will function as padding.
             const size_t nbytes_data    = ggml_nbytes(src0);
             const size_t nbytes_padding = ggml_row_size(src0->type, MATRIX_ROW_PADDING - ne00 % MATRIX_ROW_PADDING);
             dev[id].src0_dd = dev[id].src0_dd_alloc.alloc(ctx.pool(id), nbytes_data + nbytes_padding);
-            CUDA_CHECK(cudaMemsetAsync(dev[id].src0_dd + nbytes_data , 0, nbytes_padding, stream));
+            CUDA_CHECK(cudaMemsetAsync(dev[id].src0_dd, 0, nbytes_data + nbytes_padding, stream));
         }
 
         // If src0 is on a temporary compute buffer (partial offloading) there may be some padding that needs to be cleared: