[Fix] Align local-eval deps with ext-prod; default skip-reference#9
Open
yuanzhang-us wants to merge 1 commit into
Open
[Fix] Align local-eval deps with ext-prod; default skip-reference#9yuanzhang-us wants to merge 1 commit into
yuanzhang-us wants to merge 1 commit into
Conversation
Make local docker eval match the dependency stack used by the production sol_execbench_external image so externally-authored solutions compile and run identically. - pyproject.toml: pin torch==2.9.0 (was >=2.10.0); drop unused torchvision dep that blocked the torch downgrade. nvidia-cutlass-dsl stays at 4.4.1. - uv.lock: regenerated; torch 2.10->2.9, triton 3.6->3.5, nvidia-* libs aligned with torch 2.9. - docker/Dockerfile: add UV_HTTP_TIMEOUT=600 so cold builds don't fail on the large nvidia-cutlass-dsl-libs-cu13 wheel under the default 30s cap. - cli/main.py: rename PYTORCH_ALLOC_CONF -> PYTORCH_CUDA_ALLOC_CONF in the eval subprocess env. torch 2.9 only honors the _CUDA_ form, so the intended expandable_segments allocator never engaged before this fix. - core/bench/config/benchmark_config.py: flip benchmark_reference default from True to False. Reference implementations can take >1h for some problems and dominate evaluation time; users that need a speedup factor can re-enable via --config. - bench_config.example.json: ship a template containing every field at its default so users have a copy-and-edit starting point. - README.md: document the BenchmarkConfig fields and the new example template. Signed-off-by: Yuan Zhang <yuazhang@nvidia.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Make local docker eval match the dependency stack used by the production sol_execbench_external image so externally-authored solutions compile and run identically.