MCPcopy Create free account
hub / github.com/clMathLibraries/clFFT / operator<

Function operator<

src/statTimer/statisticalTimer.GPU.cpp:124–130  ·  view source on GitHub ↗

Sorting operator for struct StatData, such that it can be used in a map

Source from the content-addressed store, hash-verified

122
123// Sorting operator for struct StatData, such that it can be used in a map
124bool operator<( const StatData& lhs, const StatData& rhs)
125{
126 if( lhs.deltaNanoSec < rhs.deltaNanoSec )
127 return true;
128 else
129 return false;
130}
131
132GpuStatTimer&
133GpuStatTimer::getInstance( )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected