Source code for pytorch_lightning.plugins.environments.slurm_environment
# Copyright The PyTorch Lightning team.## 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.importloggingimportosimportrefromtypingimportOptionalfrompytorch_lightning.plugins.environments.cluster_environmentimportClusterEnvironmentlog=logging.getLogger(__name__)
[docs]classSLURMEnvironment(ClusterEnvironment):"""Cluster environment for training on a cluster managed by SLURM. Args: auto_requeue: Whether automatic job resubmission is enabled or not. How and under which conditions a job gets rescheduled gets determined by the owner of this plugin. """def__init__(self,auto_requeue:bool=True)->None:super().__init__()self.auto_requeue=auto_requeue@propertydefcreates_processes_externally(self)->bool:returnTrue@propertydefmain_address(self)->str:# figure out the root node addrslurm_nodelist=os.environ.get("SLURM_NODELIST")ifslurm_nodelist:root_node=slurm_nodelist.split(" ")[0].split(",")[0]else:root_node="127.0.0.1"root_node=self.resolve_root_node_address(root_node)os.environ["MASTER_ADDR"]=root_nodelog.debug(f"MASTER_ADDR: {os.environ['MASTER_ADDR']}")returnroot_node@propertydefmain_port(self)->int:# -----------------------# SLURM JOB = PORT number# -----------------------# this way every process knows what port to usejob_id=os.environ.get("SLURM_JOB_ID")ifjob_idisnotNone:# use the last 4 numbers in the job id as the iddefault_port=job_id[-4:]# all ports should be in the 10k+ rangedefault_port=int(default_port)+15000else:default_port=12910# -----------------------# PORT NUMBER = MASTER_PORT# -----------------------# in case the user passed it inif"MASTER_PORT"inos.environ:default_port=int(os.environ["MASTER_PORT"])else:os.environ["MASTER_PORT"]=str(default_port)log.debug(f"MASTER_PORT: {os.environ['MASTER_PORT']}")returndefault_port
[docs]@staticmethoddefdetect()->bool:"""Returns ``True`` if the current process was launched on a SLURM cluster."""return"SLURM_NTASKS"inos.environ
@staticmethoddefjob_name()->Optional[str]:returnos.environ.get("SLURM_JOB_NAME")@staticmethoddefjob_id()->Optional[int]:# in interactive mode, don't make logs use the same job idin_slurm_interactive_mode=SLURMEnvironment.job_name()=="bash"ifin_slurm_interactive_mode:returnNonejob_id=os.environ.get("SLURM_JOB_ID")ifjob_idisNone:returnNonetry:returnint(job_id)exceptValueError:returnNone
To analyze traffic and optimize your experience, we serve cookies on this site. By clicking or navigating, you agree to allow our usage of cookies. Read PyTorch Lightning's Privacy Policy.