mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-06-02 07:55:57 +02:00
use LOG_WARN to replace std::cerr
(llama/13657)
This commit is contained in:
parent
f0803e6646
commit
000d65befb
@ -9264,8 +9264,7 @@ static ggml_backend_buffer_t ggml_backend_vk_host_buffer_type_alloc_buffer(ggml_
|
|||||||
try {
|
try {
|
||||||
ptr = ggml_vk_host_malloc(vk_instance.devices[0], size);
|
ptr = ggml_vk_host_malloc(vk_instance.devices[0], size);
|
||||||
} catch (vk::SystemError& e) {
|
} catch (vk::SystemError& e) {
|
||||||
std::cerr << "ggml_vulkan: Failed to allocate pinned memory." << std::endl;
|
GGML_LOG_WARN("ggml_vulkan: Failed to allocate pinned memory (%s)\n", e.what());
|
||||||
std::cerr << "ggml_vulkan: " << e.what() << std::endl;
|
|
||||||
// fallback to cpu buffer
|
// fallback to cpu buffer
|
||||||
return ggml_backend_buft_alloc_buffer(ggml_backend_cpu_buffer_type(), size);
|
return ggml_backend_buft_alloc_buffer(ggml_backend_cpu_buffer_type(), size);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user