From 435cb3b971d24129ff42a9db8344cf2f170dd81e Mon Sep 17 00:00:00 2001 From: Tom Deakin Date: Thu, 16 Jul 2015 17:30:13 +0100 Subject: [PATCH] Remove catching cl::Error in CUDA version --- cuda-stream.cu | 9 --------- 1 file changed, 9 deletions(-) diff --git a/cuda-stream.cu b/cuda-stream.cu index 5fcc56c..8f5082a 100644 --- a/cuda-stream.cu +++ b/cuda-stream.cu @@ -246,15 +246,6 @@ int main(int argc, char *argv[]) } } - // Catch OpenCL Errors and display information - catch (cl::Error& e) - { - std::cerr - << "Error: " - << e.what() - << "(" << e.err() << ")" - << std::endl; - } catch (std::exception& e) { std::cerr