Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GKE tests for jax.distributed.initialize() #480

Merged
merged 2 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dags/multipod/configs/jax_tests_gce_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"""Utilities to construct configs for JAX tests for GCE."""

from xlml.apis import gcp_config, metric_config, task, test_config
from dags import test_owner, gcs_bucket
from dags import test_owner
from dags.multipod.configs import common
from dags.vm_resource import TpuVersion, Project, RuntimeVersion
import datetime
Expand Down
41 changes: 41 additions & 0 deletions dags/multipod/configs/jax_tests_gke_config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Utilities to construct configs for JAX tests for GCE."""

from dags import test_owner
from dags.multipod.configs import gke_config
from dags.vm_resource import XpkClusterConfig


def get_jax_distributed_initialize_config(
cluster: XpkClusterConfig,
time_out_in_min: int,
test_name: str,
docker_image: str,
num_slices: int = 1,
):
run_model_cmds = [
"bash end_to_end/test_jdi.sh",
]

return gke_config.get_gke_config(
cluster=cluster,
test_name=test_name,
run_model_cmds=run_model_cmds,
num_slices=num_slices,
docker_image=docker_image,
test_owner=test_owner.AKANKSHA_G,
time_out_in_min=time_out_in_min,
)
155 changes: 76 additions & 79 deletions dags/multipod/jax_functional_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
import datetime
from airflow import models
from dags import composer_env
from dags.vm_resource import TpuVersion, Zone, Project, V5_NETWORKS, V5P_SUBNETWORKS, RuntimeVersion
from dags.multipod.configs import jax_tests_gce_config
from dags.vm_resource import DockerImage, TpuVersion, Zone, Project, V5_NETWORKS, V5P_SUBNETWORKS, RuntimeVersion, XpkClusters
from dags.multipod.configs import jax_tests_gce_config, jax_tests_gke_config
from dags.multipod.configs.common import SetupMode

# Run once a day at 10 am UTC (2 am PST)
Expand All @@ -32,87 +32,84 @@
catchup=False,
) as dag:
default_test_name = "jax-distributed-initialize"
test_modes = [SetupMode.STABLE, SetupMode.NIGHTLY, SetupMode.JAX_STABLE_STACK]
v5p_project_name = Project.TPU_PROD_ENV_AUTOMATED.value
v5p_network = V5_NETWORKS
v5p_subnetwork = V5P_SUBNETWORKS
v5p_runtime_version = RuntimeVersion.V2_ALPHA_TPUV5.value
test_modes_with_docker_images = [
(SetupMode.STABLE, None),
(SetupMode.JAX_STABLE_STACK, DockerImage.MAXTEXT_TPU_JAX_STABLE_STACK),
(SetupMode.NIGHTLY, DockerImage.MAXTEXT_TPU_JAX_NIGHTLY),
]

v4_task_arr, v5p_task_arr = [], []

for test_mode in test_modes:
# v4
jax_nightly_1slice_v4_8 = (
jax_tests_gce_config.get_jax_distributed_initialize_config(
tpu_version=TpuVersion.V4,
tpu_cores=8,
tpu_zone=Zone.US_CENTRAL2_B.value,
time_out_in_min=60,
is_tpu_reserved=False,
test_name=f"{default_test_name}-{test_mode.value}",
test_mode=test_mode,
)
)
if len(v4_task_arr) > 1:
# pylint: disable-next=pointless-statement
v4_task_arr[-1] >> jax_nightly_1slice_v4_8
v4_task_arr.append(jax_nightly_1slice_v4_8)
for test_mode, gke_docker_image in test_modes_with_docker_images:
for num_slices in (1, 2):
# v4 GCE
jax_gce_v4_8 = jax_tests_gce_config.get_jax_distributed_initialize_config(
tpu_version=TpuVersion.V4,
tpu_cores=8,
tpu_zone=Zone.US_CENTRAL2_B.value,
time_out_in_min=60,
is_tpu_reserved=False,
num_slices=num_slices,
test_name=f"{default_test_name}-gce-{test_mode.value}",
test_mode=test_mode,
)
if len(v4_task_arr) > 1:
# pylint: disable-next=pointless-statement
v4_task_arr[-1] >> jax_gce_v4_8
v4_task_arr.append(jax_gce_v4_8)

jax_nightly_2slice_v4_8 = (
jax_tests_gce_config.get_jax_distributed_initialize_config(
tpu_version=TpuVersion.V4,
tpu_cores=8,
tpu_zone=Zone.US_CENTRAL2_B.value,
time_out_in_min=60,
is_tpu_reserved=False,
num_slices=2,
test_name=f"{default_test_name}-{test_mode.value}",
test_mode=test_mode,
# v4 GKE
if gke_docker_image is not None:
jax_gke_v4_8 = (
jax_tests_gke_config.get_jax_distributed_initialize_config(
cluster=XpkClusters.TPU_V4_8_MAXTEXT_CLUSTER,
time_out_in_min=60,
num_slices=num_slices,
test_name=f"{default_test_name}-gke-{test_mode.value}",
docker_image=gke_docker_image.value,
).run()
)
)

# pylint: disable-next=pointless-statement
v4_task_arr[-1] >> jax_nightly_2slice_v4_8
v4_task_arr.append(jax_nightly_2slice_v4_8)
# pylint: disable-next=pointless-statement
v4_task_arr[-1] >> jax_gke_v4_8
v4_task_arr.append(jax_gke_v4_8)

# v5p
v5p_project_name = Project.TPU_PROD_ENV_AUTOMATED.value
v5p_network = V5_NETWORKS
v5p_subnetwork = V5P_SUBNETWORKS
v5p_runtime_version = RuntimeVersion.V2_ALPHA_TPUV5.value
# v5p GCE
jax_gce_v5p_8 = (
jax_tests_gce_config.get_jax_distributed_initialize_config(
tpu_version=TpuVersion.V5P,
tpu_cores=8,
num_slices=num_slices,
tpu_zone=Zone.US_EAST5_A.value,
runtime_version=v5p_runtime_version,
project_name=v5p_project_name,
time_out_in_min=60,
is_tpu_reserved=True,
test_name=f"{default_test_name}-gce-{test_mode.value}",
test_mode=test_mode,
network=v5p_network,
subnetwork=v5p_subnetwork,
)
)
if len(v5p_task_arr) > 1:
# pylint: disable-next=pointless-statement
v5p_task_arr[-1] >> jax_gce_v5p_8
v5p_task_arr.append(jax_gce_v5p_8)

jax_nightly_1slice_v5p_8 = (
jax_tests_gce_config.get_jax_distributed_initialize_config(
tpu_version=TpuVersion.V5P,
tpu_cores=8,
tpu_zone=Zone.US_EAST5_A.value,
runtime_version=v5p_runtime_version,
project_name=v5p_project_name,
time_out_in_min=60,
is_tpu_reserved=True,
test_name=f"{default_test_name}-{test_mode.value}",
test_mode=test_mode,
network=v5p_network,
subnetwork=v5p_subnetwork,
# v5p GKE
if gke_docker_image is not None:
jax_gke_v5p_8 = (
jax_tests_gke_config.get_jax_distributed_initialize_config(
cluster=XpkClusters.TPU_V5P_8_CLUSTER,
time_out_in_min=60,
num_slices=num_slices,
test_name=f"{default_test_name}-gke-{test_mode.value}",
docker_image=gke_docker_image.value,
).run()
)
)
if len(v5p_task_arr) > 1:
# pylint: disable-next=pointless-statement
v5p_task_arr[-1] >> jax_nightly_1slice_v5p_8
v5p_task_arr.append(jax_nightly_1slice_v5p_8)

jax_nightly_2slice_v5p_8 = (
jax_tests_gce_config.get_jax_distributed_initialize_config(
tpu_version=TpuVersion.V5P,
tpu_cores=8,
num_slices=2,
tpu_zone=Zone.US_EAST5_A.value,
runtime_version=v5p_runtime_version,
project_name=v5p_project_name,
time_out_in_min=60,
is_tpu_reserved=True,
test_name=f"{default_test_name}-{test_mode.value}",
test_mode=test_mode,
network=v5p_network,
subnetwork=v5p_subnetwork,
)
)

# pylint: disable-next=pointless-statement
v5p_task_arr[-1] >> jax_nightly_2slice_v5p_8
v5p_task_arr.append(jax_nightly_2slice_v5p_8)
# pylint: disable-next=pointless-statement
v5p_task_arr[-1] >> jax_gke_v5p_8
v5p_task_arr.append(jax_gke_v5p_8)
Loading