mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-09-10 14:59:11 +02:00
fixed koboldcpp.sh, fixed vision max/min when one param is missing, fixed processing count wrong, updated lite
This commit is contained in:
+5
-2
@@ -4556,10 +4556,13 @@ generation_outputs gpttype_generate(const generation_inputs inputs)
|
||||
// predict
|
||||
unsigned int embdsize = embd.size();
|
||||
//print progress
|
||||
if (!startedsampling && allow_regular_prints)
|
||||
if (!startedsampling)
|
||||
{
|
||||
real_n_processed = embd_inp.size();
|
||||
printf("\rProcessing Prompt%s (%d / %zu tokens)", (blasmode ? " [BATCH]" : ""), input_consumed, embd_inp.size());
|
||||
if(allow_regular_prints)
|
||||
{
|
||||
printf("\rProcessing Prompt%s (%d / %zu tokens)", (blasmode ? " [BATCH]" : ""), input_consumed, embd_inp.size());
|
||||
}
|
||||
}
|
||||
fflush(stdout);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user