mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-31 08:51:55 +00:00 
			
		
		
		
	parallel : fix crash when -n -1
				
					
				
			This commit is contained in:
		| @@ -114,7 +114,7 @@ int main(int argc, char ** argv) { | |||||||
|     for (size_t i = 0; i < clients.size(); ++i) { |     for (size_t i = 0; i < clients.size(); ++i) { | ||||||
|         auto & client = clients[i]; |         auto & client = clients[i]; | ||||||
|         client.id = i; |         client.id = i; | ||||||
|         client.tokens_prev.resize(params.n_predict); |         client.tokens_prev.resize(std::max(256, params.n_predict)); | ||||||
|         std::fill(client.tokens_prev.begin(), client.tokens_prev.end(), 0); |         std::fill(client.tokens_prev.begin(), client.tokens_prev.end(), 0); | ||||||
|     } |     } | ||||||
|  |  | ||||||
| @@ -321,7 +321,8 @@ int main(int argc, char ** argv) { | |||||||
|                 //        client.id, client.seq_id, id, client.n_decoded, client.i_batch, token_str.c_str()); |                 //        client.id, client.seq_id, id, client.n_decoded, client.i_batch, token_str.c_str()); | ||||||
|  |  | ||||||
|                 if (client.n_decoded > 2 && |                 if (client.n_decoded > 2 && | ||||||
|                         (id == llama_token_eos(ctx) || client.n_decoded + client.n_prompt >= params.n_predict || |                         (id == llama_token_eos(ctx) || | ||||||
|  |                          (params.n_predict > 0 && client.n_decoded + client.n_prompt >= params.n_predict) || | ||||||
|                          client.response.find("User:") != std::string::npos || |                          client.response.find("User:") != std::string::npos || | ||||||
|                          client.response.find('\n') != std::string::npos)) { |                          client.response.find('\n') != std::string::npos)) { | ||||||
|                     // basic reverse prompt |                     // basic reverse prompt | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Georgi Gerganov
					Georgi Gerganov