Skip to content

Commit cd75c37

Browse files
Update candidate jaii dag to schedule=None (GoogleCloudPlatform#921)
* Update candidate jaii DAG to manual trigger only * fixed error in docker image value passed
1 parent a76fab0 commit cd75c37

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

dags/sparsity_diffusion_devx/jax_ai_image_candidate_tpu_e2e.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
],
3939
start_date=datetime.datetime(2025, 7, 24),
4040
catchup=False,
41+
schedule=None,
4142
) as dag:
4243
current_datetime = config.get_current_datetime()
4344
maxtext_test_configs = {
@@ -58,12 +59,12 @@
5859

5960
maxtext_docker_images = [(
6061
SetupMode.STABLE,
61-
DockerImage.MAXTEXT_TPU_JAX_STABLE_STACK_CANDIDATE,
62+
"gcr.io/tpu-prod-env-multipod/maxtext_stable_stack_candidate:latest",
6263
)]
6364

6465
maxdiffusion_docker_images = [(
6566
SetupMode.STABLE,
66-
DockerImage.MAXDIFFUSION_TPU_JAX_STABLE_STACK_CANDIDATE,
67+
"gcr.io/tpu-prod-env-multipod/maxdiffusion_stable_stack_candidate:latest",
6768
)]
6869

6970
for accelerator, slices in maxtext_test_configs.items():
@@ -84,7 +85,7 @@
8485
f"base_output_directory={gcs_bucket.BASE_OUTPUT_DIR}/maxtext/jax-stable-stack/automated/{current_datetime}",
8586
),
8687
test_name=f"maxtext-jax-stable-stack-{mode.value}-{accelerator}-{slice_num}x",
87-
docker_image=image.value,
88+
docker_image=image,
8889
test_owner=test_owner.ROHAN_B,
8990
).run_with_quarantine(quarantine_task_group)
9091

@@ -108,6 +109,6 @@
108109
f"output_dir={gcs_bucket.BASE_OUTPUT_DIR}/maxdiffusion-jax-stable-stack-{mode.value}-{accelerator}-{slice_num}/automated/{current_datetime}",
109110
),
110111
test_name=f"maxdiffusion-jax-stable-stack-sdxl-{mode.value}-{accelerator}-{slice_num}x",
111-
docker_image=image.value,
112+
docker_image=image,
112113
test_owner=test_owner.ROHAN_B,
113114
).run_with_quarantine(quarantine_task_group)

0 commit comments

Comments
 (0)