2023-03-10 18:40:58 +00:00
|
|
|
// Various helper functions and utilities
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-03-22 05:32:36 +00:00
|
|
|
#include "llama.h"
|
|
|
|
|
main : log file (#2748)
* initial, base LOG macro
* add *.log to .gitignore
* added basic log file handler
* reverted log auto endline to better mimic printf
* remove atomics and add dynamic log target
* log_enable/disable, LOG_TEE, basic usage doc
* update .gitignore
* mv include to common, params, help msg
* log tostring helpers, token vectors pretty prints
* main: replaced fprintf/LOG_TEE, some trace logging
* LOG_DISABLE_LOGS compile flag, wrapped f in macros
* fix LOG_TEELN and configchecker
* stub LOG_DUMP_CMDLINE for WIN32 for now
* fix msvc
* cleanup main.cpp:273
* fix stray whitespace after master sync
* log : fix compile warnings
- do not use C++20 stuff
- use PRIu64 to print uint64_t
- avoid string copies by using const ref
- fix ", ##__VA_ARGS__" warnings
- compare strings with == and !=
* log : do not append to existing log + disable file line func by default
* log : try to fix Windows build
* main : wip logs
* main : add trace log
* review: macro f lowercase, str append to sstream
* review: simplify ifs and str comparisons
* fix MSVC, formatting, FMT/VAL placeholders
* review: if/else cleanup
* review: if/else cleanup (2)
* replace _ prefix with _impl suffix
---------
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
2023-08-30 06:29:32 +00:00
|
|
|
#define LOG_NO_FILE_LINE_FUNCTION
|
|
|
|
#include "log.h"
|
|
|
|
|
2023-03-10 18:40:58 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <random>
|
|
|
|
#include <thread>
|
llama : new sampling algorithms (#1126)
* Sample interface, new samplers.
New samplers:
- locally typical sampling
- tail free sampling
- frequency and presence penalty
- mirostat
Ignore EOS fix: -inf should be used.
* mirostat
* Added --logit-bias and --no-penalize-nl, removed std::span
* Use C++11, clarify llama API documentation, rename Mirostat parameters to --mirostat_lr and --mirostat_ent, add temperature sampling for Mirostat, simplify Mirostat sampling API parameters (removed N and *k)
Use C++11, clarify llama API documentation, rename Mirostat parameters to --mirostat_lr and --mirostat_ent, add temperature sampling for Mirostat, simplify Mirostat sampling API parameters (removed N and *k)
* Save and load example adjust
* Tests
* Windows build fix
* Windows test fix
2023-04-29 05:34:41 +00:00
|
|
|
#include <unordered_map>
|
2023-06-24 08:47:58 +00:00
|
|
|
#include <tuple>
|
2023-03-10 18:40:58 +00:00
|
|
|
|
2023-08-28 15:59:39 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define DIRECTORY_SEPARATOR '\\'
|
|
|
|
#else
|
|
|
|
#define DIRECTORY_SEPARATOR '/'
|
|
|
|
#endif // _WIN32
|
|
|
|
|
2023-09-15 18:02:01 +00:00
|
|
|
#define die(msg) do { fputs("error: " msg "\n", stderr); exit(1); } while (0)
|
|
|
|
#define die_fmt(fmt, ...) do { fprintf(stderr, "error: " fmt "\n", __VA_ARGS__); exit(1); } while (0)
|
2023-09-07 17:22:29 +00:00
|
|
|
|
2023-09-15 20:59:49 +00:00
|
|
|
#define print_build_info() do { \
|
|
|
|
fprintf(stderr, "%s: build = %d (%s)\n", __func__, BUILD_NUMBER, BUILD_COMMIT); \
|
|
|
|
fprintf(stderr, "%s: built with %s for %s\n", __func__, BUILD_COMPILER, BUILD_TARGET); \
|
|
|
|
} while(0)
|
|
|
|
|
2023-03-10 18:40:58 +00:00
|
|
|
//
|
|
|
|
// CLI argument parsing
|
|
|
|
//
|
2023-04-30 18:41:35 +00:00
|
|
|
int32_t get_num_physical_cores();
|
2023-03-10 18:40:58 +00:00
|
|
|
|
|
|
|
struct gpt_params {
|
2023-07-24 15:57:12 +00:00
|
|
|
uint32_t seed = -1; // RNG seed
|
2023-06-14 17:47:19 +00:00
|
|
|
int32_t n_threads = get_num_physical_cores();
|
2023-07-24 15:57:12 +00:00
|
|
|
int32_t n_predict = -1; // new tokens to predict
|
|
|
|
int32_t n_ctx = 512; // context size
|
|
|
|
int32_t n_batch = 512; // batch size for prompt processing (must be >=32 to use BLAS)
|
|
|
|
int32_t n_keep = 0; // number of tokens to keep from initial prompt
|
2023-09-03 12:12:08 +00:00
|
|
|
int32_t n_draft = 16; // number of tokens to draft during speculative decoding
|
2023-07-24 15:57:12 +00:00
|
|
|
int32_t n_chunks = -1; // max number of chunks to process (-1 = unlimited)
|
2023-09-28 16:04:36 +00:00
|
|
|
int32_t n_parallel = 1; // number of parallel sequences to decode
|
|
|
|
int32_t n_sequences = 1; // number of sequences to decode
|
2023-09-04 19:26:24 +00:00
|
|
|
int32_t n_gpu_layers = -1; // number of layers to store in VRAM (-1 - use default)
|
2023-09-13 06:50:46 +00:00
|
|
|
int32_t n_gpu_layers_draft = -1; // number of layers to store in VRAM for the draft model (-1 - use default)
|
2023-07-24 15:57:12 +00:00
|
|
|
int32_t main_gpu = 0; // the GPU that is used for scratch and small tensors
|
|
|
|
float tensor_split[LLAMA_MAX_DEVICES] = {0}; // how split tensors should be distributed across GPUs
|
|
|
|
int32_t n_probs = 0; // if greater than 0, output the probabilities of top n_probs tokens.
|
2023-08-25 15:18:48 +00:00
|
|
|
int32_t n_beams = 0; // if non-zero then use beam search of given width.
|
2023-09-23 09:28:50 +00:00
|
|
|
float rope_freq_base = 0.0f; // RoPE base frequency
|
|
|
|
float rope_freq_scale = 0.0f; // RoPE frequency scaling factor
|
2023-03-17 19:46:46 +00:00
|
|
|
|
2023-03-10 18:40:58 +00:00
|
|
|
// sampling parameters
|
2023-04-29 06:51:06 +00:00
|
|
|
int32_t top_k = 40; // <= 0 to use vocab size
|
|
|
|
float top_p = 0.95f; // 1.0 = disabled
|
|
|
|
float tfs_z = 1.00f; // 1.0 = disabled
|
|
|
|
float typical_p = 1.00f; // 1.0 = disabled
|
|
|
|
float temp = 0.80f; // 1.0 = disabled
|
|
|
|
float repeat_penalty = 1.10f; // 1.0 = disabled
|
|
|
|
int32_t repeat_last_n = 64; // last n tokens to penalize (0 = disable penalty, -1 = context size)
|
|
|
|
float frequency_penalty = 0.00f; // 0.0 = disabled
|
|
|
|
float presence_penalty = 0.00f; // 0.0 = disabled
|
2023-07-23 12:09:47 +00:00
|
|
|
int32_t mirostat = 0; // 0 = disabled, 1 = mirostat, 2 = mirostat 2.0
|
2023-04-29 06:51:06 +00:00
|
|
|
float mirostat_tau = 5.00f; // target entropy
|
|
|
|
float mirostat_eta = 0.10f; // learning rate
|
2023-03-10 18:40:58 +00:00
|
|
|
|
2023-08-21 20:07:43 +00:00
|
|
|
std::unordered_map<llama_token, float> logit_bias; // logit bias for specific tokens
|
|
|
|
|
2023-07-11 16:18:43 +00:00
|
|
|
// Classifier-Free Guidance
|
|
|
|
// https://arxiv.org/abs/2306.17806
|
|
|
|
std::string cfg_negative_prompt; // string to help guidance
|
|
|
|
float cfg_scale = 1.f; // How strong is guidance
|
|
|
|
|
2023-08-21 20:07:43 +00:00
|
|
|
std::string model = "models/7B/ggml-model-f16.gguf"; // model path
|
2023-09-03 12:12:08 +00:00
|
|
|
std::string model_draft = ""; // draft model for speculative decoding
|
2023-05-28 17:14:24 +00:00
|
|
|
std::string model_alias = "unknown"; // model alias
|
2023-05-19 17:14:51 +00:00
|
|
|
std::string prompt = "";
|
2023-05-10 15:37:14 +00:00
|
|
|
std::string path_prompt_cache = ""; // path to file for saving/loading prompt eval state
|
|
|
|
std::string input_prefix = ""; // string to prefix user inputs with
|
|
|
|
std::string input_suffix = ""; // string to suffix user inputs with
|
2023-07-24 03:58:10 +00:00
|
|
|
std::string grammar = ""; // optional BNF-like grammar to constrain sampling
|
2023-03-21 15:32:14 +00:00
|
|
|
std::vector<std::string> antiprompt; // string upon seeing which more user input is prompted
|
2023-08-28 15:59:39 +00:00
|
|
|
std::string logdir = ""; // directory in which to save YAML log files
|
2023-03-12 21:13:28 +00:00
|
|
|
|
2023-04-17 15:28:55 +00:00
|
|
|
std::string lora_adapter = ""; // lora adapter path
|
2023-05-19 17:14:51 +00:00
|
|
|
std::string lora_base = ""; // base model path for the lora adapter
|
2023-04-17 15:28:55 +00:00
|
|
|
|
2023-08-23 09:56:42 +00:00
|
|
|
int ppl_stride = 0; // stride for perplexity calculations. If left at 0, the pre-existing approach will be used.
|
|
|
|
int ppl_output_type = 0; // = 0 -> ppl output is as usual, = 1 -> ppl output is num_tokens, ppl, one per line
|
|
|
|
// (which is more convenient to use for plotting)
|
|
|
|
//
|
2023-07-28 18:25:36 +00:00
|
|
|
bool hellaswag = false; // compute HellaSwag score over random tasks from datafile supplied in prompt
|
|
|
|
size_t hellaswag_tasks = 400; // number of tasks to use when computing the HellaSwag score
|
|
|
|
|
|
|
|
bool low_vram = false; // if true, reduce VRAM usage at the cost of performance
|
2023-08-22 20:47:05 +00:00
|
|
|
bool mul_mat_q = true; // if true, use mul_mat_q kernels instead of cuBLAS
|
2023-03-24 21:17:37 +00:00
|
|
|
bool memory_f16 = true; // use f16 instead of f32 for memory kv
|
2023-03-21 15:32:14 +00:00
|
|
|
bool random_prompt = false; // do not randomize prompt if none provided
|
|
|
|
bool use_color = false; // use color to distinguish generations and inputs
|
|
|
|
bool interactive = false; // interactive mode
|
2023-05-10 15:37:14 +00:00
|
|
|
bool prompt_cache_all = false; // save user input and generations to prompt cache
|
2023-06-07 02:10:17 +00:00
|
|
|
bool prompt_cache_ro = false; // open the prompt cache read-only and do not update it
|
2023-03-24 15:05:13 +00:00
|
|
|
|
|
|
|
bool embedding = false; // get only sentence embedding
|
2023-08-28 15:59:39 +00:00
|
|
|
bool escape = false; // escape "\n", "\r", "\t", "\'", "\"", and "\\"
|
2023-04-24 15:45:32 +00:00
|
|
|
bool interactive_first = false; // wait for user input immediately
|
2023-05-09 02:45:48 +00:00
|
|
|
bool multiline_input = false; // reverse the usage of `\`
|
2023-08-04 15:20:12 +00:00
|
|
|
bool simple_io = false; // improves compatibility with subprocesses and limited consoles
|
2023-09-28 16:04:36 +00:00
|
|
|
bool cont_batching = false; // insert new sequences for decoding on-the-fly
|
2023-03-24 15:05:13 +00:00
|
|
|
|
2023-07-25 12:19:11 +00:00
|
|
|
bool input_prefix_bos = false; // prefix BOS to user inputs, preceding input_prefix
|
2023-08-21 20:07:43 +00:00
|
|
|
bool ignore_eos = false; // ignore generated EOS tokens
|
2023-03-21 15:32:14 +00:00
|
|
|
bool instruct = false; // instruction mode (used for Alpaca models)
|
llama : new sampling algorithms (#1126)
* Sample interface, new samplers.
New samplers:
- locally typical sampling
- tail free sampling
- frequency and presence penalty
- mirostat
Ignore EOS fix: -inf should be used.
* mirostat
* Added --logit-bias and --no-penalize-nl, removed std::span
* Use C++11, clarify llama API documentation, rename Mirostat parameters to --mirostat_lr and --mirostat_ent, add temperature sampling for Mirostat, simplify Mirostat sampling API parameters (removed N and *k)
Use C++11, clarify llama API documentation, rename Mirostat parameters to --mirostat_lr and --mirostat_ent, add temperature sampling for Mirostat, simplify Mirostat sampling API parameters (removed N and *k)
* Save and load example adjust
* Tests
* Windows build fix
* Windows test fix
2023-04-29 05:34:41 +00:00
|
|
|
bool penalize_nl = true; // consider newlines as a repeatable token
|
2023-09-28 16:04:36 +00:00
|
|
|
bool logits_all = false; // return logits for all tokens in the batch
|
Rewrite loading code to try to satisfy everyone:
- Support all three formats (ggml, ggmf, ggjt). (However, I didn't
include the hack needed to support GPT4All files without conversion.
Those can still be used after converting them with convert.py from my
other PR.)
- Support both mmap and read (mmap is used by default, but can be
disabled with `--no-mmap`, and is automatically disabled for pre-ggjt
files or on platforms where mmap is not supported).
- Support multi-file models like before, but automatically determine the
number of parts rather than requiring `--n_parts`.
- Improve validation and error checking.
- Stop using the per-file type field (f16) entirely in favor of just
relying on the per-tensor type/size fields. This has no immediate
benefit, but makes it easier to experiment with different formats, and
should make it easier to support the new GPTQ-for-LLaMa models in the
future (I have some work in progress on that front).
- Support VirtualLock on Windows (using the same `--mlock` option as on
Unix).
- Indicate loading progress when using mmap + mlock. (Which led me
to the interesting observation that on my Linux machine, with a
warm file cache, mlock actually takes some time, whereas mmap
without mlock starts almost instantly...)
- To help implement this, move mlock support from ggml to the
loading code.
- madvise/PrefetchVirtualMemory support (based on #740)
- Switch from ifstream to the `fopen` family of functions to avoid
unnecessary copying and, when mmap is enabled, allow reusing the same
file descriptor for both metadata reads and mmap (whereas the existing
implementation opens the file a second time to mmap).
- Quantization now produces a single-file output even with multi-file
inputs (not really a feature as much as 'it was easier this way').
Implementation notes:
I tried to factor the code into more discrete pieces than before.
Regarding code style: I tried to follow the code style, but I'm naughty
and used a few advanced C++ features repeatedly:
- Destructors to make it easier to ensure everything gets cleaned up.
- Exceptions. I don't even usually use exceptions when writing C++, and
I can remove them if desired... but here they make the loading code
much more succinct while still properly handling a variety of errors,
ranging from API calls failing to integer overflow and allocation
failure. The exceptions are converted to error codes at the
API boundary.)
Co-authored-by: Pavol Rusnak <pavol@rusnak.io> (for the bit I copied from #740)
2023-04-08 19:24:37 +00:00
|
|
|
bool use_mmap = true; // use mmap for faster loads
|
2023-03-24 15:19:05 +00:00
|
|
|
bool use_mlock = false; // use mlock to keep model in memory
|
2023-06-26 17:57:59 +00:00
|
|
|
bool numa = false; // attempt optimizations that help on some NUMA systems
|
2023-03-25 15:16:50 +00:00
|
|
|
bool verbose_prompt = false; // print prompt tokens before generation
|
2023-03-10 18:40:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bool gpt_params_parse(int argc, char ** argv, gpt_params & params);
|
|
|
|
|
2023-04-14 19:58:43 +00:00
|
|
|
void gpt_print_usage(int argc, char ** argv, const gpt_params & params);
|
2023-03-10 18:40:58 +00:00
|
|
|
|
|
|
|
std::string gpt_random_prompt(std::mt19937 & rng);
|
|
|
|
|
|
|
|
//
|
2023-08-21 20:07:43 +00:00
|
|
|
// Model utils
|
2023-03-10 18:40:58 +00:00
|
|
|
//
|
|
|
|
|
2023-08-21 20:07:43 +00:00
|
|
|
std::tuple<struct llama_model *, struct llama_context *> llama_init_from_gpt_params(gpt_params & params);
|
|
|
|
struct llama_context_params llama_context_params_from_gpt_params(const gpt_params & params);
|
2023-03-28 14:09:55 +00:00
|
|
|
|
2023-05-02 20:39:51 +00:00
|
|
|
//
|
2023-08-21 20:07:43 +00:00
|
|
|
// Vocab utils
|
2023-05-02 20:39:51 +00:00
|
|
|
//
|
|
|
|
|
2023-08-27 11:19:19 +00:00
|
|
|
// tokenizes a string into a vector of tokens
|
|
|
|
// should work similar to Python's `tokenizer.encode`
|
2023-08-21 20:07:43 +00:00
|
|
|
std::vector<llama_token> llama_tokenize(
|
|
|
|
struct llama_context * ctx,
|
|
|
|
const std::string & text,
|
|
|
|
bool add_bos);
|
|
|
|
|
2023-08-27 11:19:19 +00:00
|
|
|
// tokenizes a token into a piece
|
|
|
|
// should work similar to Python's `tokenizer.id_to_piece`
|
|
|
|
std::string llama_token_to_piece(
|
2023-08-21 20:07:43 +00:00
|
|
|
const struct llama_context * ctx,
|
|
|
|
llama_token token);
|
2023-08-27 11:19:19 +00:00
|
|
|
|
|
|
|
// TODO: these should be moved in llama.h C-style API under single `llama_detokenize` function
|
|
|
|
// that takes into account the tokenizer type and decides how to handle the leading space
|
|
|
|
//
|
|
|
|
// detokenizes a vector of tokens into a string
|
|
|
|
// should work similar to Python's `tokenizer.decode`
|
|
|
|
// removes the leading space from the first non-BOS token
|
|
|
|
std::string llama_detokenize_spm(
|
|
|
|
llama_context * ctx,
|
|
|
|
const std::vector<llama_token> & tokens);
|
|
|
|
|
|
|
|
// detokenizes a vector of tokens into a string
|
|
|
|
// should work similar to Python's `tokenizer.decode`
|
|
|
|
std::string llama_detokenize_bpe(
|
|
|
|
llama_context * ctx,
|
|
|
|
const std::vector<llama_token> & tokens);
|
2023-08-28 15:59:39 +00:00
|
|
|
|
2023-09-03 12:12:08 +00:00
|
|
|
//
|
|
|
|
// Sampling utils
|
|
|
|
//
|
|
|
|
|
|
|
|
// this is a common sampling function used across the examples for convenience
|
|
|
|
// it can serve as a starting point for implementing your own sampling function
|
|
|
|
//
|
|
|
|
// required:
|
|
|
|
// - ctx: context to use for sampling
|
|
|
|
// - params: sampling parameters
|
|
|
|
//
|
|
|
|
// optional:
|
|
|
|
// - ctx_guidance: context to use for classifier-free guidance, ignore if NULL
|
|
|
|
// - grammar: grammar to use for sampling, ignore if NULL
|
|
|
|
// - last_tokens: needed for repetition penalty, ignore if empty
|
2023-09-28 16:04:36 +00:00
|
|
|
// - idx: sample from llama_get_logits_ith(ctx, idx)
|
2023-09-03 12:12:08 +00:00
|
|
|
//
|
|
|
|
// returns:
|
|
|
|
// - token: sampled token
|
|
|
|
// - candidates: vector of candidate tokens
|
|
|
|
//
|
|
|
|
llama_token llama_sample_token(
|
|
|
|
struct llama_context * ctx,
|
|
|
|
struct llama_context * ctx_guidance,
|
|
|
|
struct llama_grammar * grammar,
|
|
|
|
const struct gpt_params & params,
|
|
|
|
const std::vector<llama_token> & last_tokens,
|
|
|
|
std::vector<llama_token_data> & candidates,
|
|
|
|
int idx = 0);
|
|
|
|
|
|
|
|
//
|
|
|
|
// YAML utils
|
|
|
|
//
|
|
|
|
|
2023-08-28 15:59:39 +00:00
|
|
|
bool create_directory_with_parents(const std::string & path);
|
|
|
|
void dump_vector_float_yaml(FILE * stream, const char * prop_name, const std::vector<float> & data);
|
|
|
|
void dump_vector_int_yaml(FILE * stream, const char * prop_name, const std::vector<int> & data);
|
|
|
|
void dump_string_yaml_multiline(FILE * stream, const char * prop_name, const char * data);
|
|
|
|
std::string get_sortable_timestamp();
|
|
|
|
|
|
|
|
void dump_non_result_info_yaml(
|
|
|
|
FILE * stream, const gpt_params & params, const llama_context * lctx,
|
|
|
|
const std::string & timestamp, const std::vector<int> & prompt_tokens, const char * model_desc);
|