diff --git a/latest/gpu.html b/latest/gpu.html index 4236dd9e..0de021b6 100644 --- a/latest/gpu.html +++ b/latest/gpu.html @@ -37,4 +37,14 @@ julia> m(x) Tracked 5-element CuArray{Float32,1}: -0.30535 ⋮ - -0.618002
The analogue cpu
is also available for moving models and data back off of the GPU.
``` julia> x = rand(10) |> gpu 10-element CuArray{Float32,1}: 0.235164 ⋮ 0.192538
julia> x |> cpu 10-element Array{Float32,1}: 0.235164 ⋮ 0.192538 ```