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
I was under the impression that these used to return true
julia> cdev =cpu_device()
(::CPUDevice) (generic function with 2 methods)
julia>cdev(x) === x
false
julia> gdev =gpu_device()
(::CUDADevice{Nothing}) (generic function with 2 methods)
julia> a =gdev(x)
2-element CuArray{Float32, 1, CUDA.DeviceMemory}:0.0488401650.6700894
julia> a ===gdev(a)
false
The text was updated successfully, but these errors were encountered:
I was under the impression that these used to return true
The text was updated successfully, but these errors were encountered: