You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In bigcodebench/provider/openai.py, all model processes prompts sequentially, the func _codegen_batch_via_concurrency process each prompt n time in parallel, but still sequentially process the whole prompts.
Looks wired, and significantly slow down the code gen speed.
In
bigcodebench/provider/openai.py, all model processes prompts sequentially, the func_codegen_batch_via_concurrencyprocess each prompt n time in parallel, but still sequentially process the whole prompts.Looks wired, and significantly slow down the code gen speed.