File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -11,12 +11,16 @@ int main(int argc, char ** argv) {
1111 gpt_params params;
1212
1313 if (argc == 1 || argv[1 ][0 ] == ' -' ) {
14- printf (" usage: %s MODEL_PATH [PROMPT] [PARALLEL]\n " , argv[0 ]);
14+ printf (" usage: %s MODEL_PATH [PROMPT] [PARALLEL] [LEN] \n " , argv[0 ]);
1515 return 1 ;
1616 }
1717
18+ // number of parallel batches
1819 int n_parallel = 1 ;
1920
21+ // total length of the sequences including the prompt
22+ int n_len = 32 ;
23+
2024 if (argc >= 2 ) {
2125 params.model = argv[1 ];
2226 }
@@ -29,13 +33,14 @@ int main(int argc, char ** argv) {
2933 n_parallel = std::atoi (argv[3 ]);
3034 }
3135
36+ if (argc >= 5 ) {
37+ n_len = std::atoi (argv[4 ]);
38+ }
39+
3240 if (params.prompt .empty ()) {
3341 params.prompt = " Hello my name is" ;
3442 }
3543
36- // total length of the sequences including the prompt
37- const int n_len = 32 ;
38-
3944 // init LLM
4045
4146 llama_backend_init (params.numa );
You can’t perform that action at this time.
0 commit comments