first commit
Some checks failed
Self-hosted runner (nightly-past-ci-caller) / Get number (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.11 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.10 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.9 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.8 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.7 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.6 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.5 (push) Has been cancelled
Self-hosted runner (benchmark) / Benchmark (aws-g5-4xlarge-cache) (push) Has been cancelled
Build documentation / build (push) Has been cancelled
Build documentation / build_other_lang (push) Has been cancelled
CodeQL Security Analysis / CodeQL Analysis (push) Has been cancelled
New model PR merged notification / Notify new model (push) Has been cancelled
PR CI / pr-ci (push) Has been cancelled
Slow tests on important models (on Push - A10) / Get all modified files (push) Has been cancelled
Secret Leaks / trufflehog (push) Has been cancelled
Update Transformers metadata / build_and_package (push) Has been cancelled
Slow tests on important models (on Push - A10) / Model CI (push) Has been cancelled
Check Tiny Models / Check tiny models (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Model CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Pipeline CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Example CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / DeepSpeed CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI - Flash Attn / Setup (push) Has been cancelled
Nvidia CI - Flash Attn / Model CI (push) Has been cancelled
Nvidia CI / Setup (push) Has been cancelled
Nvidia CI / Model CI (push) Has been cancelled
Nvidia CI / Torch pipeline CI (push) Has been cancelled
Nvidia CI / Example CI (push) Has been cancelled
Nvidia CI / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI / DeepSpeed CI (push) Has been cancelled
Nvidia CI / Quantization CI (push) Has been cancelled
Nvidia CI / Kernels CI (push) Has been cancelled
Doctests / Setup (push) Has been cancelled
Doctests / Call doctest jobs (push) Has been cancelled
Doctests / Send results to webhook (push) Has been cancelled
Extras Smoke Test / Get supported Python versions (push) Has been cancelled
Extras Smoke Test / Test extras on Python ${{ matrix.python-version }} (push) Has been cancelled
Extras Smoke Test / Check Slack token availability (push) Has been cancelled
Extras Smoke Test / Notify failures to Slack (push) Has been cancelled
Self-hosted runner (AMD scheduled CI caller) / Trigger Scheduled AMD CI (push) Has been cancelled
Stale Bot / Close Stale Issues (push) Has been cancelled

This commit is contained in:
陈赣
2026-06-05 16:53:03 +08:00
commit 06f1fd69a6
6047 changed files with 1895387 additions and 0 deletions

View File

@@ -0,0 +1,93 @@
# Copyright 2024 The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Dumps distributed environment info to a JSON file for verification.
This script creates a Trainer (which initializes the accelerator) and writes
each worker's env vars, TrainingArguments fields, and accelerator state to
``<output_dir>/env_rank<N>.json``.
Accepts all TrainingArguments flags (e.g. ``--deepspeed``, ``--fsdp``) so the
Trainer sets up the correct framework regardless of launcher.
Works with any launcher (torchrun, accelerate launch with DDP/FSDP/DeepSpeed).
"""
import json
import os
from transformers import AutoModelForCausalLM, HfArgumentParser, Trainer, TrainingArguments
def main():
parser = HfArgumentParser((TrainingArguments,))
(args,) = parser.parse_args_into_dataclasses()
args.disable_tqdm = True
model_name = "trl-internal-testing/tiny-Qwen2ForCausalLM-2.5"
model = AutoModelForCausalLM.from_pretrained(model_name)
trainer = Trainer(model=model, args=args)
accelerator = trainer.accelerator
env_info = {
# Raw env vars set by torchrun / accelerate
"env_world_size": os.environ.get("WORLD_SIZE"),
"env_rank": os.environ.get("RANK"),
"env_local_rank": os.environ.get("LOCAL_RANK"),
"env_master_addr": os.environ.get("MASTER_ADDR"),
"env_master_port": os.environ.get("MASTER_PORT"),
# TrainingArguments-derived values
"args_local_rank": args.local_rank,
"args_world_size": args.world_size,
"args_process_index": args.process_index,
"args_local_process_index": args.local_process_index,
"args_parallel_mode": str(args.parallel_mode),
"args_n_gpu": args.n_gpu,
# Accelerator state
"accelerator_num_processes": accelerator.num_processes,
"accelerator_process_index": accelerator.process_index,
"accelerator_local_process_index": accelerator.local_process_index,
"accelerator_is_main_process": accelerator.is_main_process,
"accelerator_is_local_main_process": accelerator.is_local_main_process,
"accelerator_use_distributed": accelerator.use_distributed,
"accelerator_distributed_type": str(accelerator.distributed_type),
"accelerator_device": str(accelerator.device),
# Trainer-level flags (these gate framework-specific code paths)
"trainer_is_fsdp_enabled": trainer.is_fsdp_enabled,
"trainer_is_deepspeed_enabled": trainer.is_deepspeed_enabled,
}
# FSDP plugin info
fsdp_plugin = getattr(accelerator.state, "fsdp_plugin", None)
if fsdp_plugin is not None:
env_info["fsdp_version"] = getattr(fsdp_plugin, "fsdp_version", None)
env_info["fsdp_sharding_strategy"] = str(getattr(fsdp_plugin, "sharding_strategy", None))
env_info["fsdp_cpu_offload"] = str(getattr(fsdp_plugin, "cpu_offload", None))
env_info["fsdp_auto_wrap_policy"] = str(getattr(fsdp_plugin, "auto_wrap_policy", None))
# DeepSpeed plugin info
deepspeed_plugin = getattr(accelerator.state, "deepspeed_plugin", None)
if deepspeed_plugin is not None:
env_info["deepspeed_zero_stage"] = deepspeed_plugin.zero_stage
env_info["deepspeed_offload_optimizer_device"] = str(deepspeed_plugin.offload_optimizer_device)
env_info["deepspeed_offload_param_device"] = str(deepspeed_plugin.offload_param_device)
output_file = os.path.join(args.output_dir, f"env_rank{args.process_index}.json")
with open(output_file, "w") as f:
json.dump(env_info, f)
if __name__ == "__main__":
main()