in launcher/nemo/stages.py [0:0]
def _make_custom_call_string(self, stage_cfg_path=None) -> str:
"""
Create the training command with torchrun, script and args
"""
script_path = str(self._entry_script_path)
torchrun_cmd = self._make_torchrun_string()
script_args_str = self.get_script_args_str(stage_cfg_path)
command = [torchrun_cmd, script_path, script_args_str]
command_string = " \\\n ".join(command)
return command_string