-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.env.example
More file actions
32 lines (26 loc) · 1.65 KB
/
Copy pathserver.env.example
File metadata and controls
32 lines (26 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Server-specific configuration for SLURM launchers.
# Copy this file and adjust values for your cluster.
# Loaded automatically by ensure_dotenv() before Hydra resolves configs.
#
# These variables are referenced via ${oc.env:VAR,default} in
# dagspaces/common/conf/hydra/launcher/*.yaml
# ── SLURM ──────────────────────────────────────────────────────────────
SLURM_PARTITION=pierson
# ── Paths ──────────────────────────────────────────────────────────────
# Absolute path to the project root (used for PYTHONPATH in SLURM jobs)
TRAWLER_PROJECT_ROOT=/share/pierson/matt/UAIR
# Path to the Python virtual environment activate script
TRAWLER_VENV_ACTIVATE=/share/pierson/matt/UAIR/.venv/bin/activate
# Durable on-disk cache for the Gutenberg corpus tool
# (catalog snapshots, raw texts, per-book chunks).
# See dagspaces/common/gutenberg/ and wiki/howto/build-gutenberg-corpus.md.
GUTENBERG_CACHE_ROOT=/share/pierson/matt/zoo/datasets/gutenberg_cache
# GRPO prompt pre-screening cache (single-entry JSON; lets a retry or a
# same-reward-signature cell reuse the SFT-policy sampling)
GRPO_PRESCREEN_CACHE=
# ── NCCL (GPU interconnect) ────────────────────────────────────────────
# Set to 1 for PCIe-only machines (no NVLink), 0 for NVLink/IB clusters
NCCL_P2P_DISABLE=1
NCCL_IB_DISABLE=1
NCCL_SHM_DISABLE=1
NCCL_CUMEM_HOST_ENABLE=0