GOMC
GOMC copied to clipboard
OpenMP timing in windows
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.