aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench
diff options
context:
space:
mode:
authorGravatar mehdi-goli <mehdi.goli@codeplay.com>2020-05-11 16:10:33 +0100
committerGravatar mehdi-goli <mehdi.goli@codeplay.com>2020-05-11 16:10:33 +0100
commitd3e81db6c517e8c531cf9b32b818c838b5398e83 (patch)
treef282788cfa31c3cefb788c008e4f6019b3968f20 /bench
parentc1d944dd913d05180b7d2d1229072c9c52a11f29 (diff)
Eigen moved the `scanLauncehr` function inside the internal namespace.
This commit applies the following changes: - Moving the `scamLauncher` specialization inside internal namespace to fix compiler crash on TensorScan for SYCL backend. - Replacing `SYCL/sycl.hpp` to `CL/sycl.hpp` in order to follow SYCL 1.2.1 standard. - minor fixes: commenting out an unused variable to avoid compiler warnings.
Diffstat (limited to 'bench')
-rw-r--r--bench/tensors/tensor_benchmarks_sycl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/tensors/tensor_benchmarks_sycl.cc b/bench/tensors/tensor_benchmarks_sycl.cc
index b8a096684..6f9f87179 100644
--- a/bench/tensors/tensor_benchmarks_sycl.cc
+++ b/bench/tensors/tensor_benchmarks_sycl.cc
@@ -1,6 +1,6 @@
#ifdef EIGEN_USE_SYCL
-#include <SYCL/sycl.hpp>
+#include <CL/sycl.hpp>
#include <iostream>
#include "tensor_benchmarks.h"