Update ggml-kompute.cpp

Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
This commit is contained in:
AT 2024-02-13 14:01:14 -05:00 committed by GitHub
parent 89b1915de3
commit a83f68797d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1819,9 +1819,9 @@ static void ggml_backend_kompute_buffer_set_tensor(ggml_backend_buffer_t buffer,
static void ggml_backend_kompute_buffer_get_tensor(ggml_backend_buffer_t buffer, const ggml_tensor * tensor, void * data, size_t offset, size_t size) {
GGML_UNUSED(buffer);
if (!size)
if (!size) {
return;
}
const auto res = ggml_vk_get_tensor(tensor);
GGML_ASSERT(res);