Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cwltool/cuda.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def cuda_version_and_device_count() -> tuple[str, int]:
try:
out: Union[str, bytes] = subprocess.check_output(["nvidia-smi", "-q", "-x"]) # nosec
except Exception as e:
_logger.warning("Error checking CUDA version with nvidia-smi: %s", e, exc_info=e)
_logger.debug("Error checking CUDA version with nvidia-smi: %s", e, exc_info=e)
return ("", 0)
dm = xml.dom.minidom.parseString(out) # nosec

Expand Down
Loading