make CI happy

This commit is contained in:
bssrdf 2025-11-08 19:35:29 -05:00
parent a3fb36fb71
commit 6106e9068b
1 changed files with 1 additions and 1 deletions

View File

@ -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;