Add LLaDA-7b-MoE diffusion model (#16003)

This commit is contained in:
Aman Gupta
2025-09-16 10:38:28 +08:00
committed by GitHub
parent 3d4053f77f
commit 6d758839ff
9 changed files with 315 additions and 9 deletions

View File

@@ -1704,7 +1704,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex
[](common_params & params, const std::string & value) {
params.system_prompt = value;
}
).set_examples({LLAMA_EXAMPLE_MAIN}));
).set_examples({LLAMA_EXAMPLE_MAIN, LLAMA_EXAMPLE_DIFFUSION}));
add_opt(common_arg(
{"--no-perf"},
string_format("disable internal libllama performance timings (default: %s)", params.no_perf ? "true" : "false"),