summaryrefslogtreecommitdiff
path: root/src/utilities
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-12-24 12:10:55 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-12-24 12:10:55 +0100
commitbd540829ea1954c3b367ec70aa8c5811b643422b (patch)
treed58a47f265bc256949182172997af7b4d5c6faec /src/utilities
parent8657e90cf848a827c09b9dd5c3d4c2eab5c7037e (diff)
Fixes for the CUDA backend of CLBlast
Diffstat (limited to 'src/utilities')
-rw-r--r--src/utilities/compile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utilities/compile.cpp b/src/utilities/compile.cpp
index a3b90126..c1d921a4 100644
--- a/src/utilities/compile.cpp
+++ b/src/utilities/compile.cpp
@@ -59,7 +59,7 @@ Program CompileFromSource(const std::string &source_string, const Precision prec
// Optionally adds a translation header from OpenCL kernels to CUDA kernels
#ifdef CUDA_API
- source_string +=
+ header_string +=
#include "kernels/opencl_to_cuda.h"
;
#endif