|
46 | 46 | group_id="Quarantine", dag=dag, prefix_group_id=False |
47 | 47 | ) |
48 | 48 |
|
| 49 | + # v5p tests |
49 | 50 | maxtext_nightly_1slice_v5p_8 = gke_config.get_gke_maxtext_nightly_config( |
50 | 51 | cluster=XpkClusters.TPU_V5P_8_CLUSTER, |
51 | 52 | time_out_in_min=60, |
|
81 | 82 | test_owner=test_owner.RAYMOND_Z, |
82 | 83 | ).run_with_quarantine(quarantine_task_group) |
83 | 84 |
|
| 85 | + # v6e tests |
| 86 | + maxtext_nightly_1slice_v6e_8 = gke_config.get_gke_maxtext_nightly_config( |
| 87 | + cluster=XpkClusters.TPU_V6E_8_CLUSTER, |
| 88 | + time_out_in_min=60, |
| 89 | + test_name=default_test_name, |
| 90 | + docker_image=jax_nightly_image.value, |
| 91 | + test_owner=test_owner.RISHABH_B, |
| 92 | + ).run_with_quarantine(quarantine_task_group) |
| 93 | + |
| 94 | + maxtext_nightly_2slice_v6e_8 = gke_config.get_gke_maxtext_nightly_config( |
| 95 | + num_slices=2, |
| 96 | + cluster=XpkClusters.TPU_V6E_8_CLUSTER, |
| 97 | + time_out_in_min=60, |
| 98 | + test_name=default_test_name, |
| 99 | + docker_image=jax_nightly_image.value, |
| 100 | + test_owner=test_owner.RISHABH_B, |
| 101 | + ).run_with_quarantine(quarantine_task_group) |
| 102 | + |
| 103 | + maxtext_nightly_4slice_v6e_8 = gke_config.get_gke_maxtext_nightly_config( |
| 104 | + num_slices=4, |
| 105 | + cluster=XpkClusters.TPU_V6E_8_CLUSTER, |
| 106 | + time_out_in_min=60, |
| 107 | + test_name=default_test_name, |
| 108 | + docker_image=jax_nightly_image.value, |
| 109 | + test_owner=test_owner.RISHABH_B, |
| 110 | + ).run_with_quarantine(quarantine_task_group) |
| 111 | + |
| 112 | + maxtext_nightly_8slice_v6e_8 = gke_config.get_gke_maxtext_nightly_config( |
| 113 | + num_slices=8, |
| 114 | + cluster=XpkClusters.TPU_V6E_8_CLUSTER, |
| 115 | + time_out_in_min=60, |
| 116 | + test_name=default_test_name, |
| 117 | + docker_image=jax_nightly_image.value, |
| 118 | + test_owner=test_owner.RISHABH_B, |
| 119 | + ).run_with_quarantine(quarantine_task_group) |
| 120 | + |
| 121 | + # Define dependencies for v5p tests to run sequentially |
84 | 122 | ( |
85 | 123 | maxtext_nightly_1slice_v5p_8 |
86 | 124 | >> maxtext_nightly_2slice_v5p_8 |
87 | 125 | >> maxtext_nightly_4slice_v5p_8 |
88 | 126 | >> maxtext_nightly_8slice_v5p_8 |
89 | 127 | ) |
| 128 | + |
| 129 | + # Define dependencies for v6e tests to run sequentially |
| 130 | + ( |
| 131 | + maxtext_nightly_1slice_v6e_8 |
| 132 | + >> maxtext_nightly_2slice_v6e_8 |
| 133 | + >> maxtext_nightly_4slice_v6e_8 |
| 134 | + >> maxtext_nightly_8slice_v6e_8 |
| 135 | + ) |
0 commit comments