MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / main

Function main

subprojects/llama.cpp/tests/test-model-load-cancel.cpp:6–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4#include <cstdlib>
5
6int main(int argc, char *argv[] ) {
7 auto * model_path = get_model_or_exit(argc, argv);
8 auto * file = fopen(model_path, "r");
9 if (file == nullptr) {
10 fprintf(stderr, "no model at '%s' found\n", model_path);
11 return EXIT_FAILURE;
12 }
13
14 fprintf(stderr, "using '%s'\n", model_path);
15 fclose(file);
16
17 llama_backend_init();
18 auto params = llama_model_params{};
19 params.use_mmap = false;
20 params.progress_callback = [](float progress, void * ctx){
21 (void) ctx;
22 return progress > 0.50;
23 };
24 auto * model = llama_model_load_from_file(model_path, params);
25 llama_backend_free();
26 return model == nullptr ? EXIT_SUCCESS : EXIT_FAILURE;
27}

Callers

nothing calls this directly

Calls 4

get_model_or_exitFunction · 0.85
llama_backend_initFunction · 0.85
llama_backend_freeFunction · 0.85

Tested by

no test coverage detected