JuliaMath / Polynomials.jl

Polynomial manipulations in Julia
http://juliamath.github.io/Polynomials.jl/
Other
303 stars 74 forks source link

CUDA #399

Open jverzani opened 2 years ago

jverzani commented 2 years ago

In https://discourse.julialang.org/t/using-polynomials-jl-with-cuda-jl/80580 we find the following hangs:

using CUDA, Polynomials
a = CuVector([1.0f0, 1.0f0, 1.0f0])
Polynomial(a)
jverzani commented 2 years ago

Unfortunately, I can't diagnose this:

julia> a = CuVector([1.0f0, 1.0f0, 1.0f0])
ERROR: Could not find the CUDA driver library. Please make sure you have installed the NVIDIA driver for your GPU. [...]
ghralima commented 2 years ago

It seems this issue has been fixed somehow. It's working with CUDA.jl now.

jverzani commented 2 years ago

That's great. The issue was something I didn't know how to address on this end.