Following my previous question "What algorithm is Rand() based on in C language?", the reason why I want to know the algorithm of function is I want to make a comparison of speed difference between it with RdRand.
I tried to loop it 100 million times and calculate the running time of it.
Usually, using hardware to create random numbers (RdRand) would make its speed much faster, but the result shows the otherwise (Rand() 3sec V.S. RdRand 10sec).
Could somebody help me to figure this out?
Thanks a million!