vtk-m/benchmarking
Haocheng LIU 415252c662 Introduce asynchronous and device independent timer
The timer class now is asynchronous and device independent. it's using an
similiar API as vtkOpenGLRenderTimer with Start(), Stop(), Reset(), Ready(),
and GetElapsedTime() function. For convenience and backward compability, Each
Start() function call will call Reset() internally and each GetElapsedTime()
function call will call Stop() function if it hasn't been called yet for keeping
backward compatibility purpose.

Bascially it can be used in two modes:

* Create a Timer without any device info. vtkm::cont::Timer time;

  * It would enable timers for all enabled devices on the machine. Users can get a
specific elapsed time by passing a device id into the GetElapsedtime function.
If no device is provided, it would pick the maximum of all timer results - the
logic behind this decision is that if cuda is disabled, openmp, serial and tbb
roughly give the same results; if cuda is enabled it's safe to return the
maximum elapsed time since users are more interested in the device execution
time rather than the kernal launch time. The Ready function can be handy here
to query the status of the timer.

* Create a Timer with a device id. vtkm::cont::Timer time((vtkm::cont::DeviceAdapterTagCuda()));

  * It works as the old timer that times for a specific device id.
2019-02-05 12:01:56 -05:00
..
BenchmarkArrayTransfer.cxx Introduce asynchronous and device independent timer 2019-02-05 12:01:56 -05:00
BenchmarkAtomicArray.cxx Introduce asynchronous and device independent timer 2019-02-05 12:01:56 -05:00
BenchmarkCopySpeeds.cxx Introduce asynchronous and device independent timer 2019-02-05 12:01:56 -05:00
BenchmarkDeviceAdapter.cxx Introduce asynchronous and device independent timer 2019-02-05 12:01:56 -05:00
Benchmarker.h Misc. typos 2018-10-04 10:30:33 -04:00
BenchmarkFieldAlgorithms.cxx Introduce asynchronous and device independent timer 2019-02-05 12:01:56 -05:00
BenchmarkFilters.cxx Introduce asynchronous and device independent timer 2019-02-05 12:01:56 -05:00
BenchmarkRayTracing.cxx Introduce asynchronous and device independent timer 2019-02-05 12:01:56 -05:00
BenchmarkTopologyAlgorithms.cxx Introduce asynchronous and device independent timer 2019-02-05 12:01:56 -05:00
CMakeLists.txt Make a vtkm_worklet library 2019-01-23 17:09:15 -07:00