MCPcopy Create free account
hub / github.com/antirez/llama.cpp-deepseek-v4-flash / print_usage

Function print_usage

tools/parser/template-analysis.cpp:86–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84}
85
86static void print_usage(const char * program_name) {
87 LOG_ERR("Usage: %s [options]\n", program_name);
88 LOG_ERR("\nOptions:\n");
89 LOG_ERR(" --template <name> Analyze specific template from test suite (e.g., 'deepseek' or 'DeepSeek-V3.1')\n");
90 LOG_ERR(" --template-file <path> Analyze custom template file\n");
91 LOG_ERR(" --all Analyze all templates from test suite\n");
92 LOG_ERR("\nExamples:\n");
93 LOG_ERR(" %s --all\n", program_name);
94 LOG_ERR(" %s --template deepseek\n", program_name);
95 LOG_ERR(" %s --template-file my-template.jinja\n", program_name);
96}
97
98static bool parse_options(int argc, char ** argv, analysis_options & opts) {
99 if (argc < 2) {

Callers 1

parse_optionsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected