Spaces:
Running on L40S
Running on L40S
File size: 12,864 Bytes
9f818c5 | 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | # SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: OpenMDW-1.1
"""SFT training entrypoint backed by the structured TOML dataclass.
Sole input is ``--sft-toml <path>`` β no ``--config`` or interface_toml flow.
Usage::
torchrun --nproc_per_node=<N> -m cosmos_framework.scripts.train \\
--sft-toml=examples/toml/sft_config/<experiment>.toml \\
-- optimizer.lr=1e-5 trainer.max_iter=200
The TOML is loaded via ``SFTExperimentConfig.from_toml`` (structural validation,
raises on unknown keys), then
``cosmos_framework.configs.toml_config.sft_config.load_experiment_from_toml`` picks the
base ``config.py`` from ``[job].task`` (``vfm`` β ``cosmos_framework/configs/base/config.py``,
``vlm`` β ``cosmos_framework/configs/base/vlm/config.py``), resolves ``[job].experiment``
against the Hydra ``ConfigStore``, and overlays every other TOML key as a Hydra
override. Trailing ``key.path=value`` positionals are applied last (so they
win over TOML).
"""
from __future__ import annotations
import argparse
import os
import traceback
import torch
from loguru import logger as logging
from cosmos_framework.utils.config import Config
from cosmos_framework.utils.lazy_config import LazyConfig, instantiate
from cosmos_framework.utils.serialization import to_yaml
from cosmos_framework.utils import distributed
from cosmos_framework.utils.context_managers import data_loader_init, distributed_init, model_init
from cosmos_framework.utils.launch import log_reproducible_setup
from cosmos_framework.utils.training_telemetry import telemetry
from cosmos_framework.configs.toml_config.sft_config import load_experiment_from_toml
# ---------------------------------------------------------------------------
# --deterministic: mirrors launch_vfm.sh determinism settings.
# ---------------------------------------------------------------------------
# Two entry points because the work has to happen at two different points in the
# launch flow:
# 1. _setup_deterministic_env_and_backends() β at script entry, before any
# CUDA init, so env vars (CUBLAS_WORKSPACE_CONFIG, FLASH_ATTENTION_DETERMINISTIC)
# and torch backend flags take effect.
# 2. _apply_deterministic_config_overrides() β after load_config but before
# config.freeze(), so the config mutations land before trainer.__init__
# re-applies cudnn from config (imaginaire/trainer.py:125-126).
#
# PYTHONHASHSEED must be set externally (Python locks it at interpreter startup);
# we only warn when it's missing.
def _setup_deterministic_env_and_backends() -> None:
"""Set determinism env vars + torch backend flags. Call at script entry, pre-CUDA init."""
if "PYTHONHASHSEED" not in os.environ:
logging.warning(
"PYTHONHASHSEED is not set; --deterministic is best-effort without it. "
"For full reproducibility, prepend `PYTHONHASHSEED=42` (or any fixed value) "
"to your launch command β Python's hash seed is fixed at interpreter startup "
"and cannot be set retroactively."
)
os.environ["FLASH_ATTENTION_DETERMINISTIC"] = "1"
# CUBLAS_WORKSPACE_CONFIG must be set before any CUBLAS init, hence script entry.
# ":4096:8" is the value recommended by PyTorch's `torch.use_deterministic_algorithms`
# docs for CUDA >= 10.2 β without it, deterministic cuBLAS GEMMs raise RuntimeError.
os.environ.setdefault("CUBLAS_WORKSPACE_CONFIG", ":4096:8")
torch.backends.cudnn.deterministic = True
torch.backends.cudnn.benchmark = False
torch.use_deterministic_algorithms(mode=True, warn_only=True)
logging.info("Deterministic mode enabled.")
def _apply_deterministic_config_overrides(config: Config) -> None:
"""Apply config mutations. Call after load_config, before config.freeze().
Forces:
- trainer.cudnn.deterministic=True, trainer.cudnn.benchmark=False
- trainer.seed=42 when at its default (0)
- model.config.compile.enabled=False (any node with the key)
- dataloader num_workers=0, prefetch_factor=None, dataset.detshuffle=True
on every dataloader-shaped node in dataloader_train/dataloader_val.
Only existing keys are mutated; projects without these fields are unaffected.
"""
from omegaconf import DictConfig, ListConfig
config.trainer.cudnn.deterministic = True
config.trainer.cudnn.benchmark = False
if config.trainer.seed == 0:
config.trainer.seed = 42
def _walk(cfg, mutations: dict) -> int:
if cfg is None:
return 0
n = 0
if isinstance(cfg, DictConfig):
for k in list(cfg.keys()):
if k in mutations:
target = mutations[k]
try:
if cfg[k] != target:
cfg[k] = target
n += 1
except Exception as e:
logging.warning(f"--deterministic: failed to set {k}={target!r}: {e}")
continue
try:
v = cfg[k]
except Exception:
continue
if isinstance(v, (DictConfig, ListConfig)):
n += _walk(v, mutations)
elif isinstance(cfg, ListConfig):
for item in cfg:
if isinstance(item, (DictConfig, ListConfig)):
n += _walk(item, mutations)
return n
# persistent_workers=False is needed alongside num_workers=0 β PyTorch's
# DataLoader rejects (num_workers=0, persistent_workers=True) with
# ValueError. Nested dataloaders (e.g. PackingDataLoader β RankPartitionedDataLoader)
# pass the kwargs straight to torch.utils.data.DataLoader so they trip on this.
dl_overrides = {
"num_workers": 0,
"prefetch_factor": None,
"persistent_workers": False,
"detshuffle": True,
}
n_dl = _walk(config.dataloader_train, dl_overrides) + _walk(config.dataloader_val, dl_overrides)
def _force_compile_disabled(cfg) -> int:
"""Force ``compile.enabled=False`` on every CompileConfig subtree in cfg.
Scoped to ``compile`` parents (not a generic ``enabled`` walk) because
``enabled`` is a common key shared by unrelated configs (e.g. EMA).
"""
if cfg is None:
return 0
n = 0
if isinstance(cfg, DictConfig):
for k in list(cfg.keys()):
try:
v = cfg[k]
except Exception:
continue
if k == "compile" and isinstance(v, DictConfig) and "enabled" in v:
try:
if v["enabled"] is not False:
v["enabled"] = False
n += 1
except Exception as e:
logging.warning(f"--deterministic: failed to set compile.enabled=False: {e}")
elif isinstance(v, (DictConfig, ListConfig)):
n += _force_compile_disabled(v)
elif isinstance(cfg, ListConfig):
for item in cfg:
if isinstance(item, (DictConfig, ListConfig)):
n += _force_compile_disabled(item)
return n
# Force compile.enabled=False: Blackwell FMHA must be forced to
# non-deterministic mode due to an implementation limitation (no deterministic
# FMHA kernel on Blackwell). torch.compile=True freezes kernel selection in
# the compiled graph, so the per-kernel force cannot be applied β determinism
# under --deterministic therefore requires the eager (non-compiled) path.
n_tc = _force_compile_disabled(config.model)
logging.info(
f"--deterministic: applied {n_dl} dataloader override(s), "
f"{n_tc} compile.enabled override(s); trainer.seed={config.trainer.seed}"
)
@logging.catch(reraise=True)
@telemetry.monitor
def launch(config: Config, args: argparse.Namespace) -> None:
# Need to initialize the distributed environment before calling config.validate() because it tries to synchronize
# a buffer across ranks. If you don't do this, then you end up allocating a bunch of buffers on rank 0, and also that
# check doesn't actually do anything.
with distributed_init():
distributed.init()
# Apply --deterministic config-level overrides before validate/freeze/trainer-init
# so (a) validate inspects the config the trainer will actually consume, and
# (b) trainer.__init__ doesn't undo the script-level backends settings
# (imaginaire/trainer.py:125-126 re-applies cudnn from config).
if args.deterministic:
_apply_deterministic_config_overrides(config)
# Check that the config is valid
config.validate()
# Freeze the config so developers don't change it during training.
config.freeze() # type: ignore
trainer = config.trainer.type(config)
# Setup the miscellaneous stuff for reproducibility.
log_reproducible_setup(config, args)
if args.attach_vscode_debugger:
print(f"RANK: {os.environ['RANK']}")
if os.environ["RANK"] == "0":
import debugpy # noqa: T100
debugpy.listen(3002) # noqa: T100
print("Waiting for debugger to attach. Listening on port 3002...")
debugpy.wait_for_client() # noqa: T100
with model_init():
model = instantiate(config.model)
# Create the dataloaders.
with data_loader_init():
dataloader_train = instantiate(config.dataloader_train)
dataloader_val = instantiate(config.dataloader_val)
# Start training
trainer.train(
model,
dataloader_train,
dataloader_val,
)
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="SFT training (structured TOML)")
parser.add_argument(
"--sft-toml",
required=True,
help=(
"Path to an SFT structured-dataclass TOML β see "
"cosmos_framework/configs/toml_config/sft_config.py "
"(SFTExperimentConfig)."
),
)
parser.add_argument(
"opts",
nargs=argparse.REMAINDER,
default=[],
help=(
"Extra Hydra-style dotted-path overrides applied AFTER the TOML "
"values (so they win). Use the standard Hydra syntax, e.g. "
"'optimizer.lr=1e-5 trainer.max_iter=200 "
"model.config.parallelism.data_parallel_shard_degree=4'. "
"Prefix with '--' to make argparse stop interpreting the rest as "
"flags."
),
)
parser.add_argument(
"--dryrun",
action="store_true",
help="Do a dry run without training. Useful for debugging the config.",
)
parser.add_argument(
"--attach_vscode_debugger",
action="store_true",
help="Debug mode. Will start a debugpy server at 0.0.0.0:3002.",
)
parser.add_argument(
"--deterministic",
action="store_true",
help=(
"Enable deterministic mode (mirrors launch_vfm.sh). Auto-applies env: "
"CUBLAS_WORKSPACE_CONFIG=:4096:8, FLASH_ATTENTION_DETERMINISTIC=1; torch backends: "
"cudnn.deterministic=True, cudnn.benchmark=False, "
"use_deterministic_algorithms(warn_only=True); config: trainer.cudnn.{deterministic, "
"benchmark}, trainer.seed=42 (when at default 0), "
"model.config.compile.enabled=False, and for every dataloader in "
"dataloader_train/dataloader_val: num_workers=0, prefetch_factor=None, "
"dataset.detshuffle=True. PYTHONHASHSEED must be set externally (e.g. "
"`PYTHONHASHSEED=42 torchrun ...`) since Python locks it in at interpreter startup."
),
)
args = parser.parse_args()
if args.deterministic:
_setup_deterministic_env_and_backends()
config = load_experiment_from_toml(args.sft_toml, extra_overrides=args.opts)
# log_reproducible_setup reads args.config for telemetry; this entrypoint
# only takes --sft-toml, so alias it so the launch info records the TOML.
args.config = args.sft_toml
if args.dryrun:
logging.info("Config:\n" + config.pretty_print(use_color=True))
os.makedirs(config.job.path_local, exist_ok=True)
try:
to_yaml(config, f"{config.job.path_local}/config.yaml")
except Exception:
logging.error("to_yaml failed, falling back to LazyConfig.save_yaml:")
logging.error(f"Traceback: {traceback.format_exc()}")
LazyConfig.save_yaml(config, f"{config.job.path_local}/config.yaml")
print(f"{config.job.path_local}/config.yaml")
else:
launch(config, args)
|