diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-03-11 17:49:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-11 17:49:47 +0200 |
commit | 05b06210c954491cf0f12034b0a62bd4d69ce78b (patch) | |
tree | 8cce0e429b8591dcbabd2d1e1ea6451a6a2f6894 /examples/main/main.cpp | |
parent | 83796e62bc9f6caae6228168e359890f51e60fee (diff) |
llama : more consistent names of count variables (#5994)
* llama : more consistent names of count variables
ggml-ci
* llama : n_parallel -> n_seq_max
* common : fix param name
* examples : fix param name
Diffstat (limited to 'examples/main/main.cpp')
-rw-r--r-- | examples/main/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/main/main.cpp b/examples/main/main.cpp index 47059e58..e2d07a63 100644 --- a/examples/main/main.cpp +++ b/examples/main/main.cpp @@ -878,6 +878,7 @@ int main(int argc, char ** argv) { const auto line_pfx = ::llama_tokenize(ctx, params.input_prefix, false, true); const auto line_inp = ::llama_tokenize(ctx, buffer, false, false); const auto line_sfx = ::llama_tokenize(ctx, params.input_suffix, false, true); + LOG("input tokens: %s\n", LOG_TOKENS_TOSTR_PRETTY(ctx, line_inp).c_str()); embd_inp.insert(embd_inp.end(), line_pfx.begin(), line_pfx.end()); |