How to estimate time taken by cublas APIs? Does cutGetTimerValue() help?

Hi,

Can you provide me some information regarding “cutGetTimerValue function”.

As I want to estimate time taken by “cublas and cufft APIs”.
But don’t knw how to this?

And also, can anyone tell me are these APIs are able to give real time performance for video processing applications?

Thanks in advance :)

It actually show up in many SDK sample projects:

CUT_SAFE_CALL( cutCreateTimer( &timer));

CUT_SAFE_CALL( cutStartTimer( timer));

<>

CUT_SAFE_CALL( cutStopTimer( timer));

float time_slipped = cutGetTimerValue( timer)