Merge c24778df01
into 902368a06b
This commit is contained in:
commit
249c5bdfe7
3 changed files with 3 additions and 2 deletions
|
@ -2104,7 +2104,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex
|
||||||
));
|
));
|
||||||
add_opt(common_arg(
|
add_opt(common_arg(
|
||||||
{"-lv", "--verbosity", "--log-verbosity"}, "N",
|
{"-lv", "--verbosity", "--log-verbosity"}, "N",
|
||||||
"Set the verbosity threshold. Messages with a higher verbosity will be ignored.",
|
"Set the verbosity threshold. Messages with a higher verbosity will be ignored. (-lv -1 for token only, no EOS nor EOG message)",
|
||||||
[](common_params & params, int value) {
|
[](common_params & params, int value) {
|
||||||
params.verbosity = value;
|
params.verbosity = value;
|
||||||
common_log_set_verbosity_thold(value);
|
common_log_set_verbosity_thold(value);
|
||||||
|
|
|
@ -86,6 +86,7 @@ void common_log_set_timestamps(struct common_log * log, bool timestamps)
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
#define LOGTOKEN(...) LOG_TMPL(GGML_LOG_LEVEL_NONE, -1, __VA_ARGS__)
|
||||||
#define LOG(...) LOG_TMPL(GGML_LOG_LEVEL_NONE, 0, __VA_ARGS__)
|
#define LOG(...) LOG_TMPL(GGML_LOG_LEVEL_NONE, 0, __VA_ARGS__)
|
||||||
#define LOGV(verbosity, ...) LOG_TMPL(GGML_LOG_LEVEL_NONE, verbosity, __VA_ARGS__)
|
#define LOGV(verbosity, ...) LOG_TMPL(GGML_LOG_LEVEL_NONE, verbosity, __VA_ARGS__)
|
||||||
|
|
||||||
|
|
|
@ -706,7 +706,7 @@ int main(int argc, char ** argv) {
|
||||||
const std::string token_str = common_token_to_piece(ctx, id, params.special);
|
const std::string token_str = common_token_to_piece(ctx, id, params.special);
|
||||||
|
|
||||||
// Console/Stream Output
|
// Console/Stream Output
|
||||||
LOG("%s", token_str.c_str());
|
LOGTOKEN("%s", token_str.c_str());
|
||||||
|
|
||||||
// Record Displayed Tokens To Log
|
// Record Displayed Tokens To Log
|
||||||
// Note: Generated tokens are created one by one hence this check
|
// Note: Generated tokens are created one by one hence this check
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue