CUDA: add bf16 and i32 to getrows (#14529)

This commit is contained in:
Aman Gupta
2025-07-07 21:45:43 +08:00
committed by GitHub
parent 6491d6e4f1
commit b9c3eefde1
2 changed files with 10 additions and 0 deletions

View File

@@ -3200,6 +3200,8 @@ static bool ggml_backend_cuda_device_supports_op(ggml_backend_dev_t dev, const g
switch (op->src[0]->type) {
case GGML_TYPE_F16:
case GGML_TYPE_F32:
case GGML_TYPE_BF16:
case GGML_TYPE_I32:
case GGML_TYPE_Q4_0:
case GGML_TYPE_Q4_1:
case GGML_TYPE_Q5_0: