summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2016-02-06 13:07:19 +0100
committerCNugteren <web@cedricnugteren.nl>2016-02-06 13:07:19 +0100
commitb7900652b2e4b4ed887b259e29ef5e660815c6f7 (patch)
treeb4d1acdff0c19518115b544fb7bcfe5d09a04196 /src
parentbb985f010bb3df88fd240b4e095c462d63248bd9 (diff)
Reduced the maximum workgroup-size for GEMV kernels further
Diffstat (limited to 'src')
-rw-r--r--src/tuning/xgemv.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tuning/xgemv.cc b/src/tuning/xgemv.cc
index c3cf9b7f..9861fb2b 100644
--- a/src/tuning/xgemv.cc
+++ b/src/tuning/xgemv.cc
@@ -60,7 +60,7 @@ class TuneXgemv {
// Sets the tuning parameters and their possible values
static void SetParameters(cltune::Tuner &tuner, const size_t id) {
- tuner.AddParameter(id, "WGS"+std::to_string(V), {64, 128, 256, 512});
+ tuner.AddParameter(id, "WGS"+std::to_string(V), {64, 128, 256});
tuner.AddParameter(id, "WPT"+std::to_string(V), {1, 2, 4});
if (V==2 || V==3) { tuner.AddParameter(id, "VW"+std::to_string(V), {1, 2, 4, 8}); }
}