Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
josejg committed Aug 15, 2024
1 parent 11eab11 commit c9d1884
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions llmfoundry/callbacks/env_logging_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,9 @@ def _get_nvidia_info(self) -> dict[str, Any]:
return {
'cuda_version':
torch.version.cuda, # type: ignore[attr-defined]
'cudnn_version': str(torch.backends.cudnn.version()
), # type: ignore[attr-defined]
'cudnn_version': str(
torch.backends.cudnn.version(),
), # type: ignore[attr-defined]
'nccl_version': '.'.join(map(str, nccl_version)),
}
return {'available': False}
Expand Down

0 comments on commit c9d1884

Please sign in to comment.