summaryrefslogtreecommitdiff
path: root/samples
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2022-09-22 22:18:58 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2022-09-22 22:18:58 +0200
commitf7db4c5d45db1ebbc9cc824cbda652b88362574c (patch)
tree2dd9263f6f974cfb029e38f166ec94dd9979f125 /samples
parent521eee4bbfdaf9c15bbae97e65fa8f002453a384 (diff)
Replace the broken khronos registry link for cl.hpp with a new github link for opencl.hpp
Diffstat (limited to 'samples')
-rw-r--r--samples/dtrsm.cpp4
-rw-r--r--samples/sgemm.cpp4
-rw-r--r--samples/sgemm_batched.cpp4
-rw-r--r--samples/tuning_api.cpp4
4 files changed, 8 insertions, 8 deletions
diff --git a/samples/dtrsm.cpp b/samples/dtrsm.cpp
index 6d37dad7..979c01d9 100644
--- a/samples/dtrsm.cpp
+++ b/samples/dtrsm.cpp
@@ -23,8 +23,8 @@
#define CL_USE_DEPRECATED_OPENCL_1_2_APIS // to disable deprecation warnings
// 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.hpp"
+// https://raw.githubusercontent.com/KhronosGroup/OpenCL-CLHPP/main/include/CL/opencl.hpp
+#include "opencl.hpp"
// Includes the CLBlast library
#include <clblast.h>
diff --git a/samples/sgemm.cpp b/samples/sgemm.cpp
index ab7858e1..fce2af43 100644
--- a/samples/sgemm.cpp
+++ b/samples/sgemm.cpp
@@ -24,8 +24,8 @@
#define CL_USE_DEPRECATED_OPENCL_1_2_APIS // to disable deprecation warnings
// 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.hpp"
+// https://raw.githubusercontent.com/KhronosGroup/OpenCL-CLHPP/main/include/CL/opencl.hpp
+#include "opencl.hpp"
// Includes the CLBlast library
#include <clblast.h>
diff --git a/samples/sgemm_batched.cpp b/samples/sgemm_batched.cpp
index 32c465c7..a986eec7 100644
--- a/samples/sgemm_batched.cpp
+++ b/samples/sgemm_batched.cpp
@@ -24,8 +24,8 @@
#define CL_USE_DEPRECATED_OPENCL_1_2_APIS // to disable deprecation warnings
// 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.hpp"
+// https://raw.githubusercontent.com/KhronosGroup/OpenCL-CLHPP/main/include/CL/opencl.hpp
+#include "opencl.hpp"
// Includes the CLBlast library
#include <clblast.h>
diff --git a/samples/tuning_api.cpp b/samples/tuning_api.cpp
index f92b6909..ea75c7f9 100644
--- a/samples/tuning_api.cpp
+++ b/samples/tuning_api.cpp
@@ -20,8 +20,8 @@
#define CL_USE_DEPRECATED_OPENCL_1_2_APIS // to disable deprecation warnings
// 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.hpp"
+// https://raw.githubusercontent.com/KhronosGroup/OpenCL-CLHPP/main/include/CL/opencl.hpp
+#include "opencl.hpp"
// Includes the CLBlast library
#include <clblast.h>