mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-31 08:51:55 +00:00 
			
		
		
		
	common : refactor cli arg parsing (#7675)
* common : gpt_params_parse do not print usage * common : rework usage print (wip) * common : valign * common : rework print_usage * infill : remove cfg support * common : reorder args * server : deduplicate parameters ggml-ci * common : add missing header ggml-ci * common : remote --random-prompt usages ggml-ci * examples : migrate to gpt_params ggml-ci * batched-bench : migrate to gpt_params * retrieval : migrate to gpt_params * common : change defaults for escape and n_ctx * common : remove chatml and instruct params ggml-ci * common : passkey use gpt_params
This commit is contained in:
		| @@ -533,7 +533,6 @@ static bool compute_imatrix(llama_context * ctx, const gpt_params & params, bool | ||||
| } | ||||
|  | ||||
| int main(int argc, char ** argv) { | ||||
|  | ||||
|     StatParams sparams; | ||||
|     std::string prev_result_file; | ||||
|     std::string combine_files; | ||||
| @@ -581,7 +580,9 @@ int main(int argc, char ** argv) { | ||||
|  | ||||
|     gpt_params params; | ||||
|     params.n_batch = 512; | ||||
|     if (!gpt_params_parse(args.size(), args.data(), params)) { | ||||
|  | ||||
|     if (!gpt_params_parse(argc, argv, params)) { | ||||
|         gpt_params_print_usage(argc, argv, params); | ||||
|         return 1; | ||||
|     } | ||||
|  | ||||
| @@ -597,9 +598,6 @@ int main(int argc, char ** argv) { | ||||
|     fprintf(stderr, "%s: seed  = %u\n", __func__, params.seed); | ||||
|  | ||||
|     std::mt19937 rng(params.seed); | ||||
|     if (params.random_prompt) { | ||||
|         params.prompt = string_random_prompt(rng); | ||||
|     } | ||||
|  | ||||
|     sparams.dataset = params.prompt_file; | ||||
|     g_collector.set_parameters(std::move(sparams)); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Georgi Gerganov
					Georgi Gerganov