Datasets:
Formats:
csv
Languages:
English
Size:
1K - 10K
Tags:
arxiv-artifact
reproducibility
research-artifact
computer-science
computer-logic
formal-methods
License:
| set -euo pipefail | |
| cd /workspace/pcmt | |
| mkdir -p runs | |
| source /venv/main/bin/activate || true | |
| CURRENT_PID="${1:-}" | |
| if [ -n "${CURRENT_PID}" ]; then | |
| while kill -0 "${CURRENT_PID}" 2>/dev/null; do | |
| echo "[followup] waiting for current benchmark pid=${CURRENT_PID}" | |
| sleep 60 | |
| done | |
| fi | |
| PCMT_RUN_TAG=youcook2-scale2 \ | |
| PCMT_BENCHMARK_DATASET=youcook2 \ | |
| PCMT_HF_LIMIT="${PCMT_HF_LIMIT:-300}" \ | |
| PCMT_DETECTOR_REPEATS="${PCMT_DETECTOR_REPEATS:-8192}" \ | |
| PCMT_SWEEP_REPEATS="${PCMT_SWEEP_REPEATS:-32768}" \ | |
| bash scripts/run_long_benchmark_gpu.sh | |