MATLAB: How gpuArray.randperm is implemented

randperm

I looked in to the docs but it doesn't have any reference to the algorithm.
Thank you.

Best Answer

randperm calls
[~,p] = sort(rand(1,N))
but obviously does everything on the GPU.