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 a4a9166 commit fe0419aCopy full SHA for fe0419a
lib/nvml/NVML.jl
@@ -30,6 +30,12 @@ end
30
31
function has_nvml()
32
@memoize begin
33
+ if CUDA.is_tegra()
34
+ # XXX: even though Orin supports NVML, we don't know how to
35
+ # look up the device (CUDA.jl#2580)
36
+ return false
37
+ end
38
+
39
if Libdl.dlopen(libnvml(); throw_error=false) === nothing
40
return false
41
end
src/utilities.jl
@@ -139,7 +139,6 @@ function versioninfo(io::IO=stdout)
139
try
140
query_nvml()
141
catch err
142
- @show err
143
if !isa(err, NVML.NVMLError) ||
144
!in(err.code, [NVML.ERROR_NOT_SUPPORTED, NVML.ERROR_NO_PERMISSION])
145
rethrow()
0 commit comments