mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-03 09:22:01 +00:00 
			
		
		
		
	* llama : scatter llama.cpp into multiple modules (wip) * llama : control-vector -> adapter * llama : arch * llama : mmap ggml-ci * ci : remove BUILD_SHARED_LIBS=OFF ggml-ci * llama : arch (cont) ggml-ci * llama : chat ggml-ci * llama : model ggml-ci * llama : hparams ggml-ci * llama : adapter ggml-ci * examples : fix ggml-ci * rebase ggml-ci * minor * llama : kv cache ggml-ci * llama : impl ggml-ci * llama : batch ggml-ci * cont ggml-ci * llama : context ggml-ci * minor * llama : context (cont) ggml-ci * llama : model loader ggml-ci * common : update lora ggml-ci * llama : quant ggml-ci * llama : quant (cont) ggml-ci * minor [no ci]
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "arg.h"
 | 
						|
#include "common.h"
 | 
						|
#include "ngram-cache.h"
 | 
						|
#include "llama.h"
 | 
						|
 | 
						|
#include <string>
 | 
						|
#include <vector>
 | 
						|
 | 
						|
int main(int argc, char ** argv){
 | 
						|
    common_params params;
 | 
						|
 | 
						|
    if (!common_params_parse(argc, argv, params, LLAMA_EXAMPLE_LOOKUP)) {
 | 
						|
        return 1;
 | 
						|
    }
 | 
						|
 | 
						|
    // init llama.cpp
 | 
						|
    llama_backend_init();
 | 
						|
    llama_numa_init(params.numa);
 | 
						|
 | 
						|
    // load the model
 | 
						|
    common_init_result llama_init = common_init_from_params(params);
 | 
						|
 | 
						|
    llama_model_ptr & model = llama_init.model;
 | 
						|
    llama_context_ptr & ctx = llama_init.context;
 | 
						|
 | 
						|
    GGML_ASSERT(model != nullptr);
 | 
						|
 | 
						|
    // tokenize the prompt
 | 
						|
    std::vector<llama_token> inp;
 | 
						|
    inp = common_tokenize(ctx.get(), params.prompt, true, true);
 | 
						|
    fprintf(stderr, "%s: tokenization done\n", __func__);
 | 
						|
 | 
						|
    common_ngram_cache ngram_cache;
 | 
						|
    common_ngram_cache_update(ngram_cache, LLAMA_NGRAM_STATIC, LLAMA_NGRAM_STATIC, inp, inp.size(), true);
 | 
						|
    fprintf(stderr, "%s: hashing done, writing file to %s\n", __func__, params.lookup_cache_static.c_str());
 | 
						|
 | 
						|
    common_ngram_cache_save(ngram_cache, params.lookup_cache_static);
 | 
						|
 | 
						|
    return 0;
 | 
						|
}
 |