mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2025-09-11 09:34:37 +00:00
benchmark limit increased to 16384
This commit is contained in:
parent
3f475970fa
commit
1f59f2178c
1 changed files with 1 additions and 1 deletions
|
@ -2786,7 +2786,7 @@ def main(launch_args,start_server=True):
|
|||
global libname
|
||||
start_server = False
|
||||
save_to_file = (args.benchmark!="stdout" and args.benchmark!="")
|
||||
benchmaxctx = (2048 if maxctx>2048 else maxctx)
|
||||
benchmaxctx = (16384 if maxctx>16384 else maxctx)
|
||||
benchlen = 100
|
||||
benchmodel = sanitize_string(os.path.splitext(os.path.basename(modelname))[0])
|
||||
if os.path.exists(args.benchmark) and os.path.getsize(args.benchmark) > 1000000:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue