MCPcopy Create free account
hub / github.com/clMathLibraries/clFFT / getStdDev

Method getStdDev

src/statTimer/statisticalTimer.GPU.cpp:345–356  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

343}
344
345std::vector< StatData >
346GpuStatTimer::getStdDev( size_t id )
347{
348 std::vector< StatData > stddev = getVariance( id );
349
350 for( cl_uint v = 0; v < stddev.size( ); ++v )
351 {
352 stddev[ v ].doubleNanoSec = sqrt( stddev[ v ].doubleNanoSec );
353 }
354
355 return stddev;
356}
357
358std::vector< StatData >
359GpuStatTimer::getAverageTime( size_t id )

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected