CUDA: add unused vars to mmvf and mmvq (#16807)

This commit is contained in:
Aman Gupta
2025-10-28 10:31:21 +08:00
committed by GitHub
parent ad8d36beff
commit 463bbf20bf
2 changed files with 8 additions and 0 deletions

View File

@@ -310,6 +310,10 @@ static __global__ void mul_mat_vec_q(
dst[j*stride_col_dst + threadIdx.x] = result;
}
}
if constexpr (!has_fusion) {
GGML_UNUSED_VARS(use_gate, use_bias, use_gate_bias, active_glu, gate_bias, x_bias, tmp_gate);
}
}
static std::pair<dim3, dim3> calc_launch_params(