How to put all cuda cores to sleep for a fixed time?

Hi,

Is there a way I can put all cuda cores to sleep for a fixed time interval (say 10 msec)?

Thanks,
Neone

This sounds like an XY problem. What are you trying to accomplish?

If you want to ensure 10 msec of idle time on the GPU, issue a cudaDeviceSynchronize(), then sleep() for 10 msec before submitting new work to the GPU.