18 lines
864 B
Bash
18 lines
864 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Rebuild this current-results audit package.
|
|
python3 analysis/characterization/summarize_runs.py --output-dir analysis/characterization/current_results --runs outputs/gpu_ab_combined outputs/gpu_ab_pdsep outputs/contention_16s_ts10 outputs/contention_16s_elastic outputs/combined_1000req outputs/exp3_pd_sep_tp1_mooncake
|
|
|
|
# Example Batch 0/1 local trace analysis.
|
|
python3 analysis/characterization/analyze.py \
|
|
--trace traces/w600_r0.0015_st30.jsonl \
|
|
--kv-bytes-per-token 98304 \
|
|
--task-name w600_local_full_trace \
|
|
--overwrite
|
|
|
|
# CPU-only full compact trace summary was computed on dash0 from:
|
|
# /home/admin/cpfs/wjh/ali-trace/trace-glm5.1-formatted/051315-051317.jsonl
|
|
# Recompute either by running analyze.py on dash0, or by copying that compact
|
|
# formatted JSONL locally. Do not use the 487G raw file directly.
|