Skip to content

Commit 24bdeaa

Browse files
ggerganovteleprint-me
authored andcommitted
cuda : fix compile warning (ggml-org#7454)
1 parent 6a238d7 commit 24bdeaa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ggml-cuda/fattn-tile-f32.cu

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,8 +283,7 @@ void launch_fattn_tile_f32_64_128(ggml_backend_cuda_context & ctx, ggml_tensor *
283283
}
284284

285285
void ggml_cuda_flash_attn_ext_tile_f32(ggml_backend_cuda_context & ctx, ggml_tensor * dst) {
286-
const ggml_tensor * KQV = dst;
287-
const ggml_tensor * Q = dst->src[0];
286+
const ggml_tensor * Q = dst->src[0];
288287

289288
if (Q->ne[1] <= 16) {
290289
constexpr int cols_per_block = 16;

0 commit comments

Comments
 (0)