summaryrefslogtreecommitdiff
path: root/src/tuning/kernels
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-07-25 22:43:49 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-07-25 22:43:49 +0200
commit2582f0290a396305ee3b86fb544e999fd55fe323 (patch)
tree51f381cab79e365da5cd11b3ddbcb62e22daa618 /src/tuning/kernels
parent0252df731ab21d4acd5dfe53733e3c1bd0c18200 (diff)
Moved the XgemvFast and XgemvFastRot tuning database into a separate file
Diffstat (limited to 'src/tuning/kernels')
-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 96d4a5f2..7229602d 100644
--- a/src/tuning/kernels/xgemv.cpp
+++ b/src/tuning/kernels/xgemv.cpp
@@ -29,7 +29,7 @@ class TuneXgemv {
public:
// The representative kernel and the source code
- static std::string KernelFamily() { return "xgemv_"+std::to_string(V); }
+ static std::string KernelFamily() { return (V==1) ? "xgemv" : ((V==2) ? "xgemv_fast" : "xgemv_fast_rot"); }
static std::string KernelName() { return (V==1) ? "Xgemv" : ((V==2) ? "XgemvFast" : "XgemvFastRot"); }
static std::string GetSources() {
return