Fix --direct-io 0

This commit is contained in:
Yu, Zijun 2026-01-22 15:52:10 +08:00
parent 8fb20b28b7
commit 1c0a47a485
1 changed files with 1 additions and 1 deletions

View File

@ -943,7 +943,7 @@ static bool ggml_backend_openvino_device_supports_op(ggml_backend_dev_t dev, con
}
static bool ggml_backend_openvino_device_supports_buft(ggml_backend_dev_t dev, ggml_backend_buffer_type_t buft) {
return ggml_backend_buft_is_openvino(buft) || ggml_backend_buft_is_openvino_host(buft);
return ggml_backend_buft_is_openvino(buft) || ggml_backend_buft_is_host(buft);
GGML_UNUSED(dev);
}