Skip to content

Commit 301ae30

Browse files
fix turing config lookup
1 parent e2c50b1 commit 301ae30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-cuda/fattn-mma-f16.cuh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ static __host__ uint32_t ggml_cuda_fattn_mma_get_config(const int DKQ, const int
104104
if (ampere_mma_available(cc)) {
105105
return ggml_cuda_fattn_mma_get_config_ampere(DKQ, DV, ncols);
106106
}
107-
if (ampere_mma_available(cc)) {
107+
if (turing_mma_available(cc)) {
108108
return ggml_cuda_fattn_mma_get_config_turing(DKQ, DV, ncols);
109109
}
110110
GGML_ASSERT(volta_mma_available(cc));

0 commit comments

Comments
 (0)