Upload llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1
Browse files- .gitattributes +1 -0
- llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/bench.slurm +111 -0
- llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/config.yaml +90 -0
- llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/log.out +496 -0
- llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/profiler/ip-26-0-174-36_243244.1720048960776918215.pt.trace.json.tmp +3 -0
- llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/status.txt +1 -0
.gitattributes
CHANGED
@@ -112,3 +112,4 @@ llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-4/profiler/ip-26-0-164-207_605035.17200466819
|
|
112 |
llama-1B/8_GPUS/dp-2_tp-4_pp-1_mbz-16/profiler/ip-26-0-162-233_1835168.1720046865197689959.pt.trace.json filter=lfs diff=lfs merge=lfs -text
|
113 |
llama-1B/8_GPUS/dp-1_tp-8_pp-1_mbz-8/profiler/ip-26-0-174-36_233048.1720046995722150451.pt.trace.json filter=lfs diff=lfs merge=lfs -text
|
114 |
llama-1B/8_GPUS/dp-4_tp-1_pp-2_mbz-4/profiler/ip-26-0-169-86_2027781.1720048000830928296.pt.trace.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
112 |
llama-1B/8_GPUS/dp-2_tp-4_pp-1_mbz-16/profiler/ip-26-0-162-233_1835168.1720046865197689959.pt.trace.json filter=lfs diff=lfs merge=lfs -text
|
113 |
llama-1B/8_GPUS/dp-1_tp-8_pp-1_mbz-8/profiler/ip-26-0-174-36_233048.1720046995722150451.pt.trace.json filter=lfs diff=lfs merge=lfs -text
|
114 |
llama-1B/8_GPUS/dp-4_tp-1_pp-2_mbz-4/profiler/ip-26-0-169-86_2027781.1720048000830928296.pt.trace.json filter=lfs diff=lfs merge=lfs -text
|
115 |
+
llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/profiler/ip-26-0-174-36_243244.1720048960776918215.pt.trace.json.tmp filter=lfs diff=lfs merge=lfs -text
|
llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/bench.slurm
ADDED
@@ -0,0 +1,111 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
|
3 |
+
#SBATCH --job-name=bench_cluster
|
4 |
+
#SBATCH --time=02:00:00
|
5 |
+
#SBATCH --partition=hopper-prod
|
6 |
+
#SBATCH --nodes=1
|
7 |
+
#SBATCH --gres=gpu:8
|
8 |
+
#SBATCH --qos=normal
|
9 |
+
#SBATCH --ntasks-per-node=1
|
10 |
+
#SBATCH --cpus-per-task=96
|
11 |
+
#SBATCH --exclusive
|
12 |
+
#SBATCH --output=/fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/log.out
|
13 |
+
#SBATCH --error=/fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/log.out
|
14 |
+
|
15 |
+
# Function to update status based on squeue output
|
16 |
+
update_status() {
|
17 |
+
job_id=$1
|
18 |
+
status_file=$2
|
19 |
+
# For unknown reasons, it doenst update status for pending. It only works for running
|
20 |
+
while true; do
|
21 |
+
job_status=$(squeue --job $job_id --noheader --format=%T)
|
22 |
+
echo "Job status: $job_status"
|
23 |
+
if [ -z "$job_status" ]; then
|
24 |
+
# Job has finished or is not found
|
25 |
+
break
|
26 |
+
elif [ "$job_status" = "RUNNING" ]; then
|
27 |
+
printf "running" > $status_file
|
28 |
+
break
|
29 |
+
fi
|
30 |
+
sleep 10
|
31 |
+
done
|
32 |
+
}
|
33 |
+
|
34 |
+
# Misc initializations.
|
35 |
+
echo "========================"
|
36 |
+
echo "START TIME: $(date)"
|
37 |
+
source /fsx/ferdinandmom/miniforge3/etc/profile.d/conda.sh
|
38 |
+
conda activate /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster
|
39 |
+
echo python3 version = $(python3 --version)
|
40 |
+
echo "========================"
|
41 |
+
|
42 |
+
# Slurm stuff
|
43 |
+
export HOSTNAMES=$(scontrol show hostnames "$SLURM_JOB_NODELIST")
|
44 |
+
export MASTER_ADDR=$(scontrol show hostnames "$SLURM_JOB_NODELIST" | head -n 1)
|
45 |
+
export MASTER_PORT=$((1024 + RANDOM % 64511))
|
46 |
+
|
47 |
+
export TMPDIR=/scratch
|
48 |
+
export HF_DATASETS_CACHE="/admin/home/ferdinand_mom/.cache"
|
49 |
+
export CUBLAS_WORKSPACE_CONFIG=":4096:8"
|
50 |
+
export CUDA_DEVICE_MAX_CONNECTIONS="1"
|
51 |
+
|
52 |
+
huggingface-cli login --token $HUGGINGFACE_TOKEN
|
53 |
+
|
54 |
+
|
55 |
+
NANOTRON_REPO="/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron"
|
56 |
+
CMD="$NANOTRON_REPO/run_train.py --config-file /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/config.yaml"
|
57 |
+
|
58 |
+
LAUNCHER="torchrun \
|
59 |
+
--nproc_per_node 8 \
|
60 |
+
--nnodes 1 \
|
61 |
+
--rdzv_endpoint ${MASTER_ADDR}:${MASTER_PORT} \
|
62 |
+
--rdzv_backend c10d \
|
63 |
+
--max_restarts 0 \
|
64 |
+
--tee 3 \
|
65 |
+
--node_rank ${SLURM_PROCID}"
|
66 |
+
|
67 |
+
# Checkout the bench_cluster branch
|
68 |
+
cd $NANOTRON_REPO
|
69 |
+
git checkout bench_cluster
|
70 |
+
cd ..
|
71 |
+
# Get the current job ID
|
72 |
+
job_id=${SLURM_JOB_ID}
|
73 |
+
|
74 |
+
# Update status to "pending" or "running" in the background
|
75 |
+
update_status $job_id /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/status.txt &
|
76 |
+
|
77 |
+
# Run the main command
|
78 |
+
srun -u $LAUNCHER $CMD
|
79 |
+
exit_status=$?
|
80 |
+
|
81 |
+
# Update status based on the exit status of `srun`
|
82 |
+
if [ $exit_status -eq 0 ]; then
|
83 |
+
printf "completed" > /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/status.txt
|
84 |
+
else
|
85 |
+
if grep -q "OutOfMemoryError" /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/log.out; then
|
86 |
+
printf "oom" > /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/status.txt
|
87 |
+
elif grep -q " CUDA error: an illegal memory access" /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/log.out; then
|
88 |
+
printf "oom" > /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/status.txt
|
89 |
+
elif grep -q "Timeout at NCCL" /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/log.out; then
|
90 |
+
printf "timeout" > /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/status.txt
|
91 |
+
else
|
92 |
+
printf "fail" > /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/status.txt
|
93 |
+
fi
|
94 |
+
fi
|
95 |
+
|
96 |
+
# Run the report script if the job completed successfully
|
97 |
+
if [ $exit_status -eq 0 ]; then
|
98 |
+
python /fsx/ferdinandmom/ferdinand-hf/bench_cluster/main.py report --inp_dir /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1 --is_logs
|
99 |
+
python /fsx/ferdinandmom/ferdinand-hf/bench_cluster/main.py report --inp_dir /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1 --is_profiler
|
100 |
+
fi
|
101 |
+
|
102 |
+
|
103 |
+
# Push to hub the folder using huggingface_cli
|
104 |
+
huggingface-cli upload nanotron/bench_cluster /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1 llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1 --commit-message "Upload llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1"
|
105 |
+
|
106 |
+
# Verify the upload
|
107 |
+
if [ $? -eq 0 ]; then
|
108 |
+
echo "Uploading to Huggingface Hub successful"
|
109 |
+
else
|
110 |
+
echo "Failed to upload to Huggingface Hub"
|
111 |
+
fi
|
llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/config.yaml
ADDED
@@ -0,0 +1,90 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
general:
|
2 |
+
project: bench_cluster
|
3 |
+
seed: 42
|
4 |
+
model:
|
5 |
+
ddp_bucket_cap_mb: 25
|
6 |
+
dtype: bfloat16
|
7 |
+
init_method:
|
8 |
+
std: 0.025
|
9 |
+
make_vocab_size_divisible_by: 1
|
10 |
+
model_config:
|
11 |
+
bos_token_id: 1
|
12 |
+
eos_token_id: 2
|
13 |
+
hidden_act: silu
|
14 |
+
hidden_size: 2048
|
15 |
+
initializer_range: 0.02
|
16 |
+
intermediate_size: 4096
|
17 |
+
is_llama_config: true
|
18 |
+
max_position_embeddings: 4096
|
19 |
+
num_attention_heads: 32
|
20 |
+
num_hidden_layers: 24
|
21 |
+
num_key_value_heads: 32
|
22 |
+
pad_token_id: null
|
23 |
+
pretraining_tp: 1
|
24 |
+
rms_norm_eps: 1.0e-05
|
25 |
+
rope_scaling: null
|
26 |
+
rope_theta: 10000.0
|
27 |
+
tie_word_embeddings: true
|
28 |
+
use_cache: true
|
29 |
+
vocab_size: 50257
|
30 |
+
optimizer:
|
31 |
+
accumulate_grad_in_fp32: true
|
32 |
+
clip_grad: 1.0
|
33 |
+
learning_rate_scheduler:
|
34 |
+
learning_rate: 0.0001
|
35 |
+
lr_decay_style: linear
|
36 |
+
lr_warmup_style: linear
|
37 |
+
lr_warmup_steps: 1
|
38 |
+
min_decay_lr: 1.0e-05
|
39 |
+
optimizer_factory:
|
40 |
+
adam_beta1: 0.9
|
41 |
+
adam_beta2: 0.95
|
42 |
+
adam_eps: 1.0e-08
|
43 |
+
name: adamW
|
44 |
+
torch_adam_is_fused: true
|
45 |
+
weight_decay: 0.01
|
46 |
+
zero_stage: 1
|
47 |
+
parallelism:
|
48 |
+
dp: 2
|
49 |
+
expert_parallel_size: 1
|
50 |
+
pp: 4
|
51 |
+
pp_engine: 1f1b
|
52 |
+
tp: 1
|
53 |
+
tp_linear_async_communication: false
|
54 |
+
tp_mode: REDUCE_SCATTER
|
55 |
+
profiler:
|
56 |
+
profiler_export_path: /fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1
|
57 |
+
tokenizer:
|
58 |
+
tokenizer_max_length: null
|
59 |
+
tokenizer_name_or_path: openai-community/gpt2
|
60 |
+
tokenizer_revision: null
|
61 |
+
data_stages:
|
62 |
+
- name: Training Stage
|
63 |
+
start_training_step: 1
|
64 |
+
data:
|
65 |
+
dataset:
|
66 |
+
dataset_overwrite_cache: false
|
67 |
+
dataset_processing_num_proc_per_process: 64
|
68 |
+
hf_dataset_config_name: null
|
69 |
+
hf_dataset_or_datasets: roneneldan/TinyStories
|
70 |
+
hf_dataset_splits: train
|
71 |
+
text_column_name: text
|
72 |
+
num_loading_workers: 0
|
73 |
+
seed: 42
|
74 |
+
lighteval: null
|
75 |
+
tokens:
|
76 |
+
train_steps: 20
|
77 |
+
val_check_interval: -1
|
78 |
+
batch_accumulation_per_replica: 512
|
79 |
+
limit_test_batches: 0
|
80 |
+
limit_val_batches: 0
|
81 |
+
micro_batch_size: 1
|
82 |
+
sequence_length: 4096
|
83 |
+
logging:
|
84 |
+
iteration_step_info_interval: 1
|
85 |
+
log_level: info
|
86 |
+
log_level_replica: info
|
87 |
+
checkpoints:
|
88 |
+
checkpoint_interval: 100000
|
89 |
+
checkpoints_path: /dev/null
|
90 |
+
resume_checkpoint_path: null
|
llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/log.out
ADDED
@@ -0,0 +1,496 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
========================
|
2 |
+
START TIME: Wed Jul 3 23:09:08 UTC 2024
|
3 |
+
python3 version = Python 3.10.14
|
4 |
+
========================
|
5 |
+
The token has not been saved to the git credentials helper. Pass `add_to_git_credential=True` in this function directly or `--add-to-git-credential` if using via `huggingface-cli` if you want to set the git credential as well.
|
6 |
+
Token is valid (permission: write).
|
7 |
+
Your token has been saved to /admin/home/ferdinand_mom/.cache/huggingface/token
|
8 |
+
Login successful
|
9 |
+
Already on 'bench_cluster'
|
10 |
+
M examples/config_tiny_llama.py
|
11 |
+
M examples/config_tiny_llama.yaml
|
12 |
+
M examples/train_tiny_llama.sh
|
13 |
+
M src/nanotron/models/llama.py
|
14 |
+
M src/nanotron/trainer.py
|
15 |
+
Your branch is up to date with 'origin/bench_cluster'.
|
16 |
+
Job status: RUNNING
|
17 |
+
W0703 23:09:16.686000 139898740016960 torch/distributed/run.py:757]
|
18 |
+
W0703 23:09:16.686000 139898740016960 torch/distributed/run.py:757] *****************************************
|
19 |
+
W0703 23:09:16.686000 139898740016960 torch/distributed/run.py:757] Setting OMP_NUM_THREADS environment variable for each process to be 1 in default, to avoid your system being overloaded, please further tune the variable for optimal performance in your application as needed.
|
20 |
+
W0703 23:09:16.686000 139898740016960 torch/distributed/run.py:757] *****************************************
|
21 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Config:
|
22 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Config(general=GeneralArgs(project='bench_cluster',
|
23 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: run='%date_%jobid',
|
24 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: seed=42,
|
25 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: step=None,
|
26 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: consumed_train_samples=None,
|
27 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: benchmark_csv_path=None,
|
28 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: ignore_sanity_checks=True),
|
29 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: parallelism=ParallelismArgs(dp=2,
|
30 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: pp=4,
|
31 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: tp=1,
|
32 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: pp_engine=<nanotron.parallel.pipeline_parallel.engine.OneForwardOneBackwardPipelineEngine object at 0x7f8f1eeb0880>,
|
33 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: tp_mode=<TensorParallelLinearMode.REDUCE_SCATTER: 2>,
|
34 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: tp_linear_async_communication=False,
|
35 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: expert_parallel_size=1),
|
36 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: model=ModelArgs(model_config=LlamaConfig(bos_token_id=1,
|
37 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: eos_token_id=2,
|
38 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: hidden_act='silu',
|
39 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: hidden_size=2048,
|
40 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: initializer_range=0.02,
|
41 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: intermediate_size=4096,
|
42 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: is_llama_config=True,
|
43 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: max_position_embeddings=4096,
|
44 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: num_attention_heads=32,
|
45 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: num_hidden_layers=24,
|
46 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: num_key_value_heads=32,
|
47 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: pad_token_id=None,
|
48 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: pretraining_tp=1,
|
49 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: rms_norm_eps=1e-05,
|
50 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: rope_scaling=None,
|
51 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: rope_theta=10000.0,
|
52 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: tie_word_embeddings=True,
|
53 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: use_cache=True,
|
54 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: vocab_size=50257),
|
55 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: init_method=RandomInit(std=0.025),
|
56 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: dtype=torch.bfloat16,
|
57 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: make_vocab_size_divisible_by=1,
|
58 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: ddp_bucket_cap_mb=25),
|
59 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: tokenizer=TokenizerArgs(tokenizer_name_or_path='openai-community/gpt2',
|
60 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: tokenizer_revision=None,
|
61 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: tokenizer_max_length=None),
|
62 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: checkpoints=CheckpointsArgs(checkpoints_path=Path('/dev/null'),
|
63 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: checkpoint_interval=100000,
|
64 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: save_initial_state=False,
|
65 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: resume_checkpoint_path=None,
|
66 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: checkpoints_path_is_shared_file_system=False),
|
67 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: logging=LoggingArgs(log_level='info',
|
68 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: log_level_replica='info',
|
69 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: iteration_step_info_interval=1),
|
70 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: tokens=TokensArgs(sequence_length=4096,
|
71 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: train_steps=20,
|
72 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: micro_batch_size=1,
|
73 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: batch_accumulation_per_replica=512,
|
74 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: val_check_interval=-1,
|
75 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: limit_val_batches=0,
|
76 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: limit_test_batches=0),
|
77 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: optimizer=OptimizerArgs(optimizer_factory=AdamWOptimizerArgs(adam_eps=1e-08,
|
78 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: adam_beta1=0.9,
|
79 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: adam_beta2=0.95,
|
80 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: torch_adam_is_fused=True,
|
81 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: name='adamW'),
|
82 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: zero_stage=1,
|
83 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: weight_decay=0.01,
|
84 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: clip_grad=1.0,
|
85 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: accumulate_grad_in_fp32=True,
|
86 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: learning_rate_scheduler=LRSchedulerArgs(learning_rate=0.0001,
|
87 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: lr_warmup_steps=1,
|
88 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: lr_warmup_style='linear',
|
89 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: lr_decay_style='linear',
|
90 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: lr_decay_steps=19,
|
91 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: lr_decay_starting_step=None,
|
92 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: min_decay_lr=1e-05)),
|
93 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: data_stages=[DatasetStageArgs(name='Training Stage',
|
94 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: start_training_step=1,
|
95 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: data=DataArgs(dataset=PretrainDatasetsArgs(hf_dataset_or_datasets='roneneldan/TinyStories',
|
96 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: hf_dataset_splits='train',
|
97 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: hf_dataset_config_name=None,
|
98 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: dataset_processing_num_proc_per_process=64,
|
99 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: dataset_overwrite_cache=False,
|
100 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: text_column_name='text'),
|
101 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: seed=42,
|
102 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: num_loading_workers=0))],
|
103 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: profiler=ProfilerArgs(profiler_export_path=Path('/fsx/ferdinandmom/ferdinand-hf/bench_cluster/results/llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1')),
|
104 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: lighteval=None)
|
105 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Model Config:
|
106 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: LlamaConfig(bos_token_id=1,
|
107 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: eos_token_id=2,
|
108 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: hidden_act='silu',
|
109 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: hidden_size=2048,
|
110 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: initializer_range=0.02,
|
111 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: intermediate_size=4096,
|
112 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: is_llama_config=True,
|
113 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: max_position_embeddings=4096,
|
114 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: num_attention_heads=32,
|
115 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: num_hidden_layers=24,
|
116 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: num_key_value_heads=32,
|
117 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: pad_token_id=None,
|
118 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: pretraining_tp=1,
|
119 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: rms_norm_eps=1e-05,
|
120 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: rope_scaling=None,
|
121 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: rope_theta=10000.0,
|
122 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: tie_word_embeddings=True,
|
123 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: use_cache=True,
|
124 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: vocab_size=50257)
|
125 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Building model..
|
126 |
+
[default0]:07/03/2024 23:09:38 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Setting PP block ranks...
|
127 |
+
[default2]:07/03/2024 23:09:51 [INFO|DP=0|PP=1|TP=0|ip-26-0-174-36]: Local number of parameters: 294M (560.05MiB)
|
128 |
+
[default0]:07/03/2024 23:09:51 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Total number of parameters: 1.21G (2312.82MiB)
|
129 |
+
[default0]:07/03/2024 23:09:51 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Local number of parameters: 397M (756.37MiB)
|
130 |
+
[default4]:07/03/2024 23:09:51 [INFO|DP=0|PP=2|TP=0|ip-26-0-174-36]: Local number of parameters: 252M (480.05MiB)
|
131 |
+
[default4]:07/03/2024 23:09:51 [INFO|DP=0|PP=2|TP=0|ip-26-0-174-36]: [After model building] Memory usage: 486.06MiB. Peak allocated: 488.09MiB Peak reserved: 502.00MiB
|
132 |
+
[default4]:07/03/2024 23:09:51 [INFO|DP=0|PP=2|TP=0|ip-26-0-174-36]: No checkpoint path provided.
|
133 |
+
[default6]:07/03/2024 23:09:51 [INFO|DP=0|PP=3|TP=0|ip-26-0-174-36]: Local number of parameters: 271M (516.35MiB)
|
134 |
+
[default6]:07/03/2024 23:09:51 [INFO|DP=0|PP=3|TP=0|ip-26-0-174-36]: [After model building] Memory usage: 520.36MiB. Peak allocated: 522.39MiB Peak reserved: 534.00MiB
|
135 |
+
[default6]:07/03/2024 23:09:51 [INFO|DP=0|PP=3|TP=0|ip-26-0-174-36]: No checkpoint path provided.
|
136 |
+
[default1]:07/03/2024 23:09:51 [INFO|DP=1|PP=0|TP=0|ip-26-0-174-36]: No checkpoint path provided.
|
137 |
+
[default2]:07/03/2024 23:09:51 [INFO|DP=0|PP=1|TP=0|ip-26-0-174-36]: [After model building] Memory usage: 567.07MiB. Peak allocated: 569.10MiB Peak reserved: 594.00MiB
|
138 |
+
[default2]:07/03/2024 23:09:51 [INFO|DP=0|PP=1|TP=0|ip-26-0-174-36]: No checkpoint path provided.
|
139 |
+
[default0]:07/03/2024 23:09:51 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: [After model building] Memory usage: 763.38MiB. Peak allocated: 765.41MiB Peak reserved: 792.00MiB
|
140 |
+
[default0]:07/03/2024 23:09:51 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: No checkpoint path provided.
|
141 |
+
[default0]:07/03/2024 23:09:51 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Parametrizing model parameters using StandardParametrizator
|
142 |
+
[default5]:07/03/2024 23:09:51 [INFO|DP=1|PP=2|TP=0|ip-26-0-174-36]: No checkpoint path provided.
|
143 |
+
[default3]:07/03/2024 23:09:51 [INFO|DP=1|PP=1|TP=0|ip-26-0-174-36]: No checkpoint path provided.
|
144 |
+
[default7]:07/03/2024 23:09:51 [INFO|DP=1|PP=3|TP=0|ip-26-0-174-36]: No checkpoint path provided.
|
145 |
+
[default0]:07/03/2024 23:09:54 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: [Optimizer Building] Using LearningRateForSP as learning rate
|
146 |
+
[default0]:07/03/2024 23:09:54 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: [ZeRO sharding] Size of optimizer params per rank:
|
147 |
+
[default0]:07/03/2024 23:09:54 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: [ZeRO sharding] DP Rank 0 has 198M out of 397M (50.00%) params' optimizer states
|
148 |
+
[default0]:07/03/2024 23:09:54 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: [ZeRO sharding] DP Rank 1 has 198M out of 397M (50.00%) params' optimizer states
|
149 |
+
[default0]:07/03/2024 23:09:55 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: [Training Plan] Stage Training Stage has 19 remaining training steps and has consumed 0 samples
|
150 |
+
[default0]:07/03/2024 23:09:55 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Using `datasets` library
|
151 |
+
[default0]:07/03/2024 23:09:55 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Loading tokenizer from openai-community/gpt2 and transformers/hf_hub versions ('4.41.2', '0.23.4')
|
152 |
+
[default0]:07/03/2024 23:09:55 [WARNING|DP=0|PP=0|TP=0|ip-26-0-174-36]: Repo card metadata block was not found. Setting CardData to empty.
|
153 |
+
[default0]:Repo card metadata block was not found. Setting CardData to empty.
|
154 |
+
[default0]:07/03/2024 23:09:57 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: [Training Plan] There are 1 training stages
|
155 |
+
[default0]:07/03/2024 23:09:57 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: [Stage Training Stage] start from step 1
|
156 |
+
[default0]:07/03/2024 23:09:57 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]:
|
157 |
+
[default0]:07/03/2024 23:09:57 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: [Start training] datetime: 2024-07-03 23:09:57.268378 | mbs: 1 | grad_accum: 512 | global_batch_size: 1024 | sequence_length: 4096 | train_steps: 20 | start_iteration_step: 0 | consumed_train_samples: 0
|
158 |
+
[default0]:07/03/2024 23:09:57 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Resuming training from stage Training Stage, it has trained for 0 samples and has 19 remaining train steps
|
159 |
+
[default0]:07/03/2024 23:09:57 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Memory usage: 3032.50MiB. Peak allocated 3032.50MiB. Peak reserved: 3064.00MiB
|
160 |
+
[default1]:07/03/2024 23:09:57 [WARNING|DP=1|PP=0|TP=0|ip-26-0-174-36]: Repo card metadata block was not found. Setting CardData to empty.
|
161 |
+
[default2]:07/03/2024 23:09:57 [WARNING|DP=0|PP=1|TP=0|ip-26-0-174-36]: Repo card metadata block was not found. Setting CardData to empty.
|
162 |
+
[default5]:07/03/2024 23:09:57 [WARNING|DP=1|PP=2|TP=0|ip-26-0-174-36]: Repo card metadata block was not found. Setting CardData to empty.
|
163 |
+
[default5]:Repo card metadata block was not found. Setting CardData to empty.
|
164 |
+
[default4]:07/03/2024 23:09:57 [WARNING|DP=0|PP=2|TP=0|ip-26-0-174-36]: Repo card metadata block was not found. Setting CardData to empty.
|
165 |
+
[default6]:Repo card metadata block was not found. Setting CardData to empty.
|
166 |
+
[default6]:07/03/2024 23:09:57 [WARNING|DP=0|PP=3|TP=0|ip-26-0-174-36]: Repo card metadata block was not found. Setting CardData to empty.
|
167 |
+
[default1]:Repo card metadata block was not found. Setting CardData to empty.
|
168 |
+
[default3]:07/03/2024 23:09:57 [WARNING|DP=1|PP=1|TP=0|ip-26-0-174-36]: Repo card metadata block was not found. Setting CardData to empty.
|
169 |
+
[default4]:Repo card metadata block was not found. Setting CardData to empty.
|
170 |
+
[default3]:Repo card metadata block was not found. Setting CardData to empty.
|
171 |
+
[default2]:Repo card metadata block was not found. Setting CardData to empty.
|
172 |
+
[default7]:Repo card metadata block was not found. Setting CardData to empty.
|
173 |
+
[default7]:07/03/2024 23:09:57 [WARNING|DP=1|PP=3|TP=0|ip-26-0-174-36]: Repo card metadata block was not found. Setting CardData to empty.
|
174 |
+
[default6]:/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/autograd/graph.py:744: UserWarning: c10d::allreduce_: an autograd kernel was not registered to the Autograd key(s) but we are trying to backprop through it. This may lead to silently incorrect behavior. This behavior is deprecated and will be removed in a future version of PyTorch. If your operator is differentiable, please ensure you have registered an autograd kernel to the correct Autograd key (e.g. DispatchKey::Autograd, DispatchKey::CompositeImplicitAutograd). If your operator is not differentiable, or to squash this warning and use the previous behavior, please register torch::CppFunction::makeFallthrough() to DispatchKey::Autograd. (Triggered internally at ../torch/csrc/autograd/autograd_not_implemented_fallback.cpp:63.)
|
175 |
+
[default6]: return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass
|
176 |
+
[default7]:/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/autograd/graph.py:744: UserWarning: c10d::allreduce_: an autograd kernel was not registered to the Autograd key(s) but we are trying to backprop through it. This may lead to silently incorrect behavior. This behavior is deprecated and will be removed in a future version of PyTorch. If your operator is differentiable, please ensure you have registered an autograd kernel to the correct Autograd key (e.g. DispatchKey::Autograd, DispatchKey::CompositeImplicitAutograd). If your operator is not differentiable, or to squash this warning and use the previous behavior, please register torch::CppFunction::makeFallthrough() to DispatchKey::Autograd. (Triggered internally at ../torch/csrc/autograd/autograd_not_implemented_fallback.cpp:63.)
|
177 |
+
[default7]: return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass
|
178 |
+
[default5]:/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/autograd/graph.py:744: UserWarning: c10d::allreduce_: an autograd kernel was not registered to the Autograd key(s) but we are trying to backprop through it. This may lead to silently incorrect behavior. This behavior is deprecated and will be removed in a future version of PyTorch. If your operator is differentiable, please ensure you have registered an autograd kernel to the correct Autograd key (e.g. DispatchKey::Autograd, DispatchKey::CompositeImplicitAutograd). If your operator is not differentiable, or to squash this warning and use the previous behavior, please register torch::CppFunction::makeFallthrough() to DispatchKey::Autograd. (Triggered internally at ../torch/csrc/autograd/autograd_not_implemented_fallback.cpp:63.)
|
179 |
+
[default5]: return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass
|
180 |
+
[default4]:/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/autograd/graph.py:744: UserWarning: c10d::allreduce_: an autograd kernel was not registered to the Autograd key(s) but we are trying to backprop through it. This may lead to silently incorrect behavior. This behavior is deprecated and will be removed in a future version of PyTorch. If your operator is differentiable, please ensure you have registered an autograd kernel to the correct Autograd key (e.g. DispatchKey::Autograd, DispatchKey::CompositeImplicitAutograd). If your operator is not differentiable, or to squash this warning and use the previous behavior, please register torch::CppFunction::makeFallthrough() to DispatchKey::Autograd. (Triggered internally at ../torch/csrc/autograd/autograd_not_implemented_fallback.cpp:63.)
|
181 |
+
[default4]: return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass
|
182 |
+
[default3]:/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/autograd/graph.py:744: UserWarning: c10d::allreduce_: an autograd kernel was not registered to the Autograd key(s) but we are trying to backprop through it. This may lead to silently incorrect behavior. This behavior is deprecated and will be removed in a future version of PyTorch. If your operator is differentiable, please ensure you have registered an autograd kernel to the correct Autograd key (e.g. DispatchKey::Autograd, DispatchKey::CompositeImplicitAutograd). If your operator is not differentiable, or to squash this warning and use the previous behavior, please register torch::CppFunction::makeFallthrough() to DispatchKey::Autograd. (Triggered internally at ../torch/csrc/autograd/autograd_not_implemented_fallback.cpp:63.)
|
183 |
+
[default3]: return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass
|
184 |
+
[default1]:/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/autograd/graph.py:744: UserWarning: c10d::allreduce_: an autograd kernel was not registered to the Autograd key(s) but we are trying to backprop through it. This may lead to silently incorrect behavior. This behavior is deprecated and will be removed in a future version of PyTorch. If your operator is differentiable, please ensure you have registered an autograd kernel to the correct Autograd key (e.g. DispatchKey::Autograd, DispatchKey::CompositeImplicitAutograd). If your operator is not differentiable, or to squash this warning and use the previous behavior, please register torch::CppFunction::makeFallthrough() to DispatchKey::Autograd. (Triggered internally at ../torch/csrc/autograd/autograd_not_implemented_fallback.cpp:63.)
|
185 |
+
[default1]: return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass
|
186 |
+
[default2]:/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/autograd/graph.py:744: UserWarning: c10d::allreduce_: an autograd kernel was not registered to the Autograd key(s) but we are trying to backprop through it. This may lead to silently incorrect behavior. This behavior is deprecated and will be removed in a future version of PyTorch. If your operator is differentiable, please ensure you have registered an autograd kernel to the correct Autograd key (e.g. DispatchKey::Autograd, DispatchKey::CompositeImplicitAutograd). If your operator is not differentiable, or to squash this warning and use the previous behavior, please register torch::CppFunction::makeFallthrough() to DispatchKey::Autograd. (Triggered internally at ../torch/csrc/autograd/autograd_not_implemented_fallback.cpp:63.)
|
187 |
+
[default2]: return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass
|
188 |
+
[default0]:/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/autograd/graph.py:744: UserWarning: Attempting to run cuBLAS, but there was no current CUDA context! Attempting to set the primary context... (Triggered internally at ../aten/src/ATen/cuda/CublasHandlePool.cpp:135.)
|
189 |
+
[default0]: return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass
|
190 |
+
[default0]:/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/autograd/graph.py:744: UserWarning: c10d::allreduce_: an autograd kernel was not registered to the Autograd key(s) but we are trying to backprop through it. This may lead to silently incorrect behavior. This behavior is deprecated and will be removed in a future version of PyTorch. If your operator is differentiable, please ensure you have registered an autograd kernel to the correct Autograd key (e.g. DispatchKey::Autograd, DispatchKey::CompositeImplicitAutograd). If your operator is not differentiable, or to squash this warning and use the previous behavior, please register torch::CppFunction::makeFallthrough() to DispatchKey::Autograd. (Triggered internally at ../torch/csrc/autograd/autograd_not_implemented_fallback.cpp:63.)
|
191 |
+
[default0]: return Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass
|
192 |
+
[default1]:/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/distributed/distributed_c10d.py:2261: UserWarning: torch.distributed.all_reduce_coalesced will be deprecated. If you must use it, please revisit our documentation later at https://pytorch.org/docs/master/distributed.html#collective-functions
|
193 |
+
[default1]: warnings.warn(
|
194 |
+
[default7]:/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/distributed/distributed_c10d.py:2261: UserWarning: torch.distributed.all_reduce_coalesced will be deprecated. If you must use it, please revisit our documentation later at https://pytorch.org/docs/master/distributed.html#collective-functions
|
195 |
+
[default7]: warnings.warn(
|
196 |
+
[default6]:/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/distributed/distributed_c10d.py:2261: UserWarning: torch.distributed.all_reduce_coalesced will be deprecated. If you must use it, please revisit our documentation later at https://pytorch.org/docs/master/distributed.html#collective-functions
|
197 |
+
[default6]: warnings.warn(
|
198 |
+
[default0]:07/03/2024 23:10:40 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Memory usage: 3100.03MiB. Peak allocated 11376.44MiB. Peak reserved: 11574.00MiB
|
199 |
+
[default0]:/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/distributed/distributed_c10d.py:2261: UserWarning: torch.distributed.all_reduce_coalesced will be deprecated. If you must use it, please revisit our documentation later at https://pytorch.org/docs/master/distributed.html#collective-functions
|
200 |
+
[default0]: warnings.warn(
|
201 |
+
[default0]:07/03/2024 23:10:40 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Memory usage: 4612.80MiB. Peak allocated 6503.72MiB. Peak reserved: 13670.00MiB
|
202 |
+
[default6]:07/03/2024 23:10:40 [INFO|DP=0|PP=3|TP=0|ip-26-0-174-36]: iteration: 1 / 20 | consumed_tokens: 4.19M | elapsed_time_per_iteration_ms: 41.9K | tokens_per_sec: 100K | tokens_per_sec_per_gpu: 12.5K | global_batch_size: 1.02K | lm_loss: 11.1 | lr: 0.0001 | model_tflops_per_gpu: 114 | hardware_tflops_per_gpu: 114 | grad_norm: 25.1 | cuda_memory_allocated: 3.32G | cuda_max_memory_reserved: 6.37G | hd_total_memory_tb: 312G | hd_used_memory_tb: 65.8G | hd_free_memory_tb: 246G
|
203 |
+
[default0]:07/03/2024 23:11:05 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Memory usage: 4612.80MiB. Peak allocated 12787.81MiB. Peak reserved: 13670.00MiB
|
204 |
+
[default0]:07/03/2024 23:11:05 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Memory usage: 4612.80MiB. Peak allocated 6503.72MiB. Peak reserved: 13670.00MiB
|
205 |
+
[default6]:07/03/2024 23:11:05 [INFO|DP=0|PP=3|TP=0|ip-26-0-174-36]: iteration: 2 / 20 | consumed_tokens: 8.39M | elapsed_time_per_iteration_ms: 25.3K | tokens_per_sec: 166K | tokens_per_sec_per_gpu: 20.7K | global_batch_size: 1.02K | lm_loss: 11.1 | lr: 9.53e-05 | model_tflops_per_gpu: 188 | hardware_tflops_per_gpu: 188 | grad_norm: 25.2 | cuda_memory_allocated: 3.32G | cuda_max_memory_reserved: 6.37G | hd_total_memory_tb: 312G | hd_used_memory_tb: 65.8G | hd_free_memory_tb: 246G
|
206 |
+
[default0]:07/03/2024 23:11:30 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Memory usage: 4612.80MiB. Peak allocated 12787.81MiB. Peak reserved: 13670.00MiB
|
207 |
+
[default0]:07/03/2024 23:11:30 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Memory usage: 4612.80MiB. Peak allocated 6503.72MiB. Peak reserved: 13670.00MiB
|
208 |
+
[default0]:STAGE:2024-07-03 23:11:30 243244:243244 ActivityProfilerController.cpp:314] Completed Stage: Warm Up
|
209 |
+
[default6]:07/03/2024 23:11:30 [INFO|DP=0|PP=3|TP=0|ip-26-0-174-36]: iteration: 3 / 20 | consumed_tokens: 12.6M | elapsed_time_per_iteration_ms: 25.2K | tokens_per_sec: 167K | tokens_per_sec_per_gpu: 20.8K | global_batch_size: 1.02K | lm_loss: 11.4 | lr: 9.05e-05 | model_tflops_per_gpu: 189 | hardware_tflops_per_gpu: 189 | grad_norm: 217 | cuda_memory_allocated: 3.32G | cuda_max_memory_reserved: 6.37G | hd_total_memory_tb: 312G | hd_used_memory_tb: 65.8G | hd_free_memory_tb: 246G
|
210 |
+
[default0]:07/03/2024 23:11:58 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Memory usage: 4612.80MiB. Peak allocated 12787.81MiB. Peak reserved: 13670.00MiB
|
211 |
+
[default0]:07/03/2024 23:11:58 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Memory usage: 4612.80MiB. Peak allocated 6503.72MiB. Peak reserved: 13670.00MiB
|
212 |
+
[default6]:07/03/2024 23:11:58 [INFO|DP=0|PP=3|TP=0|ip-26-0-174-36]: iteration: 4 / 20 | consumed_tokens: 16.8M | elapsed_time_per_iteration_ms: 28.2K | tokens_per_sec: 149K | tokens_per_sec_per_gpu: 18.6K | global_batch_size: 1.02K | lm_loss: 13.8 | lr: 8.58e-05 | model_tflops_per_gpu: 169 | hardware_tflops_per_gpu: 169 | grad_norm: 22.5 | cuda_memory_allocated: 3.32G | cuda_max_memory_reserved: 6.37G | hd_total_memory_tb: 312G | hd_used_memory_tb: 65.8G | hd_free_memory_tb: 246G
|
213 |
+
[default0]:07/03/2024 23:12:27 [INFO|DP=0|PP=0|TP=0|ip-26-0-174-36]: Memory usage: 4612.80MiB. Peak allocated 12787.81MiB. Peak reserved: 13670.00MiB
|
214 |
+
[default6]:07/03/2024 23:12:27 [INFO|DP=0|PP=3|TP=0|ip-26-0-174-36]: iteration: 5 / 20 | consumed_tokens: 21M | elapsed_time_per_iteration_ms: 28.3K | tokens_per_sec: 148K | tokens_per_sec_per_gpu: 18.5K | global_batch_size: 1.02K | lm_loss: 9.98 | lr: 8.11e-05 | model_tflops_per_gpu: 168 | hardware_tflops_per_gpu: 168 | grad_norm: 16.5
|
215 |
+
[default6]:07/03/2024 23:12:55 [INFO|DP=0|PP=3|TP=0|ip-26-0-174-36]: iteration: 6 / 20 | consumed_tokens: 25.2M | elapsed_time_per_iteration_ms: 28.5K | tokens_per_sec: 147K | tokens_per_sec_per_gpu: 18.4K | global_batch_size: 1.02K | lm_loss: 10.9 | lr: 7.63e-05 | model_tflops_per_gpu: 167 | hardware_tflops_per_gpu: 167 | grad_norm: 93.9
|
216 |
+
[default0]:STAGE:2024-07-03 23:14:23 243244:243244 ActivityProfilerController.cpp:320] Completed Stage: Collection
|
217 |
+
[default0]:STAGE:2024-07-03 23:14:30 243244:243244 ActivityProfilerController.cpp:324] Completed Stage: Post Processing
|
218 |
+
[default6]:[rank6]:[E ProcessGroupNCCL.cpp:563] [Rank 3] Watchdog caught collective operation timeout: WorkNCCL(SeqNum=27657, OpType=RECV, NumelIn=7, NumelOut=7, Timeout(ms)=600000) ran for 600025 milliseconds before timing out.
|
219 |
+
[default2]:[rank2]:[E ProcessGroupNCCL.cpp:563] [Rank 1] Watchdog caught collective operation timeout: WorkNCCL(SeqNum=55305, OpType=RECV, NumelIn=7, NumelOut=7, Timeout(ms)=600000) ran for 600091 milliseconds before timing out.
|
220 |
+
[default4]:[rank4]:[E ProcessGroupNCCL.cpp:563] [Rank 2] Watchdog caught collective operation timeout: WorkNCCL(SeqNum=55305, OpType=RECV, NumelIn=7, NumelOut=7, Timeout(ms)=600000) ran for 600032 milliseconds before timing out.
|
221 |
+
[default6]:[rank6]: Traceback (most recent call last):
|
222 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/run_train.py", line 237, in <module>
|
223 |
+
[default6]:[rank6]: trainer.train(dataloader)
|
224 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/trainer.py", line 429, in train
|
225 |
+
[default6]:[rank6]: outputs, loss_avg = self.training_step(dataloader=self.current_dataloader)
|
226 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/trainer.py", line 462, in training_step
|
227 |
+
[default6]:[rank6]: outputs = self.pipeline_engine.train_batch_iter(
|
228 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/engine.py", line 278, in train_batch_iter
|
229 |
+
[default6]:[rank6]: output = self.forward(context=context, state=state, micro_batch=micro_batch, model=model)
|
230 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/engine.py", line 44, in forward
|
231 |
+
[default6]:[rank6]: output = model(**micro_batch)
|
232 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1532, in _wrapped_call_impl
|
233 |
+
[default6]:[rank6]: return self._call_impl(*args, **kwargs)
|
234 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1541, in _call_impl
|
235 |
+
[default6]:[rank6]: return forward_call(*args, **kwargs)
|
236 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/models/llama.py", line 891, in forward
|
237 |
+
[default6]:[rank6]: sharded_logits = self.model(
|
238 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1532, in _wrapped_call_impl
|
239 |
+
[default6]:[rank6]: return self._call_impl(*args, **kwargs)
|
240 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1541, in _call_impl
|
241 |
+
[default6]:[rank6]: return forward_call(*args, **kwargs)
|
242 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/models/llama.py", line 764, in forward
|
243 |
+
[default6]:[rank6]: return self.forward_with_hidden_states(input_ids=input_ids, input_mask=input_mask)[0]
|
244 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/models/llama.py", line 780, in forward_with_hidden_states
|
245 |
+
[default6]:[rank6]: hidden_encoder_states = encoder_block(**hidden_encoder_states)
|
246 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1532, in _wrapped_call_impl
|
247 |
+
[default6]:[rank6]: return self._call_impl(*args, **kwargs)
|
248 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1541, in _call_impl
|
249 |
+
[default6]:[rank6]: return forward_call(*args, **kwargs)
|
250 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/block.py", line 126, in forward
|
251 |
+
[default6]:[rank6]: new_kwargs[name] = recv_from_pipeline_state_buffer(
|
252 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/functional.py", line 117, in recv_from_pipeline_state_buffer
|
253 |
+
[default6]:[rank6]: pipeline_state.run_communication()
|
254 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/state.py", line 150, in run_communication
|
255 |
+
[default6]:[rank6]: recv_activation_tensor = recv_activation()
|
256 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/state.py", line 31, in __call__
|
257 |
+
[default6]:[rank6]: return self.p2p.recv_tensors(num_tensors=1, from_rank=self.from_rank)[0]
|
258 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/p2p.py", line 353, in recv_tensors
|
259 |
+
[default6]:[rank6]: buffers, futures = self.irecv_tensors(num_tensors=num_tensors, from_rank=from_rank, tag=tag)
|
260 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/p2p.py", line 326, in irecv_tensors
|
261 |
+
[default6]:[rank6]: meta = self._recv_meta(from_rank=from_rank, tag=tag)
|
262 |
+
[default6]:[rank6]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/p2p.py", line 267, in _recv_meta
|
263 |
+
[default6]:[rank6]: self.second_metadata = torch.empty(second_metadata_num_elements, dtype=torch.long, device=self.device)
|
264 |
+
[default6]:[rank6]: torch.cuda.OutOfMemoryError: CUDA out of memory. Tried to allocate more than 1EB memory.
|
265 |
+
[default4]:[rank4]: Traceback (most recent call last):
|
266 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/run_train.py", line 237, in <module>
|
267 |
+
[default4]:[rank4]: trainer.train(dataloader)
|
268 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/trainer.py", line 429, in train
|
269 |
+
[default4]:[rank4]: outputs, loss_avg = self.training_step(dataloader=self.current_dataloader)
|
270 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/trainer.py", line 462, in training_step
|
271 |
+
[default4]:[rank4]: outputs = self.pipeline_engine.train_batch_iter(
|
272 |
+
[default2]:[rank2]: Traceback (most recent call last):
|
273 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/run_train.py", line 237, in <module>
|
274 |
+
[default2]:[rank2]: trainer.train(dataloader)
|
275 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/trainer.py", line 429, in train
|
276 |
+
[default2]:[rank2]: outputs, loss_avg = self.training_step(dataloader=self.current_dataloader)
|
277 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/trainer.py", line 462, in training_step
|
278 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/engine.py", line 252, in train_batch_iter
|
279 |
+
[default4]:[rank4]: output = self.forward(context=context, state=state, micro_batch=micro_batch, model=model)
|
280 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/engine.py", line 44, in forward
|
281 |
+
[default4]:[rank4]: output = model(**micro_batch)
|
282 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1532, in _wrapped_call_impl
|
283 |
+
[default2]:[rank2]: outputs = self.pipeline_engine.train_batch_iter(
|
284 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/engine.py", line 252, in train_batch_iter
|
285 |
+
[default2]:[rank2]: output = self.forward(context=context, state=state, micro_batch=micro_batch, model=model)
|
286 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/engine.py", line 44, in forward
|
287 |
+
[default4]:[rank4]: return self._call_impl(*args, **kwargs)
|
288 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1541, in _call_impl
|
289 |
+
[default4]:[rank4]: return forward_call(*args, **kwargs)
|
290 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/models/llama.py", line 891, in forward
|
291 |
+
[default4]:[rank4]: sharded_logits = self.model(
|
292 |
+
[default2]:[rank2]: output = model(**micro_batch)
|
293 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1532, in _wrapped_call_impl
|
294 |
+
[default4]:[rank4]: return self._call_impl(*args, **kwargs)
|
295 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1541, in _call_impl
|
296 |
+
[default4]:[rank4]: return forward_call(*args, **kwargs)
|
297 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/models/llama.py", line 764, in forward
|
298 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1532, in _wrapped_call_impl
|
299 |
+
[default2]:[rank2]: return self._call_impl(*args, **kwargs)
|
300 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1541, in _call_impl
|
301 |
+
[default4]:[rank4]: return self.forward_with_hidden_states(input_ids=input_ids, input_mask=input_mask)[0]
|
302 |
+
[default2]:[rank2]: return forward_call(*args, **kwargs)
|
303 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/models/llama.py", line 891, in forward
|
304 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/models/llama.py", line 780, in forward_with_hidden_states
|
305 |
+
[default4]:[rank4]: hidden_encoder_states = encoder_block(**hidden_encoder_states)
|
306 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1532, in _wrapped_call_impl
|
307 |
+
[default4]:[rank4]: return self._call_impl(*args, **kwargs)
|
308 |
+
[default2]:[rank2]: sharded_logits = self.model(
|
309 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1532, in _wrapped_call_impl
|
310 |
+
[default2]:[rank2]: return self._call_impl(*args, **kwargs)
|
311 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1541, in _call_impl
|
312 |
+
[default2]:[rank2]: return forward_call(*args, **kwargs)
|
313 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/models/llama.py", line 764, in forward
|
314 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1541, in _call_impl
|
315 |
+
[default4]:[rank4]: return forward_call(*args, **kwargs)
|
316 |
+
[default2]:[rank2]: return self.forward_with_hidden_states(input_ids=input_ids, input_mask=input_mask)[0]
|
317 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/block.py", line 126, in forward
|
318 |
+
[default4]:[rank4]: new_kwargs[name] = recv_from_pipeline_state_buffer(
|
319 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/models/llama.py", line 780, in forward_with_hidden_states
|
320 |
+
[default2]:[rank2]: hidden_encoder_states = encoder_block(**hidden_encoder_states)
|
321 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1532, in _wrapped_call_impl
|
322 |
+
[default2]:[rank2]: return self._call_impl(*args, **kwargs)
|
323 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/functional.py", line 117, in recv_from_pipeline_state_buffer
|
324 |
+
[default4]:[rank4]: pipeline_state.run_communication()
|
325 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/state.py", line 150, in run_communication
|
326 |
+
[default4]:[rank4]: recv_activation_tensor = recv_activation()
|
327 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/state.py", line 31, in __call__
|
328 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1541, in _call_impl
|
329 |
+
[default4]:[rank4]: return self.p2p.recv_tensors(num_tensors=1, from_rank=self.from_rank)[0]
|
330 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/p2p.py", line 353, in recv_tensors
|
331 |
+
[default4]:[rank4]: buffers, futures = self.irecv_tensors(num_tensors=num_tensors, from_rank=from_rank, tag=tag)
|
332 |
+
[default2]:[rank2]: return forward_call(*args, **kwargs)
|
333 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/p2p.py", line 326, in irecv_tensors
|
334 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/block.py", line 126, in forward
|
335 |
+
[default2]:[rank2]: new_kwargs[name] = recv_from_pipeline_state_buffer(
|
336 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/functional.py", line 117, in recv_from_pipeline_state_buffer
|
337 |
+
[default4]:[rank4]: meta = self._recv_meta(from_rank=from_rank, tag=tag)
|
338 |
+
[default4]:[rank4]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/p2p.py", line 267, in _recv_meta
|
339 |
+
[default4]:[rank4]: self.second_metadata = torch.empty(second_metadata_num_elements, dtype=torch.long, device=self.device)
|
340 |
+
[default4]:[rank4]: torch.cuda.OutOfMemoryError: CUDA out of memory. Tried to allocate more than 1EB memory.
|
341 |
+
[default2]:[rank2]: pipeline_state.run_communication()
|
342 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/state.py", line 150, in run_communication
|
343 |
+
[default2]:[rank2]: recv_activation_tensor = recv_activation()
|
344 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/state.py", line 31, in __call__
|
345 |
+
[default2]:[rank2]: return self.p2p.recv_tensors(num_tensors=1, from_rank=self.from_rank)[0]
|
346 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/p2p.py", line 353, in recv_tensors
|
347 |
+
[default2]:[rank2]: buffers, futures = self.irecv_tensors(num_tensors=num_tensors, from_rank=from_rank, tag=tag)
|
348 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/p2p.py", line 326, in irecv_tensors
|
349 |
+
[default2]:[rank2]: meta = self._recv_meta(from_rank=from_rank, tag=tag)
|
350 |
+
[default2]:[rank2]: File "/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/src/nanotron/parallel/pipeline_parallel/p2p.py", line 267, in _recv_meta
|
351 |
+
[default2]:[rank2]: self.second_metadata = torch.empty(second_metadata_num_elements, dtype=torch.long, device=self.device)
|
352 |
+
[default2]:[rank2]: torch.cuda.OutOfMemoryError: CUDA out of memory. Tried to allocate more than 1EB memory.
|
353 |
+
[default6]:[rank6]:[E ProcessGroupNCCL.cpp:1537] [PG 4 Rank 3] Timeout at NCCL work: 27657, last enqueued NCCL work: 27657, last completed NCCL work: 27656.
|
354 |
+
[default6]:[rank6]:[E ProcessGroupNCCL.cpp:577] [Rank 3] Some NCCL operations have failed or timed out. Due to the asynchronous nature of CUDA kernels, subsequent GPU operations might run on corrupted/incomplete data.
|
355 |
+
[default6]:[rank6]:[E ProcessGroupNCCL.cpp:583] [Rank 3] To avoid data inconsistency, we are taking the entire process down.
|
356 |
+
[default6]:[rank6]:[E ProcessGroupNCCL.cpp:1414] [PG 4 Rank 3] Process group watchdog thread terminated with exception: [Rank 3] Watchdog caught collective operation timeout: WorkNCCL(SeqNum=27657, OpType=RECV, NumelIn=7, NumelOut=7, Timeout(ms)=600000) ran for 600025 milliseconds before timing out.
|
357 |
+
[default6]:Exception raised from checkTimeout at ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp:565 (most recent call first):
|
358 |
+
[default6]:frame #0: c10::Error::Error(c10::SourceLocation, std::string) + 0x57 (0x7fc01c23b897 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libc10.so)
|
359 |
+
[default6]:frame #1: c10d::ProcessGroupNCCL::WorkNCCL::checkTimeout(std::optional<std::chrono::duration<long, std::ratio<1l, 1000l> > >) + 0x1d2 (0x7fc01d514c62 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
360 |
+
[default6]:frame #2: c10d::ProcessGroupNCCL::watchdogHandler() + 0x1a0 (0x7fc01d519a80 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
361 |
+
[default6]:frame #3: c10d::ProcessGroupNCCL::ncclCommWatchdog() + 0x10c (0x7fc01d51adcc in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
362 |
+
[default6]:frame #4: <unknown function> + 0xd3e95 (0x7fc068fb3e95 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/bin/../lib/libstdc++.so.6)
|
363 |
+
[default6]:frame #5: <unknown function> + 0x8609 (0x7fc06dffa609 in /lib/x86_64-linux-gnu/libpthread.so.0)
|
364 |
+
[default6]:frame #6: clone + 0x43 (0x7fc06ddc5353 in /lib/x86_64-linux-gnu/libc.so.6)
|
365 |
+
[default6]:
|
366 |
+
[default6]:terminate called after throwing an instance of 'c10::DistBackendError'
|
367 |
+
[default6]: what(): [PG 4 Rank 3] Process group watchdog thread terminated with exception: [Rank 3] Watchdog caught collective operation timeout: WorkNCCL(SeqNum=27657, OpType=RECV, NumelIn=7, NumelOut=7, Timeout(ms)=600000) ran for 600025 milliseconds before timing out.
|
368 |
+
[default6]:Exception raised from checkTimeout at ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp:565 (most recent call first):
|
369 |
+
[default6]:frame #0: c10::Error::Error(c10::SourceLocation, std::string) + 0x57 (0x7fc01c23b897 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libc10.so)
|
370 |
+
[default6]:frame #1: c10d::ProcessGroupNCCL::WorkNCCL::checkTimeout(std::optional<std::chrono::duration<long, std::ratio<1l, 1000l> > >) + 0x1d2 (0x7fc01d514c62 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
371 |
+
[default6]:frame #2: c10d::ProcessGroupNCCL::watchdogHandler() + 0x1a0 (0x7fc01d519a80 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
372 |
+
[default6]:frame #3: c10d::ProcessGroupNCCL::ncclCommWatchdog() + 0x10c (0x7fc01d51adcc in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
373 |
+
[default6]:frame #4: <unknown function> + 0xd3e95 (0x7fc068fb3e95 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/bin/../lib/libstdc++.so.6)
|
374 |
+
[default6]:frame #5: <unknown function> + 0x8609 (0x7fc06dffa609 in /lib/x86_64-linux-gnu/libpthread.so.0)
|
375 |
+
[default6]:frame #6: clone + 0x43 (0x7fc06ddc5353 in /lib/x86_64-linux-gnu/libc.so.6)
|
376 |
+
[default6]:
|
377 |
+
[default6]:Exception raised from ncclCommWatchdog at ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp:1418 (most recent call first):
|
378 |
+
[default6]:frame #0: c10::Error::Error(c10::SourceLocation, std::string) + 0x57 (0x7fc01c23b897 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libc10.so)
|
379 |
+
[default6]:frame #1: <unknown function> + 0xe32119 (0x7fc01d19e119 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
380 |
+
[default6]:frame #2: <unknown function> + 0xd3e95 (0x7fc068fb3e95 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/bin/../lib/libstdc++.so.6)
|
381 |
+
[default6]:frame #3: <unknown function> + 0x8609 (0x7fc06dffa609 in /lib/x86_64-linux-gnu/libpthread.so.0)
|
382 |
+
[default6]:frame #4: clone + 0x43 (0x7fc06ddc5353 in /lib/x86_64-linux-gnu/libc.so.6)
|
383 |
+
[default6]:
|
384 |
+
[default4]:[rank4]:[E ProcessGroupNCCL.cpp:1537] [PG 4 Rank 2] Timeout at NCCL work: 55305, last enqueued NCCL work: 55305, last completed NCCL work: 55304.
|
385 |
+
[default4]:[rank4]:[E ProcessGroupNCCL.cpp:577] [Rank 2] Some NCCL operations have failed or timed out. Due to the asynchronous nature of CUDA kernels, subsequent GPU operations might run on corrupted/incomplete data.
|
386 |
+
[default4]:[rank4]:[E ProcessGroupNCCL.cpp:583] [Rank 2] To avoid data inconsistency, we are taking the entire process down.
|
387 |
+
[default4]:[rank4]:[E ProcessGroupNCCL.cpp:1414] [PG 4 Rank 2] Process group watchdog thread terminated with exception: [Rank 2] Watchdog caught collective operation timeout: WorkNCCL(SeqNum=55305, OpType=RECV, NumelIn=7, NumelOut=7, Timeout(ms)=600000) ran for 600032 milliseconds before timing out.
|
388 |
+
[default4]:Exception raised from checkTimeout at ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp:565 (most recent call first):
|
389 |
+
[default4]:frame #0: c10::Error::Error(c10::SourceLocation, std::string) + 0x57 (0x7f0979431897 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libc10.so)
|
390 |
+
[default4]:frame #1: c10d::ProcessGroupNCCL::WorkNCCL::checkTimeout(std::optional<std::chrono::duration<long, std::ratio<1l, 1000l> > >) + 0x1d2 (0x7f097a70ac62 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
391 |
+
[default4]:frame #2: c10d::ProcessGroupNCCL::watchdogHandler() + 0x1a0 (0x7f097a70fa80 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
392 |
+
[default4]:frame #3: c10d::ProcessGroupNCCL::ncclCommWatchdog() + 0x10c (0x7f097a710dcc in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
393 |
+
[default4]:frame #4: <unknown function> + 0xd3e95 (0x7f09c61a9e95 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/bin/../lib/libstdc++.so.6)
|
394 |
+
[default4]:frame #5: <unknown function> + 0x8609 (0x7f09cb1f0609 in /lib/x86_64-linux-gnu/libpthread.so.0)
|
395 |
+
[default4]:frame #6: clone + 0x43 (0x7f09cafbb353 in /lib/x86_64-linux-gnu/libc.so.6)
|
396 |
+
[default4]:
|
397 |
+
[default4]:terminate called after throwing an instance of 'c10::DistBackendError'
|
398 |
+
[default4]: what(): [PG 4 Rank 2] Process group watchdog thread terminated with exception: [Rank 2] Watchdog caught collective operation timeout: WorkNCCL(SeqNum=55305, OpType=RECV, NumelIn=7, NumelOut=7, Timeout(ms)=600000) ran for 600032 milliseconds before timing out.
|
399 |
+
[default4]:Exception raised from checkTimeout at ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp:565 (most recent call first):
|
400 |
+
[default4]:frame #0: c10::Error::Error(c10::SourceLocation, std::string) + 0x57 (0x7f0979431897 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libc10.so)
|
401 |
+
[default4]:frame #1: c10d::ProcessGroupNCCL::WorkNCCL::checkTimeout(std::optional<std::chrono::duration<long, std::ratio<1l, 1000l> > >) + 0x1d2 (0x7f097a70ac62 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
402 |
+
[default4]:frame #2: c10d::ProcessGroupNCCL::watchdogHandler() + 0x1a0 (0x7f097a70fa80 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
403 |
+
[default4]:frame #3: c10d::ProcessGroupNCCL::ncclCommWatchdog() + 0x10c (0x7f097a710dcc in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
404 |
+
[default4]:frame #4: <unknown function> + 0xd3e95 (0x7f09c61a9e95 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/bin/../lib/libstdc++.so.6)
|
405 |
+
[default4]:frame #5: <unknown function> + 0x8609 (0x7f09cb1f0609 in /lib/x86_64-linux-gnu/libpthread.so.0)
|
406 |
+
[default4]:frame #6: clone + 0x43 (0x7f09cafbb353 in /lib/x86_64-linux-gnu/libc.so.6)
|
407 |
+
[default4]:
|
408 |
+
[default4]:Exception raised from ncclCommWatchdog at ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp:1418 (most recent call first):
|
409 |
+
[default4]:frame #0: c10::Error::Error(c10::SourceLocation, std::string) + 0x57 (0x7f0979431897 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libc10.so)
|
410 |
+
[default4]:frame #1: <unknown function> + 0xe32119 (0x7f097a394119 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
411 |
+
[default4]:frame #2: <unknown function> + 0xd3e95 (0x7f09c61a9e95 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/bin/../lib/libstdc++.so.6)
|
412 |
+
[default2]:[rank2]:[E ProcessGroupNCCL.cpp:1537] [PG 4 Rank 1] Timeout at NCCL work: 55305, last enqueued NCCL work: 55305, last completed NCCL work: 55304.
|
413 |
+
[default2]:[rank2]:[E ProcessGroupNCCL.cpp:577] [Rank 1] Some NCCL operations have failed or timed out. Due to the asynchronous nature of CUDA kernels, subsequent GPU operations might run on corrupted/incomplete data.
|
414 |
+
[default4]:frame #3: <unknown function> + 0x8609 (0x7f09cb1f0609 in /lib/x86_64-linux-gnu/libpthread.so.0)
|
415 |
+
[default4]:frame #4: clone + 0x43 (0x7f09cafbb353 in /lib/x86_64-linux-gnu/libc.so.6)
|
416 |
+
[default4]:
|
417 |
+
[default2]:[rank2]:[E ProcessGroupNCCL.cpp:583] [Rank 1] To avoid data inconsistency, we are taking the entire process down.
|
418 |
+
[default2]:[rank2]:[E ProcessGroupNCCL.cpp:1414] [PG 4 Rank 1] Process group watchdog thread terminated with exception: [Rank 1] Watchdog caught collective operation timeout: WorkNCCL(SeqNum=55305, OpType=RECV, NumelIn=7, NumelOut=7, Timeout(ms)=600000) ran for 600091 milliseconds before timing out.
|
419 |
+
[default2]:Exception raised from checkTimeout at ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp:565 (most recent call first):
|
420 |
+
[default2]:frame #0: c10::Error::Error(c10::SourceLocation, std::string) + 0x57 (0x7fec3ebb1897 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libc10.so)
|
421 |
+
[default2]:frame #1: c10d::ProcessGroupNCCL::WorkNCCL::checkTimeout(std::optional<std::chrono::duration<long, std::ratio<1l, 1000l> > >) + 0x1d2 (0x7fec3fe8ac62 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
422 |
+
[default2]:frame #2: c10d::ProcessGroupNCCL::watchdogHandler() + 0x1a0 (0x7fec3fe8fa80 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
423 |
+
[default2]:frame #3: c10d::ProcessGroupNCCL::ncclCommWatchdog() + 0x10c (0x7fec3fe90dcc in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
424 |
+
[default2]:frame #4: <unknown function> + 0xd3e95 (0x7fec8b929e95 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/bin/../lib/libstdc++.so.6)
|
425 |
+
[default2]:frame #5: <unknown function> + 0x8609 (0x7fec90970609 in /lib/x86_64-linux-gnu/libpthread.so.0)
|
426 |
+
[default2]:frame #6: clone + 0x43 (0x7fec9073b353 in /lib/x86_64-linux-gnu/libc.so.6)
|
427 |
+
[default2]:
|
428 |
+
[default2]:terminate called after throwing an instance of 'c10::DistBackendError'
|
429 |
+
[default2]: what(): [PG 4 Rank 1] Process group watchdog thread terminated with exception: [Rank 1] Watchdog caught collective operation timeout: WorkNCCL(SeqNum=55305, OpType=RECV, NumelIn=7, NumelOut=7, Timeout(ms)=600000) ran for 600091 milliseconds before timing out.
|
430 |
+
[default2]:Exception raised from checkTimeout at ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp:565 (most recent call first):
|
431 |
+
[default2]:frame #0: c10::Error::Error(c10::SourceLocation, std::string) + 0x57 (0x7fec3ebb1897 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libc10.so)
|
432 |
+
[default2]:frame #1: c10d::ProcessGroupNCCL::WorkNCCL::checkTimeout(std::optional<std::chrono::duration<long, std::ratio<1l, 1000l> > >) + 0x1d2 (0x7fec3fe8ac62 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
433 |
+
[default2]:frame #2: c10d::ProcessGroupNCCL::watchdogHandler() + 0x1a0 (0x7fec3fe8fa80 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
434 |
+
[default2]:frame #3: c10d::ProcessGroupNCCL::ncclCommWatchdog() + 0x10c (0x7fec3fe90dcc in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
435 |
+
[default2]:frame #4: <unknown function> + 0xd3e95 (0x7fec8b929e95 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/bin/../lib/libstdc++.so.6)
|
436 |
+
[default2]:frame #5: <unknown function> + 0x8609 (0x7fec90970609 in /lib/x86_64-linux-gnu/libpthread.so.0)
|
437 |
+
[default2]:frame #6: clone + 0x43 (0x7fec9073b353 in /lib/x86_64-linux-gnu/libc.so.6)
|
438 |
+
[default2]:
|
439 |
+
[default2]:Exception raised from ncclCommWatchdog at ../torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp:1418 (most recent call first):
|
440 |
+
[default2]:frame #0: c10::Error::Error(c10::SourceLocation, std::string) + 0x57 (0x7fec3ebb1897 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libc10.so)
|
441 |
+
[default2]:frame #1: <unknown function> + 0xe32119 (0x7fec3fb14119 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/lib/libtorch_cuda.so)
|
442 |
+
[default2]:frame #2: <unknown function> + 0xd3e95 (0x7fec8b929e95 in /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/bin/../lib/libstdc++.so.6)
|
443 |
+
[default2]:frame #3: <unknown function> + 0x8609 (0x7fec90970609 in /lib/x86_64-linux-gnu/libpthread.so.0)
|
444 |
+
[default2]:frame #4: clone + 0x43 (0x7fec9073b353 in /lib/x86_64-linux-gnu/libc.so.6)
|
445 |
+
[default2]:
|
446 |
+
W0703 23:23:02.743000 139898740016960 torch/distributed/elastic/multiprocessing/api.py:851] Sending process 243244 closing signal SIGTERM
|
447 |
+
W0703 23:23:02.743000 139898740016960 torch/distributed/elastic/multiprocessing/api.py:851] Sending process 243245 closing signal SIGTERM
|
448 |
+
W0703 23:23:02.743000 139898740016960 torch/distributed/elastic/multiprocessing/api.py:851] Sending process 243247 closing signal SIGTERM
|
449 |
+
W0703 23:23:02.743000 139898740016960 torch/distributed/elastic/multiprocessing/api.py:851] Sending process 243249 closing signal SIGTERM
|
450 |
+
W0703 23:23:02.744000 139898740016960 torch/distributed/elastic/multiprocessing/api.py:851] Sending process 243251 closing signal SIGTERM
|
451 |
+
E0703 23:23:06.831000 139898740016960 torch/distributed/elastic/multiprocessing/api.py:826] failed (exitcode: -6) local_rank: 2 (pid: 243246) of binary: /fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/bin/python3.10
|
452 |
+
Traceback (most recent call last):
|
453 |
+
File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/bin/torchrun", line 8, in <module>
|
454 |
+
sys.exit(main())
|
455 |
+
File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/distributed/elastic/multiprocessing/errors/__init__.py", line 347, in wrapper
|
456 |
+
return f(*args, **kwargs)
|
457 |
+
File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/distributed/run.py", line 879, in main
|
458 |
+
run(args)
|
459 |
+
File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/distributed/run.py", line 870, in run
|
460 |
+
elastic_launch(
|
461 |
+
File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/distributed/launcher/api.py", line 132, in __call__
|
462 |
+
return launch_agent(self._config, self._entrypoint, list(args))
|
463 |
+
File "/fsx/ferdinandmom/miniforge3/envs/env-bench-cluster/lib/python3.10/site-packages/torch/distributed/launcher/api.py", line 263, in launch_agent
|
464 |
+
raise ChildFailedError(
|
465 |
+
torch.distributed.elastic.multiprocessing.errors.ChildFailedError:
|
466 |
+
============================================================
|
467 |
+
/fsx/ferdinandmom/ferdinand-hf/bench_cluster/nanotron/run_train.py FAILED
|
468 |
+
------------------------------------------------------------
|
469 |
+
Failures:
|
470 |
+
[1]:
|
471 |
+
time : 2024-07-03_23:23:02
|
472 |
+
host : ip-26-0-174-36.ec2.internal
|
473 |
+
rank : 4 (local_rank: 4)
|
474 |
+
exitcode : -6 (pid: 243248)
|
475 |
+
error_file: <N/A>
|
476 |
+
traceback : Signal 6 (SIGABRT) received by PID 243248
|
477 |
+
[2]:
|
478 |
+
time : 2024-07-03_23:23:02
|
479 |
+
host : ip-26-0-174-36.ec2.internal
|
480 |
+
rank : 6 (local_rank: 6)
|
481 |
+
exitcode : -6 (pid: 243250)
|
482 |
+
error_file: <N/A>
|
483 |
+
traceback : Signal 6 (SIGABRT) received by PID 243250
|
484 |
+
------------------------------------------------------------
|
485 |
+
Root Cause (first observed failure):
|
486 |
+
[0]:
|
487 |
+
time : 2024-07-03_23:23:02
|
488 |
+
host : ip-26-0-174-36.ec2.internal
|
489 |
+
rank : 2 (local_rank: 2)
|
490 |
+
exitcode : -6 (pid: 243246)
|
491 |
+
error_file: <N/A>
|
492 |
+
traceback : Signal 6 (SIGABRT) received by PID 243246
|
493 |
+
============================================================
|
494 |
+
srun: error: ip-26-0-174-36: task 0: Exited with exit code 1
|
495 |
+
Consider using `hf_transfer` for faster uploads. This solution comes with some limitations. See https://huggingface.co/docs/huggingface_hub/hf_transfer for more details.
|
496 |
+
|
llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/profiler/ip-26-0-174-36_243244.1720048960776918215.pt.trace.json.tmp
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:47fe8346337c24c488024bee86501affdb75d4d92ab0897c8299db9aceb166d8
|
3 |
+
size 2927161255
|
llama-1B/8_GPUS/dp-2_tp-1_pp-4_mbz-1/status.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
oom
|