CUDA_loader_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_loader_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
CUDA_loader_jll.nvlinkMethod
nvlink(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of nvlink.

Example

nvlink() do exe
    run(`$exe $arguments`)
end
Julia 1.3
CUDA_loader_jll.nvlinkMethod
nvlink(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

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

Example

run(`$(nvlink()) $arguments`)
Julia 1.6
CUDA_loader_jll.ptxasMethod
ptxas(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of ptxas.

Example

ptxas() do exe
    run(`$exe $arguments`)
end
Julia 1.3
CUDA_loader_jll.ptxasMethod
ptxas(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

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

Example

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