@@ -301,24 +301,26 @@ static void print_usage(const char * executable) {
301
301
printf (" Creates a GGUF control vector for a given model." );
302
302
printf (" \n " );
303
303
printf (" options:\n " );
304
- printf (" -h, --help show this help message and exit\n " );
305
- printf (" -o, --outfile output file\n " );
306
- printf (" default: %s\n " , defaults.outfile .c_str ());
307
- printf (" -pf, --positive-file positive prompts file, one prompt per line\n " );
308
- printf (" default: %s\n " , defaults.positive_prompts_file .c_str ());
309
- printf (" -nf, --negative-file negative prompts file, one prompt per line\n " );
310
- printf (" default: %s\n " , defaults.negative_prompts_file .c_str ());
311
- printf (" -cf, --completions-file completions file\n " );
312
- printf (" default: %s\n " , defaults.completions_file .c_str ());
313
- printf (" -nc, --num-completions N number of lines of completions file to use\n " );
314
- printf (" default: %d\n " , defaults.n_completions );
315
- printf (" --batch-pca N batch size used for PCA. Larger batch runs faster, but uses more memory\n " );
316
- printf (" default: %d\n " , defaults.n_pca_batch );
317
- printf (" --iter-pca N number of iterations used for PCA\n " );
318
- printf (" default: %d\n " , defaults.n_pca_iterations );
304
+ printf (" -h, --help show this help message and exit\n " );
305
+ printf (" -o, --outfile FNAME output file\n " );
306
+ printf (" default: %s\n " , defaults.outfile .c_str ());
307
+ printf (" -pf, --positive-file FNAME positive prompts file, one prompt per line\n " );
308
+ printf (" default: %s\n " , defaults.positive_prompts_file .c_str ());
309
+ printf (" -nf, --negative-file FNAME negative prompts file, one prompt per line\n " );
310
+ printf (" default: %s\n " , defaults.negative_prompts_file .c_str ());
311
+ printf (" -cf, --completions-file completions file\n " );
312
+ printf (" default: %s\n " , defaults.completions_file .c_str ());
313
+ printf (" -nc, --num-completions N number of lines of completions file to use\n " );
314
+ printf (" default: %d\n " , defaults.n_completions );
315
+ printf (" --batch-pca N batch size used for PCA. Larger batch runs faster, but uses more memory\n " );
316
+ printf (" default: %d\n " , defaults.n_pca_batch );
317
+ printf (" --iter-pca N number of iterations used for PCA\n " );
318
+ printf (" default: %d\n " , defaults.n_pca_iterations );
319
319
printf (" \n " );
320
320
printf (" gpt-opts:\n " );
321
- printf (" other options from main\n " );
321
+ printf (" -m, --model FNAME path to model file\n " );
322
+ printf (" -ngl, --gpu-layers N number of layers to offload to GPU\n " );
323
+ printf (" ...other options from main\n " );
322
324
printf (" \n " );
323
325
}
324
326
0 commit comments