From 2582f0290a396305ee3b86fb544e999fd55fe323 Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Mon, 25 Jul 2016 22:43:49 +0200 Subject: Moved the XgemvFast and XgemvFastRot tuning database into a separate file --- src/tuning/kernels/xgemv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tuning/kernels') 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 -- cgit v1.2.3