summaryrefslogtreecommitdiff
path: root/src/tuning
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-04-21 22:12:20 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2017-04-21 22:12:20 +0200
commite41d20485676783879d0eeacb685a9459e0449fb (patch)
tree0bf848cf2d604e46a970bd7b620950f205c6ff35 /src/tuning
parent957aaae6ca725564de74f7e7710d28adb9caedbb (diff)
Increased the default number of runs for GEMV tuning; updated GEMV tuning results for Iris Pro
Diffstat (limited to 'src/tuning')
-rw-r--r--src/tuning/kernels/xgemv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tuning/kernels/xgemv.cpp b/src/tuning/kernels/xgemv.cpp
index 9f6821e9..9e9a6fe1 100644
--- a/src/tuning/kernels/xgemv.cpp
+++ b/src/tuning/kernels/xgemv.cpp
@@ -51,7 +51,7 @@ class TuneXgemv {
static size_t DefaultK() { return 1; } // N/A for this kernel
static size_t DefaultBatchCount() { return 1; } // N/A for this kernel
static double DefaultFraction() { return 1.0; } // N/A for this kernel
- static size_t DefaultNumRuns() { return 2; } // run every kernel this many times for averaging
+ static size_t DefaultNumRuns() { return 10; } // run every kernel this many times for averaging
// Describes how to obtain the sizes of the buffers
static size_t GetSizeX(const Arguments<T> &args) { return args.n; }