From 6106e9068bf51ae19e1e0cdfc00bc65159d7ad07 Mon Sep 17 00:00:00 2001 From: bssrdf Date: Sat, 8 Nov 2025 19:35:29 -0500 Subject: [PATCH] make CI happy --- ggml/src/ggml-cuda/conv2d-implicit.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml-cuda/conv2d-implicit.cu b/ggml/src/ggml-cuda/conv2d-implicit.cu index 3d086343d7..da2a6868a9 100644 --- a/ggml/src/ggml-cuda/conv2d-implicit.cu +++ b/ggml/src/ggml-cuda/conv2d-implicit.cu @@ -857,7 +857,7 @@ static void conv2d_implicit_cuda_f16(ggml_backend_cuda_context & ctx, const floa const int nsm = ggml_cuda_info().devices[ggml_cuda_get_device()].nsm; // if (BlocksM * BlocksN < nsm && P.c >= 8 * ksplit && (P.c * P.r * P.s) % (8*ksplit) == 0) { - if (BlocksM * BlocksN < nsm){ + if (BlocksM * BlocksN < (unsigned int)nsm){ int ks = min(12, nsm / (BlocksM * BlocksN)); int j;