Skip to content

Commit

Permalink
Move libnvidia-ml.so to CUDA_DSO_PATTERNS
Browse files Browse the repository at this point in the history
  • Loading branch information
Atry committed Oct 12, 2024
1 parent 38b7dba commit 958f5c0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/nixglhost.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ def from_json(cls, j: str):
"libnvidia-glsi\\.so.*$",
"libnvidia-glvkspirv\\.so.*$",
"libnvidia-gpucomp\\.so.*$",
"libnvidia-ml\\.so.*$",
"libnvidia-ngx\\.so.*$",
"libnvidia-nvvm\\.so.*$",
"libnvidia-opencl\\.so.*$",
Expand Down Expand Up @@ -229,7 +228,11 @@ def from_json(cls, j: str):
"libdxcore\\.so.*$",
]

CUDA_DSO_PATTERNS = ["libcudadebugger\\.so.*$", "libcuda\\.so.*$"]
CUDA_DSO_PATTERNS = [
"libcudadebugger\\.so.*$",
"libcuda\\.so.*$",
"libnvidia-ml\\.so.*$",
]

GLX_DSO_PATTERNS = ["libGLX_nvidia\\.so.*$"]

Expand Down

0 comments on commit 958f5c0

Please sign in to comment.