aboutsummaryrefslogtreecommitdiff
path: root/ggml-metal.m
diff options
context:
space:
mode:
authorKawrakow <48489457+ikawrakow@users.noreply.github.com>2023-06-12 14:31:36 +0300
committerGitHub <noreply@github.com>2023-06-12 14:31:36 +0300
commit8c0a10e64dbf60fd9946c0cd5e6f59690800b123 (patch)
treefb69c71663c6c987160caf1f17f2bf9c254fe01e /ggml-metal.m
parentfa84c4b3e80199a5683438f062009c031a06c4fa (diff)
metal : fix failure to load model (#1817)
The number of buffers in the ggml context was left unitialized. This leads to sporadic failures to load the model on startup. It is actually strange that the failure occurred so infrequantly. Co-authored-by: Iwan Kawrakow <iwan.kawrakow@gmail.com>
Diffstat (limited to 'ggml-metal.m')
-rw-r--r--ggml-metal.m1
1 files changed, 1 insertions, 0 deletions
diff --git a/ggml-metal.m b/ggml-metal.m
index 16a362f..b73f51f 100644
--- a/ggml-metal.m
+++ b/ggml-metal.m
@@ -86,6 +86,7 @@ struct ggml_metal_context * ggml_metal_init(void) {
ctx->device = MTLCreateSystemDefaultDevice();
ctx->queue = [ctx->device newCommandQueue];
+ ctx->n_buffers = 0;
// determine if we can use MPS
if (MPSSupportsMTLDevice(ctx->device)) {