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

Update TPU Bite project owner #502

Merged
merged 1 commit into from
Dec 10, 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
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def get_bite_tpu_config(
runtime_version: str,
model_config: str,
time_out_in_min: int,
task_owner: str,
is_tpu_reserved: bool = False,
pinned_version: Optional[str] = None,
):
Expand Down Expand Up @@ -82,7 +83,7 @@ def get_bite_tpu_config(
set_up_cmds=set_up_cmds,
run_model_cmds=run_model_cmds,
timeout=datetime.timedelta(minutes=time_out_in_min),
task_owner=test_owner.RAN_R,
task_owner=task_owner,
gcs_subfolder=f"{GCS_SUBFOLDER_PREFIX}/jax",
)

Expand Down
4 changes: 3 additions & 1 deletion dags/sparsity_diffusion_devx/project_bite_tpu_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import datetime
from airflow import models
from dags import composer_env
from dags import composer_env, test_owner
from dags.vm_resource import TpuVersion, Zone, RuntimeVersion
from dags.sparsity_diffusion_devx.configs import project_bite_config as config

Expand Down Expand Up @@ -47,6 +47,7 @@
runtime_version=RuntimeVersion.TPU_UBUNTU2204_BASE.value,
model_config="fuji-test-v1",
time_out_in_min=180,
task_owner=test_owner.Maggie_Z,
)

# AXLearn pinned version against JAX head
Expand All @@ -61,4 +62,5 @@
model_config="fuji-test-v1",
pinned_version="e918d7c219d067dfcace8a25e619d90c5a54c36b",
time_out_in_min=180,
task_owner=test_owner.Maggie_Z,
)
4 changes: 4 additions & 0 deletions dags/test_owner.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,12 @@ class Team(enum.Enum):

# FRAMEWORK
QINY_Y = "Qinyi Y."

# JAX
AKANKSHA_G = "Akanksha G."

# MAP_REPRODUCIBILITY
GUNJAN_J = "Gunjan J."

# Bite
Maggie_Z = "Maggie Z."
Loading