Skip to content

Commit fae1429

Browse files
fix: Adjust DAG schedules (GoogleCloudPlatform#1126)
Co-authored-by: Andrew Yang <andrew.yang@cienet.com>
1 parent 44caa55 commit fae1429

6 files changed

Lines changed: 17 additions & 17 deletions

File tree

dags/map_reproducibility/a3ultra/llama_3_1_405b_maxtext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
with models.DAG(
4545
dag_id=DAG_ID,
46-
schedule="0 9 * * 5",
46+
schedule="0 8 * * 5",
4747
tags=[
4848
"reproducibility",
4949
"experimental",

dags/map_reproducibility/a3ultra/llama_3_1_405b_nemo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
with models.DAG(
4444
dag_id=DAG_ID,
45-
schedule="0 11 * * 5",
45+
schedule="0 2 * * 1",
4646
tags=[
4747
"reproducibility",
4848
"experimental",

dags/map_reproducibility/a3ultra/llama_3_1_70b_maxtext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
with models.DAG(
4747
dag_id=f"{HYPERCOMPUTER}_recipes_{MODEL_ID}_{FRAMEWORK}",
48-
schedule="0 5 * * 5",
48+
schedule="0 2 * * 0",
4949
tags=[
5050
"reproducibility",
5151
"experimental",

dags/map_reproducibility/a3ultra/llama_3_1_70b_nemo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
with models.DAG(
4444
dag_id=DAG_ID,
45-
schedule="0 7 * * 5",
45+
schedule="0 7 * * 0",
4646
tags=[
4747
"reproducibility",
4848
"experimental",

dags/map_reproducibility/internal_runs/dag_configs.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
"timeout_minutes": 15,
107107
"backfill_group_nightly": 1,
108108
"backfill_group_release": 1,
109-
"nightly_schedule": "15 10 * * 2,3,4,6",
109+
"nightly_schedule": "0 11 * * 2,3,4,6",
110110
"release_schedule": "0 2 * * 2,3,4,6",
111111
},
112112
"recipes/a3ultra/a3ultra_llama3.1-8b_16gpus_fp8_maxtext.yaml": {
@@ -134,29 +134,29 @@
134134
"timeout_minutes": 20,
135135
"backfill_group_nightly": 2,
136136
"backfill_group_release": 2,
137-
"nightly_schedule": "0 11 * * 2,3,4,6",
138-
"release_schedule": "30 11 * * 2,3,4,6",
137+
"nightly_schedule": "30 11 * * 2,3,4,6",
138+
"release_schedule": "0 12 * * 2,3,4,6",
139139
},
140140
"recipes/a3ultra/a3ultra_llama3.1-70b_256gpus_fp8_maxtext.yaml": {
141141
"timeout_minutes": 15,
142142
"backfill_group_nightly": 3,
143143
"backfill_group_release": 3,
144-
"nightly_schedule": "45 12 * * 2,3,4,6",
145-
"release_schedule": "0 12 * * 2,3,4,6",
144+
"nightly_schedule": "15 13 * * 2,3,4,6",
145+
"release_schedule": "30 12 * * 2,3,4,6",
146146
},
147147
"recipes/a3ultra/a3ultra_llama3.1-405b_256gpus_fp8_maxtext.yaml": {
148148
"timeout_minutes": 30,
149149
"backfill_group_nightly": 4,
150150
"backfill_group_release": 4,
151-
"nightly_schedule": "30 13 * * 2,3,4,6",
152-
"release_schedule": "15 14 * * 2,3,4,6",
151+
"nightly_schedule": "45 13 * * 2,3,4,6",
152+
"release_schedule": "30 14 * * 2,3,4,6",
153153
},
154154
"recipes/a3ultra/a3ultra_llama3.1-405b_256gpus_bf16_maxtext.yaml": {
155155
"timeout_minutes": 40,
156156
"backfill_group_nightly": 5,
157157
"backfill_group_release": 5,
158-
"nightly_schedule": "45 9 * * 2,3,4,6",
159-
"release_schedule": "0 15 * * 2,3,4,6",
158+
"nightly_schedule": "15 10 * * 2,3,4,6",
159+
"release_schedule": "15 15 * * 2,3,4,6",
160160
},
161161
}
162162

@@ -237,14 +237,14 @@
237237
DAG_CONFIGS_ULTRA_NEMO = {
238238
"recipes/a3ultra/nemo/a3ultra_llama3.1-8b_8gpus_fp8_nemo.yaml": {
239239
"timeout_minutes": 20,
240-
"release_schedule": "30 2 * * 6",
240+
"release_schedule": "30 1 * * 6",
241241
},
242242
"recipes/a3ultra/nemo/a3ultra_llama3.1-8b_8gpus_bf16_nemo.yaml": {
243243
"timeout_minutes": 20,
244-
"release_schedule": "0 2 * * 6",
244+
"release_schedule": "0 1 * * 6",
245245
},
246246
"recipes/a3ultra/nemo/a3ultra_llama3.1-70b_256gpus_fp8_nemo.yaml": {
247247
"timeout_minutes": 25,
248-
"release_schedule": "45 10 * * 6",
248+
"release_schedule": "0 16 * * 6",
249249
},
250250
}

dags/map_reproducibility/utils/common_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ def get_scheduled_time(hardware: str, model: str, framework: str):
11281128
schedule_map = {
11291129
"a3ultra": {
11301130
"mixtral-8x7b": {
1131-
"nemo": "0 3 * * 5",
1131+
"nemo": "30 2 * * 5",
11321132
"maxtext": "0 2 * * 5", # 6 PM PST on Thursday
11331133
},
11341134
"llama3-1-70b": {

0 commit comments

Comments
 (0)