You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi all, it seems that an update to the Dropout layer at some point following Flux v0.12.10 caused an incompatibility with CUDA on Julia 1.6.0, CUDA.versioninfo():
CUDA toolkit 11.7, artifact installation
NVIDIA driver 470.57.2, for CUDA 11.4
CUDA driver 11.4
A minimal example
model =Chain(Dense(4,4), Dropout(0.1)) |> gpu
Flux.train!(Flux.params(model), [randn(4)|>gpu], ADAM(1e-1)) do x; model(x) |> sum; end
That line just calls rand!, so this ought to be reported to CUDA.jl. If I had to guess, toolkit 11.7 is too new and has some outstanding bugs when used with CUDA.jl.
Hi all, it seems that an update to the
Dropout
layer at some point following Fluxv0.12.10
caused an incompatibility with CUDA on Julia 1.6.0,CUDA.versioninfo()
:A minimal example
crashes with
The trace also includes the following line:
The text was updated successfully, but these errors were encountered: