What is the accuracy of cudaEventElapsedTime ()?

Let's say I call cudaEventElapsedTime()and get the return value 0.123456. Then what exact time does he offer?

+3
source share
1 answer

As indicated in the documentation , the function cudaEventElapsedTimereturns the elapsed time between two events in milliseconds. It has a resolution of about 0.5 microseconds.

So, the value 0.123456indicates that the elapsed time between the indicated events is 0.123456milliseconds.

+6
source

All Articles