mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-06-25 13:50:20 +00:00
75f460ac28
* arg: try fixing test-args-parser randomly fails * return ref * try triggering the workflow * exception wrapper * wip * test * test 2 * arg: guard win32 utf8 argv override make_utf8_argv rebuilds argv from GetCommandLineW to fix utf8 handling of non ascii arguments on windows. the override runs unconditionally inside common_params_parse, so it also clobbers a programmatic argv passed by a caller. test-arg-parser builds a synthetic argv but then sees the real process command line instead, the model argument is never parsed, and the assert that expects success aborts via fastfail (0xC0000409). this shows up as a random failure in the openvino windows workflow. only override argv when its length matches the caller argc, so the utf8 repair still applies to real binaries while a programmatic argv stays intact. --------- Co-authored-by: Pascal <admin@serveurperso.com>
223 lines
8.8 KiB
C++
223 lines
8.8 KiB
C++
#include "arg.h"
|
|
#include "common.h"
|
|
#include "download.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <sstream>
|
|
#include <unordered_set>
|
|
|
|
#undef NDEBUG
|
|
#include <cassert>
|
|
|
|
static void test(void) {
|
|
common_params params;
|
|
|
|
printf("test-arg-parser: make sure there is no duplicated arguments in any examples\n\n");
|
|
for (int ex = 0; ex < LLAMA_EXAMPLE_COUNT; ex++) {
|
|
try {
|
|
auto ctx_arg = common_params_parser_init(params, (enum llama_example)ex);
|
|
common_params_add_preset_options(ctx_arg.options);
|
|
std::unordered_set<std::string> seen_args;
|
|
std::unordered_set<std::string> seen_env_vars;
|
|
for (const auto & opt : ctx_arg.options) {
|
|
// check for args duplications
|
|
for (const auto & arg : opt.get_args()) {
|
|
if (seen_args.find(arg) == seen_args.end()) {
|
|
seen_args.insert(arg);
|
|
} else {
|
|
fprintf(stderr, "test-arg-parser: found different handlers for the same argument: %s", arg.c_str());
|
|
exit(1);
|
|
}
|
|
}
|
|
// check for env var duplications
|
|
for (const auto & env : opt.get_env()) {
|
|
if (seen_env_vars.find(env) == seen_env_vars.end()) {
|
|
seen_env_vars.insert(env);
|
|
} else {
|
|
fprintf(stderr, "test-arg-parser: found different handlers for the same env var: %s", env.c_str());
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
// exclude spec args from this check
|
|
// ref: https://github.com/ggml-org/llama.cpp/pull/22397
|
|
const bool skip = opt.is_spec;
|
|
|
|
// ensure shorter argument precedes longer argument
|
|
if (!skip && opt.args.size() > 1) {
|
|
const std::string first(opt.args.front());
|
|
const std::string last(opt.args.back());
|
|
|
|
if (first.length() > last.length()) {
|
|
fprintf(stderr, "test-arg-parser: shorter argument should come before longer one: %s, %s\n",
|
|
first.c_str(), last.c_str());
|
|
assert(false);
|
|
}
|
|
}
|
|
|
|
// same check for negated arguments
|
|
if (opt.args_neg.size() > 1) {
|
|
const std::string first(opt.args_neg.front());
|
|
const std::string last(opt.args_neg.back());
|
|
|
|
if (first.length() > last.length()) {
|
|
fprintf(stderr, "test-arg-parser: shorter negated argument should come before longer one: %s, %s\n",
|
|
first.c_str(), last.c_str());
|
|
assert(false);
|
|
}
|
|
}
|
|
}
|
|
} catch (std::exception & e) {
|
|
printf("%s\n", e.what());
|
|
assert(false);
|
|
}
|
|
}
|
|
|
|
auto list_str_to_char = [](std::vector<std::string> & argv) -> std::vector<char *> {
|
|
std::vector<char *> res;
|
|
for (auto & arg : argv) {
|
|
res.push_back(const_cast<char *>(arg.data()));
|
|
}
|
|
return res;
|
|
};
|
|
|
|
std::vector<std::string> argv;
|
|
|
|
printf("test-arg-parser: test invalid usage\n\n");
|
|
|
|
// missing value
|
|
argv = {"binary_name", "-m"};
|
|
assert(false == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_COMMON));
|
|
|
|
// wrong value (int)
|
|
argv = {"binary_name", "-ngl", "hello"};
|
|
assert(false == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_COMMON));
|
|
|
|
// wrong value (enum)
|
|
argv = {"binary_name", "-sm", "hello"};
|
|
assert(false == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_COMMON));
|
|
|
|
// non-existence arg in specific example (--draft cannot be used outside llama-speculative)
|
|
argv = {"binary_name", "--draft", "123"};
|
|
assert(false == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_EMBEDDING));
|
|
|
|
// negated arg
|
|
argv = {"binary_name", "--no-mmap"};
|
|
assert(false == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_COMMON));
|
|
|
|
|
|
printf("test-arg-parser: test valid usage\n\n");
|
|
|
|
argv = {"binary_name", "-m", "model_file.gguf"};
|
|
assert(true == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_COMMON));
|
|
assert(params.model.path == "model_file.gguf");
|
|
|
|
argv = {"binary_name", "-t", "1234"};
|
|
assert(true == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_COMMON));
|
|
assert(params.cpuparams.n_threads == 1234);
|
|
|
|
argv = {"binary_name", "--verbose"};
|
|
assert(true == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_COMMON));
|
|
assert(params.verbosity > 1);
|
|
|
|
argv = {"binary_name", "-m", "abc.gguf", "--predict", "6789", "--batch-size", "9090"};
|
|
assert(true == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_COMMON));
|
|
assert(params.model.path == "abc.gguf");
|
|
assert(params.n_predict == 6789);
|
|
assert(params.n_batch == 9090);
|
|
|
|
// --draft cannot be used outside llama-speculative
|
|
argv = {"binary_name", "--spec-draft-n-max", "123"};
|
|
assert(true == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_SPECULATIVE));
|
|
assert(params.speculative.draft.n_max == 123);
|
|
|
|
// multi-value args (CSV)
|
|
argv = {"binary_name", "--lora", "file1.gguf,\"file2,2.gguf\",\"file3\"\"3\"\".gguf\",file4\".gguf"};
|
|
assert(true == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_COMMON));
|
|
assert(params.lora_adapters.size() == 4);
|
|
assert(params.lora_adapters[0].path == "file1.gguf");
|
|
assert(params.lora_adapters[1].path == "file2,2.gguf");
|
|
assert(params.lora_adapters[2].path == "file3\"3\".gguf");
|
|
assert(params.lora_adapters[3].path == "file4\".gguf");
|
|
|
|
// skip this part on windows, because setenv is not supported
|
|
#ifdef _WIN32
|
|
printf("test-arg-parser: skip on windows build\n");
|
|
#else
|
|
printf("test-arg-parser: test environment variables (valid + invalid usages)\n\n");
|
|
|
|
setenv("LLAMA_ARG_THREADS", "blah", true);
|
|
argv = {"binary_name"};
|
|
assert(false == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_COMMON));
|
|
|
|
setenv("LLAMA_ARG_MODEL", "blah.gguf", true);
|
|
setenv("LLAMA_ARG_THREADS", "1010", true);
|
|
argv = {"binary_name"};
|
|
assert(true == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_COMMON));
|
|
assert(params.model.path == "blah.gguf");
|
|
assert(params.cpuparams.n_threads == 1010);
|
|
|
|
printf("test-arg-parser: test negated environment variables\n\n");
|
|
|
|
setenv("LLAMA_ARG_MMAP", "0", true);
|
|
setenv("LLAMA_ARG_NO_PERF", "1", true); // legacy format
|
|
argv = {"binary_name"};
|
|
assert(true == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_COMMON));
|
|
assert(params.use_mmap == false);
|
|
assert(params.no_perf == true);
|
|
|
|
printf("test-arg-parser: test environment variables being overwritten\n\n");
|
|
|
|
setenv("LLAMA_ARG_MODEL", "blah.gguf", true);
|
|
setenv("LLAMA_ARG_THREADS", "1010", true);
|
|
argv = {"binary_name", "-m", "overwritten.gguf"};
|
|
assert(true == common_params_parse(argv.size(), list_str_to_char(argv).data(), params, LLAMA_EXAMPLE_COMMON));
|
|
assert(params.model.path == "overwritten.gguf");
|
|
assert(params.cpuparams.n_threads == 1010);
|
|
#endif // _WIN32
|
|
|
|
printf("test-arg-parser: test download functions\n\n");
|
|
const char * GOOD_URL = "http://ggml.ai/";
|
|
const char * BAD_URL = "http://ggml.ai/404";
|
|
|
|
{
|
|
printf("test-arg-parser: test good URL\n\n");
|
|
auto res = common_remote_get_content(GOOD_URL, {});
|
|
assert(res.first == 200);
|
|
assert(res.second.size() > 0);
|
|
std::string str(res.second.data(), res.second.size());
|
|
assert(str.find("llama.cpp") != std::string::npos);
|
|
}
|
|
|
|
{
|
|
printf("test-arg-parser: test bad URL\n\n");
|
|
auto res = common_remote_get_content(BAD_URL, {});
|
|
assert(res.first == 404);
|
|
}
|
|
|
|
{
|
|
printf("test-arg-parser: test max size error\n");
|
|
common_remote_params params;
|
|
params.max_size = 1;
|
|
try {
|
|
common_remote_get_content(GOOD_URL, params);
|
|
assert(false && "it should throw an error");
|
|
} catch (std::exception & e) {
|
|
printf(" expected error: %s\n\n", e.what());
|
|
}
|
|
}
|
|
|
|
printf("test-arg-parser: all tests OK\n\n");
|
|
}
|
|
|
|
int main(void) {
|
|
try {
|
|
test();
|
|
} catch (std::exception & e) {
|
|
fprintf(stderr, "test-arg-parser: exception: %s\n", e.what());
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|