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
julia> begin
a = rand(10000)
c=CuArray(a)
s = sort(c)
typeof(s)
end
Nothing
Manifest.toml
Paste your Manifest.toml here, or accurately describe which version of CUDA.jl and its dependencies (GPUArrays.jl, GPUCompiler.jl, LLVM.jl) you are using.
Expected behavior
Should return an array of same type as c the same way Base does.
julia> typeof(sort(a))
Vector{Float64} (alias for Array{Float64, 1})
Describe the bug
sort
returns nothing. Introduced by #1217To reproduce
The Minimal Working Example (MWE) for this bug:
Manifest.toml
Expected behavior
Should return an array of same type as
c
the same wayBase
does.Version info
Details on Julia:
Currently checked out head 9636915.
Details on CUDA:
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: