Skip to content

Commit

Permalink
Change capacity type to reserved to avoid provision overtime
Browse files Browse the repository at this point in the history
  • Loading branch information
suexu1025 committed Mar 30, 2024
1 parent b7b4ff0 commit 539d5e2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dags/xlml/solutionsteam_jax_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,16 @@

pod_latest = task.TpuQueuedResourceTask(
test_config.JSonnetTpuVmTest.from_jax(
"jax-pod-latest-tpu-ubuntu2204-base-func-v2-32-1vm"
"jax-pod-latest-tpu-ubuntu2204-base-func-v2-32-1vm",
reserved = True,
),
US_CENTRAL1_A,
).run()

pod_head = task.TpuQueuedResourceTask(
test_config.JSonnetTpuVmTest.from_jax(
"jax-pod-head-tpu-ubuntu2204-base-func-v2-32-1vm"
"jax-pod-head-tpu-ubuntu2204-base-func-v2-32-1vm",
reserved = True,
),
US_CENTRAL1_A,
).run()

0 comments on commit 539d5e2

Please sign in to comment.