How is curandSetGeneratorOrdering taking effect?

Hi, Experts,

I got confused while trying to understand how is “order” working for different algorithms. The reason I’m saying this, is that I could not get a hint from the Kernel source code how is curandSetGeneratorOrdering taking effect, because seems there isn’t nowhere the “order” is being used. (I used “grep -in order .” in curand include folder, but got nothing.)
So my question is, how is curandSetGeneratorOrdering taking effect if I tried to use kernel directly?

Regards,
Fujun

The ordering parameter is described in the documentation:

[url]https://docs.nvidia.com/cuda/curand/host-api-overview.html#order[/url]

Thanks for your replying.