Hello,
While I’ve been using Julia for a number of years now, this is my first attempt to use CUDA with Julia. I’ve encountered some errors while running the tests.
OS: Windows 11 | Version 10.0.26120 Build 26120
julia> using CUDA
(@v1.11) pkg> test CUDA
Testing CUDA
Testing Running tests...
┌ Info: System information:
│ CUDA runtime 12.8, artifact installation
│ CUDA driver 12.8
│ NVIDIA driver 572.61.0
│
│ CUDA libraries:
│ - CUBLAS: 12.8.4
│ - CURAND: 10.3.9
│ - CUFFT: 11.3.3
│ - CUSOLVER: 11.7.3
│ - CUSPARSE: 12.5.8
│ - CUPTI: 2025.1.1 (API 26.0.0)
│ - NVML: 12.0.0+572.61
│
│ Julia packages:
│ - CUDA: 5.7.3
│ - CUDA_Driver_jll: 0.12.1+1
│ - CUDA_Runtime_jll: 0.16.1+0
│
│ Toolchain:
│ - Julia: 1.11.5
│ - LLVM: 16.0.6
│
│ 1 device:
└ 0: NVIDIA GeForce GTX 1080 (sm_61, 7.283 GiB / 8.000 GiB available)
[ Info: Testing using device 0 (NVIDIA GeForce GTX 1080).
. . .
From worker 4: WARNING: Method definition var"#5780#kernel"(Any) in module Main at C:\Users\. . .\.julia\packages\CUDA\oymHm\test\core\execution.jl:360 overwritten at C:\Users\. . . \.julia\packages\CUDA\oymHm\test\core\execution.jl:368.
. . .
base/examples (6) | failed at 2025-04-22T22:27:51.941
Worker 6 terminated.
Unhandled Task ERROR: EOFError: read end of file
Stacktrace:
[1] (::Base.var"#wait_locked#832")(s::Sockets.TCPSocket, buf::IOBuffer, nb::Int64)
@ Base .\stream.jl:979
[2] unsafe_read(s::Sockets.TCPSocket, p::Ptr{UInt8}, nb::UInt64)
@ Base .\stream.jl:987
[3] unsafe_read
@ .\io.jl:890 [inlined]
[4] unsafe_read(s::Sockets.TCPSocket, p::Base.RefValue{NTuple{4, Int64}}, n::Int64)
@ Base .\io.jl:889
[5] read!
@ .\io.jl:894 [inlined]
[6] deserialize_hdr_raw
@ C:\Users\Audrius Stundzia\AppData\Local\Programs\Julia-1.11.5\share\julia\stdlib\v1.11\Distributed\src\messages.jl:167 [inlined]
[7] message_handler_loop(r_stream::Sockets.TCPSocket, w_stream::Sockets.TCPSocket, incoming::Bool)
@ Distributed C:\Users\Audrius Stundzia\AppData\Local\Programs\Julia-1.11.5\share\julia\stdlib\v1.11\Distributed\src\process_messages.jl:172
[8] process_tcp_streams(r_stream::Sockets.TCPSocket, w_stream::Sockets.TCPSocket, incoming::Bool)
@ Distributed C:\Users\Audrius Stundzia\AppData\Local\Programs\Julia-1.11.5\share\julia\stdlib\v1.11\Distributed\src\process_messages.jl:133
[9] (::Distributed.var"#103#104"{Sockets.TCPSocket, Sockets.TCPSocket, Bool})()
@ Distributed C:\Users\Audrius Stundzia\AppData\Local\Programs\Julia-1.11.5\share\julia\stdlib\v1.11\Distributed\src\process_messages.jl:121
. . .
Test Summary: | Pass Error Broken Total Time
Overall | 28796 1 12 28809
core/cudadrv | 2074 3 2077
base/texture | 56 4 60
core/nvml | 27 1 28
base/examples | 1 1
base/kernelabstractions | 2462 4 2466
As in the Julia CUDA manual, " On Windows, also make sure you have the Visual C++ redistributable installed." I downloaded the Visual C++ redistributable [2015 - 2019] and tried to install it.
It turns out that there is a more recent version [2015 - 2022] already installed on my system
which prevents the linked redistributable from being installed.
Is having the more recent redistributable installed okay?
Advice on how to address these errors would be appreciated.