Skip to content

Commit 4dcfc92

Browse files
committed
reduce ctxt OOM
1 parent 5beca55 commit 4dcfc92

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

benchmarks/benchmark_lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ compute_eval_context_length() {
614614
if [ "$benchmark_ctx" -eq 0 ] 2>/dev/null; then
615615
benchmark_ctx="${native_max:-0}"
616616
fi
617-
local eval_ctx=$(( benchmark_ctx * 2 ))
617+
local eval_ctx=$(( benchmark_ctx * 1 ))
618618
if [ "$native_max" -gt 0 ] 2>/dev/null && [ "$eval_ctx" -gt "$native_max" ]; then
619619
eval_ctx="$native_max"
620620
fi

0 commit comments

Comments
 (0)