Skip to content

Commit 9871a8c

Browse files
authored
Merge branch 'master' into cgomes/add_flux_gbs_512
2 parents 02f3767 + fe5fa33 commit 9871a8c

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.1.29
1+
4.1.30

mlperf_logging/compliance_checker/training_5.1.0/closed_llama31_405b.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,15 @@
2424
REQ: EXACTLY_ONE
2525

2626
- KEY:
27-
NAME: opt_learning_rate_decay_steps
27+
NAME: opt_learning_rate_warmup_steps
2828
REQ: EXACTLY_ONE
29+
POST: >
30+
s['opt_learning_rate_warmup_steps'] = math.ceil(8000 * 1152 / s['global_batch_size'] )
2931
3032
- KEY:
31-
NAME: opt_learning_rate_warmup_steps
33+
NAME: opt_learning_rate_decay_steps
3234
REQ: EXACTLY_ONE
35+
CHECK: " v['value'] == math.ceil(1_200_000 * 1152 / s['global_batch_size'] ) - s['opt_learning_rate_warmup_steps'] "
3336

3437
- KEY:
3538
NAME: opt_learning_rate_decay_schedule

mlperf_logging/compliance_checker/training_5.1.0/closed_llama31_8b.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,15 @@
2323
REQ: EXACTLY_ONE
2424

2525
- KEY:
26-
NAME: opt_learning_rate_decay_steps
26+
NAME: opt_learning_rate_warmup_steps
2727
REQ: EXACTLY_ONE
28-
CHECK: " v['value'] == 1200000 "
28+
POST: >
29+
s['opt_learning_rate_warmup_steps'] = v['value']
2930
3031
- KEY:
31-
NAME: opt_learning_rate_warmup_steps
32+
NAME: opt_learning_rate_decay_steps
3233
REQ: EXACTLY_ONE
34+
CHECK: " v['value'] == math.ceil(1_200_000 / s['global_batch_size'] ) - s['opt_learning_rate_warmup_steps'] "
3335

3436
- KEY:
3537
NAME: opt_learning_rate_decay_schedule

0 commit comments

Comments
 (0)