Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions platforms/cuda.jl
Original file line number Diff line number Diff line change
Expand Up @@ -168,17 +168,17 @@ function supported_platforms(; min_version=v"11", max_version=nothing)

if arch(platform) == "aarch64"
# CUDA 10.x: our CUDA 10.2 build recipe for arm64 only provides jetson binaries
if thisminor(version) == "10.2" && platform["cuda_platform"] != "jetson"
if Base.thisminor(version) == "10.2" && platform["cuda_platform"] != "jetson"
continue
end

# CUDA 11.x: only 11.8 has jetson binaries on the redist server
if v"11.0" <= thisminor(version) < v"11.8" && platform["cuda_platform"] == "jetson"
if v"11.0" <= Base.thisminor(version) < v"11.8" && platform["cuda_platform"] == "jetson"
continue
end

# CUDA 12.x: the jetson binaries for 12.3 seem to be missing
if thisminor(version) == v"12.3" && platform["cuda_platform"] == "jetson"
if Base.thisminor(version) == v"12.3" && platform["cuda_platform"] == "jetson"
continue
end
end
Expand Down