ggml : add build-time message to remind about ggml_set_rows (#14661)

ggml-ci
This commit is contained in:
Georgi Gerganov
2025-07-13 10:36:33 +03:00
committed by GitHub
parent dcf7f2ea3c
commit 05fec5bd29
4 changed files with 4 additions and 0 deletions

View File

@@ -4303,6 +4303,7 @@ static bool ggml_backend_sycl_device_supports_op(ggml_backend_dev_t dev, const g
{
// TODO: add support
// ref: https://github.com/ggml-org/llama.cpp/pull/14274
#pragma message("TODO: implement BF16, Q4_0, Q4_1, Q5_0, Q5_1, Q8_0, IQ4_NL support (https://github.com/ggml-org/llama.cpp/pull/14661)")
return (op->type == GGML_TYPE_F32 || (op->type == GGML_TYPE_F16 && op->src[0]->type == GGML_TYPE_F32 && op->src[1]->type == GGML_TYPE_I64));
} break;
case GGML_OP_CPY: