summaryrefslogtreecommitdiff
path: root/samples
diff options
context:
space:
mode:
authorcnugteren <web@cedricnugteren.nl>2016-03-30 16:24:38 -0700
committercnugteren <web@cedricnugteren.nl>2016-03-30 16:24:38 -0700
commit6578102ae996ce0aa52b45704f38c1cd5a10d3c0 (patch)
treee02694a1b3d69a706353cfdd271ce4367bd92064 /samples
parentc1df78676471a8a26ea8ec5a092734566d490db4 (diff)
CMake now downloads the cl.hpp header from the Khronos website when building the samples
Diffstat (limited to 'samples')
-rw-r--r--samples/sgemm.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/samples/sgemm.cc b/samples/sgemm.cc
index 8f33b6ad..785b051c 100644
--- a/samples/sgemm.cc
+++ b/samples/sgemm.cc
@@ -8,8 +8,8 @@
// Cedric Nugteren <www.cedricnugteren.nl>
//
// This file demonstrates the use of the SGEMM routine. It is a stand-alone example, but it does
-// requires the Khronos C++ OpenCL API header file (not included). The example uses C++ features,
-// but CLBlast can also be used using the regular C-style OpenCL API.
+// require the Khronos C++ OpenCL API header file (downloaded by CMake). The example uses C++
+// features, but CLBlast can also be used using the regular C-style OpenCL API.
//
// Note that this example is meant for illustration purposes only. CLBlast provides other programs
// for performance benchmarking ('client_xxxxx') and for correctness testing ('test_xxxxx').
@@ -22,7 +22,7 @@
// Includes the C++ OpenCL API. If not yet available, it can be found here:
// https://www.khronos.org/registry/cl/api/1.1/cl.hpp
-#include <CL/cl.hpp>
+#include "cl.hpp"
// Includes the CLBlast library
#include <clblast.h>