CUDA_jll.compute_sanitizerMethod
compute_sanitizer(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of compute_sanitizer.

Example

compute_sanitizer() do exe
    run(`$exe $arguments`)
end
Julia 1.3
CUDA_jll.compute_sanitizerMethod
compute_sanitizer(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of compute_sanitizer. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(compute_sanitizer()) $arguments`)
Julia 1.6
CUDA_jll.is_availableFunction
is_available()

Return whether the artifact is available for the current platform.

CUDA_jll.nvdisasmMethod
nvdisasm(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of nvdisasm.

Example

nvdisasm() do exe
    run(`$exe $arguments`)
end
Julia 1.3
CUDA_jll.nvdisasmMethod
nvdisasm(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of nvdisasm. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(nvdisasm()) $arguments`)
Julia 1.6