summaryrefslogtreecommitdiff
path: root/src/routines/level1
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-07-19 16:24:14 +0200
committerCNugteren <web@cedricnugteren.nl>2015-07-19 16:24:14 +0200
commit48e2e96f1ba44e9b12a2449390bbbbd5e02777a3 (patch)
tree04d33841f31f6ef8bbf38c9cce15e9bbdbde01cc /src/routines/level1
parent4e499a67c1eb9f7cc4a79e75046aa0315b5df87d (diff)
Kernel caching is now based on a routine's name
Diffstat (limited to 'src/routines/level1')
-rw-r--r--src/routines/level1/xaxpy.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routines/level1/xaxpy.cc b/src/routines/level1/xaxpy.cc
index ed680856..e6b320d9 100644
--- a/src/routines/level1/xaxpy.cc
+++ b/src/routines/level1/xaxpy.cc
@@ -30,7 +30,7 @@ template <> const Precision Xaxpy<double2>::precision_ = Precision::kComplexDoub
// Constructor: forwards to base class constructor
template <typename T>
Xaxpy<T>::Xaxpy(CommandQueue &queue, Event &event):
- Routine(queue, event, "Xaxpy", {"Xaxpy"}, precision_) {
+ Routine(queue, event, "AXPY", {"Xaxpy"}, precision_) {
source_string_ =
#include "../../kernels/xaxpy.opencl"
;