fix mpi build

This commit is contained in:
slaren 2023-09-22 00:58:45 +02:00
parent 7f95379295
commit d41b53ca7b

View file

@ -3680,6 +3680,7 @@ static bool llama_eval_internal(
GGML_ASSERT((!tokens && embd) || (tokens && !embd)); // NOLINT
const auto & cparams = lctx.cparams;
const int n_ctx = cparams.n_ctx;
const int n_batch = cparams.n_batch;
@ -6456,7 +6457,7 @@ struct llama_context * llama_new_context_with_model(
if (ggml_mpi_rank(ctx->ctx_mpi) > 0) {
// Enter a blocking eval loop with dummy input, letting rank=0 drive the process
const std::vector<llama_token> tmp(cparams.n_ctx, llama_token_bos(ctx));
while (!llama_eval(ctx, tmp.data(), tmp.size(), 0, 0)) {};
while (!llama_eval(ctx, tmp.data(), tmp.size(), 0)) {};
llama_backend_free();
exit(1);
}