summaryrefslogtreecommitdiff
path: root/src/tuning/kernels/transpose_fast.cpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-10-02 21:23:23 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-10-02 21:23:23 +0200
commit243cef73db53b5d8ce6c55f95e18c4412539d210 (patch)
treede1412505268b314e9943148e3e9b578412c9134 /src/tuning/kernels/transpose_fast.cpp
parentd8827e908cd7ff70e1bf294468c12e76c749317e (diff)
Set the default number of runs for all kernels to at least 2 runs
Diffstat (limited to 'src/tuning/kernels/transpose_fast.cpp')
-rw-r--r--src/tuning/kernels/transpose_fast.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tuning/kernels/transpose_fast.cpp b/src/tuning/kernels/transpose_fast.cpp
index 8d39ead7..2d9d5e49 100644
--- a/src/tuning/kernels/transpose_fast.cpp
+++ b/src/tuning/kernels/transpose_fast.cpp
@@ -47,7 +47,7 @@ class TuneTranspose {
static size_t DefaultN() { return 1024; }
static size_t DefaultK() { return 1; } // N/A for this kernel
static double DefaultFraction() { return 1.0; } // N/A for this kernel
- static size_t DefaultNumRuns() { return 1; } // run every kernel this many times for averaging
+ static size_t DefaultNumRuns() { return 2; } // run every kernel this many times for averaging
// Describes how to obtain the sizes of the buffers
static size_t GetSizeX(const Arguments<T> &) { return 1; } // N/A for this kernel