GOMC icon indicating copy to clipboard operation
GOMC copied to clipboard

OpenMP timing in windows

Open YounesN opened this issue 7 years ago • 0 comments

Currently in windows we use clock() which return the CPU time which is not feasible for OpenMP and returns the time actively spent on CPU (on all the threads). We need to implement the timing using functions like GetLocalTime() or GetSystemTime(). Using these functions we will get the wall time instead.

YounesN avatar May 18 '18 21:05 YounesN