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 776b747 commit f087276
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dags/solutions_team/solutionsteam_jax_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,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 f087276

Please sign in to comment.