Sorting operator for struct StatData, such that it can be used in a map
| 134 | |
| 135 | // Sorting operator for struct StatData, such that it can be used in a map |
| 136 | bool operator<( const StatData& lhs, const StatData& rhs ) |
| 137 | { |
| 138 | if( lhs.deltaNanoSec < rhs.deltaNanoSec ) |
| 139 | return true; |
| 140 | else |
| 141 | return false; |
| 142 | } |
| 143 | |
| 144 | clsparseDeviceTimer& |
| 145 | clsparseDeviceTimer::getInstance( ) |
nothing calls this directly
no outgoing calls
no test coverage detected