We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ce26ce commit 22bc7d8Copy full SHA for 22bc7d8
cwltool/cuda.py
@@ -13,7 +13,7 @@ def cuda_version_and_device_count() -> tuple[str, int]:
13
try:
14
out: Union[str, bytes] = subprocess.check_output(["nvidia-smi", "-q", "-x"]) # nosec
15
except Exception as e:
16
- _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)
17
return ("", 0)
18
dm = xml.dom.minidom.parseString(out) # nosec
19
0 commit comments