From f94e36f320c90d659da56839d9bc14e0ccc92350 Mon Sep 17 00:00:00 2001 From: James Price Date: Wed, 6 Jul 2016 17:16:35 +0100 Subject: [PATCH] [CUDA] Fix device name output (OpenCL->CUDA) --- CUDAStream.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CUDAStream.cu b/CUDAStream.cu index 21d36fa..802bb05 100644 --- a/CUDAStream.cu +++ b/CUDAStream.cu @@ -42,7 +42,7 @@ CUDAStream::CUDAStream(const unsigned int ARRAY_SIZE, const int device_index) check_error(); // Print out device information - std::cout << "Using OpenCL device " << getDeviceName(device_index) << std::endl; + std::cout << "Using CUDA device " << getDeviceName(device_index) << std::endl; std::cout << "Driver: " << getDeviceDriver(device_index) << std::endl; array_size = ARRAY_SIZE;