Skip to content

Commit 0d51868

Browse files
committed
Disabled x86_64-linux-gnu for CUDA 10.2
Fails with: nvcc error : 'ptxas' died due to signal 11 (Invalid memory reference)
1 parent 37cef71 commit 0d51868

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

O/ONNXRuntime/build_tarballs.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ end
103103
platforms = supported_platforms(; exclude=platform_exclude_filter)
104104

105105
let cuda_platforms = CUDA.supported_platforms(min_version=v"10.2", max_version=v"11")
106+
filter!(p -> !(arch(p) == "x86_64" && Sys.islinux(p) && p["cuda"] == "10.2"), cuda_platforms) # Fails with: nvcc error : 'ptxas' died due to signal 11 (Invalid memory reference)
106107
push!(cuda_platforms, Platform("x86_64", "Linux"; cuda = "11.3"))
107108
push!(cuda_platforms, Platform("x86_64", "Windows"; cuda = "11.3"))
108109

0 commit comments

Comments
 (0)