summaryrefslogtreecommitdiff
path: root/include/clblast_cuda.h
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2018-01-06 13:38:44 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2018-01-06 13:38:44 +0100
commitad197da08da7ef414db90dbb97e92c575363c280 (patch)
tree3c218ba650511ba8525f8f3c9bc6fa3c5ec24412 /include/clblast_cuda.h
parente71c037304e73b85c2d67bc612a45e1e28b5a227 (diff)
Fixed the CUDA interface: replaced nullptr with 0
Diffstat (limited to 'include/clblast_cuda.h')
-rw-r--r--include/clblast_cuda.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clblast_cuda.h b/include/clblast_cuda.h
index e0d1d638..e1237936 100644
--- a/include/clblast_cuda.h
+++ b/include/clblast_cuda.h
@@ -494,7 +494,7 @@ StatusCode Gemm(const Layout layout, const Transpose a_transpose, const Transpos
const T beta,
CUdeviceptr c_buffer, const size_t c_offset, const size_t c_ld,
const CUcontext context, const CUdevice device,
- CUdeviceptr temp_buffer = nullptr);
+ CUdeviceptr temp_buffer = 0);
// Symmetric matrix-matrix multiplication: SSYMM/DSYMM/CSYMM/ZSYMM/HSYMM
template <typename T>