File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6767_PATHWAYS_SERVER_IMAGE = (
6868 f"us-docker.pkg.dev/cloud-tpu-v2-images/pathways/server:{ _PATHWAYS_IMAGE_TAG } "
6969)
70+ # The colocated python sidecar is independent of the axlearn codebase.
71+ # No need to rebuild for every job launch.
72+ _COLOCATED_SIDECAR_IMAGE_TAG = "master-20260409"
7073
7174# With Jax >= 0.8.2, colocated images are the same as the standard
7275# TODO(samuel-andersen): Rewrite pathways_utils.py to remove references to
113116
114117
115118def get_colocated_python_image (image_id : str ) -> str :
116- path , tag = image_id .rsplit (":" , maxsplit = 1 )
119+ path , _ = image_id .rsplit (":" , maxsplit = 1 )
117120 repo , _ = path .rsplit ("/" , maxsplit = 1 )
118- return f"{ repo } /{ _COLOCATED_PYTHON_SIDECAR_NAME } :{ tag } "
121+ return f"{ repo } /{ _COLOCATED_PYTHON_SIDECAR_NAME } :{ _COLOCATED_SIDECAR_IMAGE_TAG } "
119122
120123
121124def parse_xla_flag_value (value : str ) -> Union [int , bool , str ]:
You can’t perform that action at this time.
0 commit comments