GPUOpen-LibrariesAndSDKs / RadeonImageFilter

https://gpuopen.com/radeon-prorender-suite/
Other
48 stars 14 forks source link

Unit of performance statistic time #12

Closed Umio-Yasuno closed 3 years ago

Umio-Yasuno commented 3 years ago

RIF SDK has performance statistic feature. I examined them, execution_time uses nanosecond, compile_time uses millisecond. Is this result correct?

struct _rif_performance_statistic
{
    rif_uint64 execution_time;
    rif_bool measure_execution_time;
    rif_float  compile_time;
    rif_bool measure_compile_time;
};

https://github.com/GPUOpen-LibrariesAndSDKs/RadeonImageFilter/blob/master/include/RadeonImageFilters.h#L329