Draft
Conversation
misiugodfrey
commented
Mar 13, 2026
| # We want to propagate any changes from the original worker config to the new worker configs even if | ||
| # we did not re-generate the configs. | ||
| if [[ -n "$NUM_WORKERS" && "$VARIANT_TYPE" == "gpu" ]]; then | ||
| if [[ -n "$NUM_WORKERS" && ( "$VARIANT_TYPE" == "gpu" || "$VARIANT_TYPE" == "cpu" ) ]]; then |
Contributor
Author
There was a problem hiding this comment.
Needed because the cluster is going to replicate worker configs in a similar way to the gpu configs.
| # Adds a cluster tag for cpu variant | ||
| echo "cluster-tag=native-cpu" >> ${COORD_CONFIG} | ||
| # Disable cuDF for CPU mode | ||
| sed -i 's/^cudf\.enabled=true/cudf.enabled=false/' ${WORKER_CONFIG} |
Contributor
Author
There was a problem hiding this comment.
In the cluster we aren't using docker to control the gpu access, to we need to actively disable cudf, rather than letting it be disabled via the docker environment.
Contributor
Author
|
Making this a draft as there are many portions of it that should be pulled out and are not slurm-specific (validation, benchmark posting, etc...) |
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.
Cluster Benchmarking Infrastructure
This PR adds multi-node TPC-H benchmarking support in a new ccluster, including CPU and GPU variants, result validation, automated result posting, and sweep tooling.
New scripts
Benchmark execution (functions.sh, launch-run.sh, run-presto-benchmarks.slurm)
Config generation (generate_presto_config.sh, templates)
Result reporting (post_results.py, validate_results.py)