Browse Source

llama: fix RPC for -fit on (#18233)

Johannes Gäßler 1 month ago
parent
commit
0e1ccf15c7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ggml/src/ggml-rpc/ggml-rpc.cpp

+ 1 - 1
ggml/src/ggml-rpc/ggml-rpc.cpp

@@ -583,7 +583,7 @@ static rpc_tensor serialize_tensor(const ggml_tensor * tensor) {
     if (tensor->buffer) {
         ggml_backend_buffer_t buffer = tensor->buffer;
         ggml_backend_rpc_buffer_context * ctx = (ggml_backend_rpc_buffer_context *)buffer->context;
-        result.buffer = ctx->remote_ptr;
+        result.buffer = ctx != nullptr ? ctx->remote_ptr : 0;
     } else {
         result.buffer = 0;
     }