You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Manual installation with a PyTorch prerelease (nightly/test):**
90
90
91
91
```bash
92
92
cd${FTS_REPO_DIR}
93
93
94
-
# Install PyTorch nightly first (adjust version and CUDA target as needed, see any specified metadata in requirements/ci/torch-nightly.txt or use your preferred one)
# Standard development build (handles Lightning pin automatically and installs an optional PyTorch prerelease if configured in `requirements/ci/torch-pre.txt`)
# To configure PyTorch prerelease used by the build scripts, edit `requirements/ci/torch-pre.txt`:
87
+
# Line 1: torch version (e.g., 2.10.0 for test/RC or 2.10.0.dev20251203 for nightly)
88
+
# Line 2: CUDA target (e.g., cu128) — CI uses cpu
89
+
# Line 3: channel type: "test" or "nightly"
90
+
91
+
# Note: `manage_standalone_processes.sh` is an optional wrapper to run long-running coverage/build scripts with checks for other concurrent conflicting processes, and run options (--use-nohup etc) — you can also run `build_fts_env.sh` and `gen_fts_coverage.sh` directly.
85
92
86
93
# Activate (use your venv base path)
87
94
export FTS_VENV_BASE=~/.venvs # or /mnt/cache/${USER}/.venvs
The nightly version is specified in `requirements/ci/torch-nightly.txt` and documented in
121
-
`requirements/ci/torch-override.txt` for reference.
127
+
The prerelease version is configured via `requirements/ci/torch-pre.txt`. The `lock_ci_requirements.sh` and `build_fts_env.sh` scripts will read this file to determine whether to pre-install a prerelease PyTorch during builds.
122
128
123
129
#### Install a specific FTS version from source using the standalone `pytorch-lighting` package:
0 commit comments