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 224eef4 commit ce434e5Copy full SHA for ce434e5
numba_cuda/numba/cuda/cudadrv/driver.py
@@ -3450,13 +3450,13 @@ def inspect_obj_content(objpath: str):
3450
3451
try:
3452
out = subprocess.run(["cuobjdump", objpath], check=True,
3453
- capture_output=True)
+ capture_output=True)
3454
except FileNotFoundError as e:
3455
msg = ("cuobjdump has not been found. You may need "
3456
- "to install the CUDA toolkit and ensure that "
3457
- "it is available on your PATH.\n")
+ "to install the CUDA toolkit and ensure that "
+ "it is available on your PATH.\n")
3458
raise RuntimeError(msg) from e
3459
-
+
3460
objtable = out.stdout.decode('utf-8')
3461
entry_pattern = r"Fatbin (.*) code"
3462
for line in objtable.split("\n"):
0 commit comments