diff options
author | Tim Besard <tim.besard@gmail.com> | 2011-11-02 15:11:59 +0100 |
---|---|---|
committer | Tim Besard <tim.besard@gmail.com> | 2011-11-02 15:11:59 +0100 |
commit | f9531223b72f8337b8d774c9e3a0d0b0f9ffcc7b (patch) | |
tree | 6942ff464682600061fde704ed13b50048fcc7d2 /src/Run.cpp | |
parent | ba67ca081a78a9dd6fb5f36f8d2bc2dea0f5224a (diff) |
Cleaning up a bit.
Diffstat (limited to 'src/Run.cpp')
-rw-r--r-- | src/Run.cpp | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/src/Run.cpp b/src/Run.cpp index dab1d11..0de55c8 100644 --- a/src/Run.cpp +++ b/src/Run.cpp @@ -9,23 +9,31 @@ * Douglas M. Pase - initial API and implementation * *******************************************************************************/ -#include <stdio.h> -#include <stdlib.h> +// +// Configuration +// + +// Implementation header +#include "Run.h" + +// System includes +#include <cstdio> +#include <cstdlib> #include <unistd.h> -#include <stddef.h> +#include <cstddef> #include <vector> - #if defined(NUMA) #include <numa.h> #endif -#include "Run.h" - +// Local includes #include <AsmJit/AsmJit.h> - -#include "Chain.h" #include "Timer.h" -#include "SpinBarrier.h" + + +// +// Implementation +// static double max(double v1, double v2); static double min(double v1, double v2); |