Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion C/CUDA/CUDA_Compiler/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const YGGDRASIL_DIR = "../../.."
include(joinpath(YGGDRASIL_DIR, "fancy_toys.jl"))

name = "CUDA_Compiler"
version = v"0.4.2"
version = v"0.4.3"

augment_platform_block = read(joinpath(@__DIR__, "platform_augmentation.jl"), String)

Expand Down
4 changes: 2 additions & 2 deletions C/CUDA/CUDA_Driver/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ include(joinpath(YGGDRASIL_DIR, "fancy_toys.jl"))
include(joinpath(YGGDRASIL_DIR, "platforms", "cuda.jl"))

name = "CUDA_Driver"
cuda_version = v"13.2.0"
driver_version = "595.45.04"
cuda_version = v"13.2.1"
driver_version = "595.58.03"

script = raw"""
# Build the driver inspection binary
Expand Down
4 changes: 3 additions & 1 deletion C/CUDA/CUDA_Runtime/build_13.2.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ function get_products(platform)
LibraryProduct(["libcusolver", "cusolver64_12"], :libcusolver),
LibraryProduct(["libcusolverMg", "cusolverMg64_12"], :libcusolverMg),
LibraryProduct(["libcurand", "curand64_10"], :libcurand),
LibraryProduct(["libcupti", "cupti64_2026.1.0"], :libcupti),
LibraryProduct(["libcupti", "cupti64_2026.1.1"], :libcupti),
LibraryProduct(["libnvperf_host", "nvperf_host"], :libnvperf_host),
LibraryProduct(["libnvperf_target", "nvperf_target"], :libnvperf_target),
LibraryProduct(["libnvrtc", "nvrtc64_130_0"], :libnvrtc),
LibraryProduct(["libnvrtc-builtins", "nvrtc-builtins64_132"], :libnvrtc_builtins),
LibraryProduct(["libnvJitLink", "nvJitLink_130_0"], :libnvJitLink),
]
end

# bump
2 changes: 2 additions & 0 deletions C/CUDA/CUDA_SDK@13.2/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ platforms = [Platform("x86_64", "linux"),
Platform("x86_64", "windows")]

build_sdk(name, version, platforms; static=false)

# bump
2 changes: 2 additions & 0 deletions C/CUDA/CUDA_SDK_static@13.2/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ platforms = [Platform("x86_64", "linux"),
Platform("x86_64", "windows")]

build_sdk(name, version, platforms; static=true)

# bump
2 changes: 1 addition & 1 deletion platforms/cuda.jl
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const cuda_full_versions = [
v"12.9.1",
v"13.0.2",
v"13.1.1",
v"13.2.0"
v"13.2.1"
]

function full_version(ver::VersionNumber)
Expand Down