-
Notifications
You must be signed in to change notification settings - Fork 132
Run benchmarks in parallel with tests, not sequentially #1130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
sbryngelson
wants to merge
13
commits into
MFlowCode:master
Choose a base branch
from
sbryngelson:readme
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+722
−227
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
cddd605
Merge benchmarks into test.yml for parallel CI execution
sbryngelson 5116e50
Remove cancel-on-bench-failure to avoid killing tests on bench flakes
sbryngelson 5b75291
Consolidate Frontier SLURM jobs into multi-node allocations
sbryngelson 8c14b05
Fix cp-into-self error in consolidated Frontier test script
sbryngelson 50e43f5
Fix review issues: rocm-smi gating, subshell env, job ID parsing
sbryngelson eebd753
Move concurrency from workflow-level to per-job
sbryngelson 8d7f492
Parallelize Frontier builds on login node
sbryngelson d852af3
Restore workflow-level concurrency for full run cancellation
sbryngelson 1627311
Add build progress heartbeat and collapsible GHA log groups
sbryngelson d98e894
Fix heartbeat kill guard and hardcoded node count in log message
sbryngelson b5f6c04
Clean up stale dirs before creating source copies
sbryngelson 6e173e4
Switch Phoenix GPU jobs to H200 nodes for faster scheduling
sbryngelson 553ff35
Harden Frontier CI orchestration scripts
sbryngelson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| #!/bin/bash | ||
| # Run a single benchmark on a Frontier compute node (build already done on login node). | ||
| # Usage: frontier_bench_config.sh <cluster> <device> <interface> | ||
| # Runs inside a SLURM allocation on an ssh'd compute node. | ||
|
|
||
| set -e | ||
| set -x | ||
|
|
||
| cluster=$1; device=$2; interface=$3 | ||
|
|
||
| flag="f"; [ "$cluster" = "frontier_amd" ] && flag="famd" | ||
| mode="g"; [ "$device" = "cpu" ] && mode="c" | ||
|
|
||
| . ./mfc.sh load -c "$flag" -m "$mode" | ||
|
|
||
| # Benchmark | ||
| job_slug="bench-${device}-${interface}" | ||
| n_ranks=12 | ||
| device_opts="" | ||
| if [ "$device" = "gpu" ]; then | ||
| gpus=$(rocm-smi --showid | awk '{print $1}' | grep -Eo '[0-9]+' | uniq | tr '\n' ' ') | ||
| n_ranks=$(echo "$gpus" | wc -w) | ||
| if [ "$n_ranks" -lt 1 ] || [ "$n_ranks" -gt 16 ]; then | ||
| echo "ERROR: Unexpected GPU count ($n_ranks). Expected 1-16 for Frontier MI250X." | ||
| echo "rocm-smi output:" | ||
| rocm-smi --showid | ||
| exit 1 | ||
| fi | ||
| echo "Detected $n_ranks GPUs: $gpus" | ||
| gpu_ids=$(echo "$gpus" | tr ' ' '\n' | tr '\n' ' ' | sed 's/ $//') | ||
| device_opts="--gpu" | ||
| [ "$interface" = "acc" ] && device_opts+=" acc" | ||
| [ "$interface" = "omp" ] && device_opts+=" mp" | ||
| device_opts+=" -g $gpu_ids" | ||
| fi | ||
|
|
||
| if [ "$device" = "gpu" ]; then | ||
| ./mfc.sh bench --mem 12 -j $n_ranks -o "$job_slug.yaml" -- -c "$cluster" $device_opts -n $n_ranks | ||
| else | ||
| ./mfc.sh bench --mem 1 -j $(nproc) -o "$job_slug.yaml" -- -c "$cluster" $device_opts -n $n_ranks | ||
sbryngelson marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| fi | ||
sbryngelson marked this conversation as resolved.
Show resolved
Hide resolved
|
||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| #!/bin/bash | ||
| # Post-process all Frontier benchmark results after the SLURM job completes. | ||
| # Runs bench_diff for each config, comparing master vs PR YAML outputs. | ||
|
|
||
| set -euo pipefail | ||
|
|
||
| # Benchmark configs: cluster device interface flag | ||
| bench_configs=( | ||
| "frontier:gpu:acc:f" | ||
| "frontier:gpu:omp:f" | ||
| "frontier_amd:gpu:omp:famd" | ||
| ) | ||
|
|
||
| for cfg in "${bench_configs[@]}"; do | ||
| IFS=':' read -r cluster device interface flag <<< "$cfg" | ||
| pr_yaml="pr-${cluster}-${device}-${interface}/bench-${device}-${interface}.yaml" | ||
| master_yaml="master-${cluster}-${device}-${interface}/bench-${device}-${interface}.yaml" | ||
|
|
||
| echo "==========================================" | ||
| echo "bench_diff: $cluster $device $interface" | ||
| echo " PR: $pr_yaml" | ||
| echo " Master: $master_yaml" | ||
| echo "==========================================" | ||
|
|
||
| if [ ! -f "$pr_yaml" ]; then | ||
| echo "ERROR: PR YAML not found: $pr_yaml" | ||
| exit 1 | ||
| fi | ||
| if [ ! -f "$master_yaml" ]; then | ||
| echo "ERROR: Master YAML not found: $master_yaml" | ||
| exit 1 | ||
| fi | ||
|
|
||
| (cd pr && . ./mfc.sh load -c "$flag" -m g && ./mfc.sh bench_diff "../$master_yaml" "../$pr_yaml") | ||
| done |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| #!/bin/bash | ||
| # Run a single test on a Frontier compute node (build already done on login node). | ||
| # Usage: frontier_test_config.sh <cluster> <device> <interface> | ||
| # Runs inside a SLURM allocation on an ssh'd compute node. | ||
|
|
||
| set -e | ||
| set -x | ||
|
|
||
| cluster=$1; device=$2; interface=$3 | ||
|
|
||
| flag="f"; [ "$cluster" = "frontier_amd" ] && flag="famd" | ||
| mode="g"; [ "$device" = "cpu" ] && mode="c" | ||
|
|
||
| . ./mfc.sh load -c "$flag" -m "$mode" | ||
|
|
||
| # Device options | ||
| device_opts="" | ||
| if [ "$device" = "gpu" ]; then | ||
| device_opts="--gpu" | ||
| [ "$interface" = "acc" ] && device_opts+=" acc" | ||
| [ "$interface" = "omp" ] && device_opts+=" mp" | ||
| fi | ||
|
|
||
| rdma="" | ||
| [ "$cluster" = "frontier" ] && [ "$device" = "gpu" ] && rdma="--rdma-mpi" | ||
|
|
||
| # Test | ||
| if [ "$device" = "gpu" ]; then | ||
| gpus=$(rocm-smi --showid | awk '{print $1}' | grep -Eo '[0-9]+' | uniq | tr '\n' ' ') | ||
| ngpus=$(echo "$gpus" | wc -w) | ||
| if [ "$ngpus" -lt 1 ] || [ "$ngpus" -gt 16 ]; then | ||
| echo "ERROR: Unexpected GPU count ($ngpus). Expected 1-16 for Frontier MI250X." | ||
| echo "rocm-smi output:" | ||
| rocm-smi --showid | ||
| exit 1 | ||
| fi | ||
| echo "Detected $ngpus GPUs: $gpus" | ||
| ./mfc.sh test -v -a $rdma --max-attempts 3 -j $ngpus $device_opts -- -c "$cluster" | ||
| else | ||
| ./mfc.sh test -v -a --max-attempts 3 -j 32 --no-gpu -- -c "$cluster" | ||
| fi |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,233 @@ | ||
| #!/bin/bash | ||
| # Orchestrate all Frontier benchmark configs in one multi-node SLURM allocation. | ||
| # 1. Builds all configs on the login node (PR and master, in parallel) | ||
| # 2. Submits a single SLURM job running benchmarks in parallel via ssh | ||
|
|
||
| set -euo pipefail | ||
|
|
||
| # Ignore SIGHUP to survive login node session drops | ||
| trap '' HUP | ||
|
|
||
| SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | ||
|
|
||
| # SLURM parameters | ||
| SLURM_ACCOUNT="ENG160" | ||
| SLURM_PARTITION="extended" | ||
| SLURM_WALLTIME="05:59:00" | ||
| CONFIG_TIMEOUT=7200 # 120 min per config | ||
|
|
||
| # Benchmark configs: version cluster device interface | ||
| # 6 total: 3 configs x 2 versions (PR + master) | ||
| configs=( | ||
| "pr frontier gpu acc" | ||
| "pr frontier gpu omp" | ||
| "pr frontier_amd gpu omp" | ||
| "master frontier gpu acc" | ||
| "master frontier gpu omp" | ||
| "master frontier_amd gpu omp" | ||
| ) | ||
| num_nodes=${#configs[@]} | ||
|
|
||
| echo "==========================================" | ||
| echo "Frontier consolidated benchmarks: $num_nodes configs on $num_nodes nodes" | ||
| echo "==========================================" | ||
|
|
||
| # Write config file for sbatch to read (single source of truth) | ||
| config_file="frontier-bench-configs.txt" | ||
| printf '%s\n' "${configs[@]}" > "$config_file" | ||
|
|
||
| # --- Phase 1: Create per-config source copies --- | ||
| for cfg in "${configs[@]}"; do | ||
| read -r version cluster device interface <<< "$cfg" | ||
| dir="${version}-${cluster}-${device}-${interface}" | ||
| echo "Creating source copy: $dir from $version/" | ||
| rm -rf "$dir" | ||
| cp -al "$version" "$dir" 2>/dev/null || cp -r "$version" "$dir" | ||
| done | ||
sbryngelson marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| # --- Phase 2: Build all configs on login node in parallel --- | ||
| echo "" | ||
| echo "==========================================" | ||
| echo "Starting parallel builds (${num_nodes} configs)..." | ||
| echo "==========================================" | ||
|
|
||
| build_pids=() | ||
| for cfg in "${configs[@]}"; do | ||
| read -r version cluster device interface <<< "$cfg" | ||
| dir="${version}-${cluster}-${device}-${interface}" | ||
| log="build-${version}-${cluster}-${device}-${interface}.log" | ||
| echo " Starting: $version $cluster $device $interface" | ||
| ( | ||
| cd "$dir" | ||
| bash .github/workflows/${cluster}/build.sh "$device" "$interface" bench | ||
| ) > "$log" 2>&1 & | ||
| build_pids+=($!) | ||
| done | ||
|
|
||
| # Periodic heartbeat while builds run | ||
| ( | ||
| while true; do | ||
| sleep 120 | ||
| alive=0 | ||
| for pid in "${build_pids[@]}"; do | ||
| kill -0 "$pid" 2>/dev/null && alive=$((alive + 1)) | ||
| done | ||
| [ "$alive" -eq 0 ] && break | ||
| echo "--- Build heartbeat ($(date +%H:%M:%S)): $alive/${#build_pids[@]} running ---" | ||
| for i in "${!configs[@]}"; do | ||
| read -r version cluster device interface <<< "${configs[$i]}" | ||
| log="build-${version}-${cluster}-${device}-${interface}.log" | ||
| if kill -0 "${build_pids[$i]}" 2>/dev/null; then | ||
| size=$(stat -c%s "$log" 2>/dev/null || echo 0) | ||
| last=$(tail -n 1 "$log" 2>/dev/null | head -c 120 || echo "") | ||
| echo " $version $cluster $device $interface: running (${size} bytes) $last" | ||
| fi | ||
| done | ||
| done | ||
| ) & | ||
| heartbeat_pid=$! | ||
|
|
||
| # Wait for all builds and report results | ||
| build_failed=0 | ||
| build_exits=() | ||
| for i in "${!build_pids[@]}"; do | ||
| read -r version cluster device interface <<< "${configs[$i]}" | ||
| if wait "${build_pids[$i]}"; then | ||
| build_exits+=(0) | ||
| else | ||
| code=$? | ||
| build_exits+=($code) | ||
| build_failed=1 | ||
sbryngelson marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| fi | ||
| done | ||
|
|
||
| # Stop heartbeat | ||
| kill "$heartbeat_pid" 2>/dev/null || true; wait "$heartbeat_pid" 2>/dev/null || true | ||
|
|
||
| # Print build logs: passed builds collapsed, failed builds in full | ||
| for i in "${!configs[@]}"; do | ||
| read -r version cluster device interface <<< "${configs[$i]}" | ||
| log="build-${version}-${cluster}-${device}-${interface}.log" | ||
| if [ "${build_exits[$i]}" -eq 0 ]; then | ||
| echo "::group::Build PASSED: $version $cluster $device $interface" | ||
| cat "$log" | ||
| echo "::endgroup::" | ||
| else | ||
| echo "==========================================" | ||
| echo "Build FAILED: $version $cluster $device $interface (exit ${build_exits[$i]})" | ||
| echo "==========================================" | ||
| cat "$log" | ||
| fi | ||
| done | ||
|
|
||
| # Abort on failure | ||
| if [ "$build_failed" -ne 0 ]; then | ||
| echo "" | ||
| echo "==========================================" | ||
| echo "Build failures detected — see logs above." | ||
| echo "==========================================" | ||
| exit 1 | ||
| fi | ||
|
|
||
| echo "" | ||
| echo "==========================================" | ||
| echo "All builds complete. Submitting ${num_nodes}-node SLURM job..." | ||
| echo "==========================================" | ||
|
|
||
| # --- Phase 3: Submit one sbatch job with N nodes --- | ||
| output_file="bench-frontier-all.out" | ||
|
|
||
| submit_output=$(sbatch <<OUTER | ||
| #!/bin/bash | ||
| #SBATCH -J MFC-frontier-all-bench | ||
| #SBATCH -A $SLURM_ACCOUNT | ||
| #SBATCH -N $num_nodes | ||
| #SBATCH -t $SLURM_WALLTIME | ||
| #SBATCH -o$output_file | ||
| #SBATCH -p $SLURM_PARTITION | ||
| set -x | ||
| cd "\$SLURM_SUBMIT_DIR" | ||
| echo "Running in \$(pwd)" | ||
| echo "Allocated nodes: \$SLURM_NODELIST" | ||
| # Get list of individual node hostnames | ||
| mapfile -t nodes < <(scontrol show hostnames "\$SLURM_NODELIST") | ||
| echo "Nodes: \${nodes[*]}" | ||
| # Read config table from file (written by outer script, avoids duplication) | ||
| mapfile -t configs < "$config_file" | ||
| pids=() | ||
| cleanup() { | ||
| echo "Cleaning up — killing all remote processes..." | ||
| for pid in "\${pids[@]}"; do | ||
| kill "\$pid" 2>/dev/null | ||
| done | ||
| wait | ||
| } | ||
| trap cleanup EXIT | ||
| for i in "\${!configs[@]}"; do | ||
| read -r version cluster device interface <<< "\${configs[\$i]}" | ||
| node="\${nodes[\$i]}" | ||
| dir="\${version}-\${cluster}-\${device}-\${interface}" | ||
| outfile="\${dir}/bench-\${device}-\${interface}.out" | ||
| echo "[\$node] Starting bench: \$version \$cluster \$device \$interface in \$dir" | ||
| timeout $CONFIG_TIMEOUT ssh -q -o StrictHostKeyChecking=no "\$node" \ | ||
| "cd \$SLURM_SUBMIT_DIR/\$dir && bash .github/scripts/frontier_bench_config.sh \$cluster \$device \$interface" \ | ||
| > "\$outfile" 2>&1 & | ||
| pids+=(\$!) | ||
| done | ||
| echo "All bench configs launched, waiting for completion..." | ||
| # Wait for all and collect exit codes | ||
| overall_exit=0 | ||
| for i in "\${!pids[@]}"; do | ||
| read -r version cluster device interface <<< "\${configs[\$i]}" | ||
| pid=\${pids[\$i]} | ||
| if wait "\$pid"; then | ||
| echo "PASSED: \$version \$cluster \$device \$interface (PID \$pid)" | ||
| else | ||
| code=\$? | ||
| echo "FAILED: \$version \$cluster \$device \$interface (PID \$pid, exit code \$code)" | ||
| overall_exit=1 | ||
| fi | ||
| done | ||
| # Print summary | ||
| echo "" | ||
| echo "==========================================" | ||
| echo "Benchmark summary:" | ||
| for cfg in "\${configs[@]}"; do | ||
| read -r version cluster device interface <<< "\$cfg" | ||
| dir="\${version}-\${cluster}-\${device}-\${interface}" | ||
| yaml="\${dir}/bench-\${device}-\${interface}.yaml" | ||
| if [ -f "\$yaml" ]; then | ||
| echo " \$version \$cluster \$device \$interface: OK (\$(stat -c%s "\$yaml" 2>/dev/null) bytes)" | ||
| else | ||
| echo " \$version \$cluster \$device \$interface: MISSING YAML" | ||
| fi | ||
| done | ||
| echo "==========================================" | ||
| exit \$overall_exit | ||
| OUTER | ||
| ) | ||
|
|
||
| job_id=$(echo "$submit_output" | awk '/Submitted batch job/ {print $4}') | ||
| if [ -z "$job_id" ]; then | ||
| echo "ERROR: Failed to submit job. sbatch output:" | ||
| echo "$submit_output" | ||
| exit 1 | ||
| fi | ||
|
|
||
| echo "Submitted batch job $job_id ($num_nodes nodes)" | ||
|
|
||
| # Monitor the job | ||
| bash "$SCRIPT_DIR/monitor_slurm_job.sh" "$job_id" "$output_file" | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.