Merge branch 'mpi' of github.com:evanmiller/llama.cpp into mpi
This commit is contained in:
commit
b18e4ad4ac
1 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ int main(int argc, char **argv) {
|
||||||
llama_model * model;
|
llama_model * model;
|
||||||
llama_context * ctx;
|
llama_context * ctx;
|
||||||
|
|
||||||
llama_init_backend(false);
|
llama_backend_init(false);
|
||||||
|
|
||||||
// load the vocab
|
// load the vocab
|
||||||
{
|
{
|
||||||
|
@ -99,7 +99,7 @@ int main(int argc, char **argv) {
|
||||||
llama_free_model(model);
|
llama_free_model(model);
|
||||||
llama_free(ctx);
|
llama_free(ctx);
|
||||||
|
|
||||||
llama_finalize_backend();
|
llama_backend_free();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue