Skip to content

Commit

Permalink
Merge branch 'NVIDIA:main' into nemo2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TaekyungHeo authored Nov 15, 2024
2 parents 15b2e87 + 43d89c2 commit f922581
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ def gen_exec_command(self, tr: TestRun) -> str:
)
self.final_cmd_args["cluster.gpus_per_node"] = self.system.gpus_per_node or "null"

repo_path = tdef.python_executable.git_repo.installed_path
repo_path = (
tdef.python_executable.git_repo.installed_path.absolute()
if tdef.python_executable.git_repo.installed_path is not None
else None
)
if not repo_path:
logging.warning(
f"Local clone of git repo {tdef.python_executable.git_repo} does not exist. "
Expand Down

0 comments on commit f922581

Please sign in to comment.