Commit fb97bcd0 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Benchmarks: return the mean time instead of total time

parent 726cf4b1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ timeFunction( ComputeFunction compute,
      timer.stop();
   }

   return timer.getRealTime();
   return timer.getRealTime() / loops;
}