From: Georgi Gerganov Date: Wed, 28 Aug 2024 14:08:03 +0000 (+0300) Subject: cuda : mark BF16 CONT as unsupported X-Git-Tag: upstream/0.0.4488~797 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=51d964a4efdb0e8d43f5b85a775951185f6b641e;p=pkg%2Fggml%2Fsources%2Fllama.cpp cuda : mark BF16 CONT as unsupported --- diff --git a/ggml/src/ggml-cuda.cu b/ggml/src/ggml-cuda.cu index d33988d0..af1bd051 100644 --- a/ggml/src/ggml-cuda.cu +++ b/ggml/src/ggml-cuda.cu @@ -2887,7 +2887,9 @@ GGML_CALL static bool ggml_backend_cuda_supports_op(ggml_backend_t backend, cons case GGML_OP_SIN: case GGML_OP_COS: case GGML_OP_CLAMP: + return true; case GGML_OP_CONT: + return op->src[0]->type != GGML_TYPE_BF16; case GGML_OP_DIAG_MASK_INF: case GGML_OP_SOFT_MAX: return true;