From 97110251b98aa71240aca85a752f62962890b349 Mon Sep 17 00:00:00 2001 From: slaren Date: Wed, 26 Jul 2023 01:43:53 +0200 Subject: [PATCH] fix mpi --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index e649dce52..024af99a5 100644 --- a/llama.cpp +++ b/llama.cpp @@ -1717,7 +1717,7 @@ static bool llama_eval_internal( // fprintf(stderr, "graph build time: %.3f ms (%d nodes, %d leafs)\n", (ggml_time_us() - t_start_us)/1000.0, gf.n_nodes, gf.n_leafs); #if GGML_USE_MPI - ggml_mpi_graph_compute_pre(lctx.ctx_mpi, &gf, n_layer); + ggml_mpi_graph_compute_pre(lctx.ctx_mpi, gf, n_layer); #endif #ifdef GGML_USE_METAL