Datasets:
Formats:
csv
Languages:
English
Size:
1K - 10K
Tags:
arxiv-artifact
reproducibility
research-artifact
computer-science
computer-logic
formal-methods
License:
| set -euo pipefail | |
| REMOTE="${PCMT_REMOTE:?Set PCMT_REMOTE, for example root@ssh6.vast.ai}" | |
| PORT="${PCMT_REMOTE_PORT:-22}" | |
| REMOTE_DIR="${PCMT_REMOTE_DIR:-/workspace/pcmt}" | |
| ready="$( | |
| ssh -p "${PORT}" -o StrictHostKeyChecking=no "${REMOTE}" \ | |
| "cd '${REMOTE_DIR}' && find runs -maxdepth 2 -name sweep_metrics.json -print | sort" | |
| )" | |
| if [[ -z "${ready}" ]]; then | |
| echo "No completed remote sweep metrics yet." | |
| exit 0 | |
| fi | |
| echo "Completed remote sweep metrics:" | |
| echo "${ready}" | |
| PCMT_REMOTE="${REMOTE}" PCMT_REMOTE_PORT="${PORT}" PCMT_REMOTE_DIR="${REMOTE_DIR}" ./scripts/pull_remote_gpu_results.sh | |
| python3 scripts/update_manuscript_metrics.py | |
| bash scripts/render_manuscript_figures.sh | |
| python3 scripts/build_arxiv_package.py | |