diff --git a/include/RAJA/policy/sycl/scan.hpp b/include/RAJA/policy/sycl/scan.hpp index d194365350..a613714a13 100644 --- a/include/RAJA/policy/sycl/scan.hpp +++ b/include/RAJA/policy/sycl/scan.hpp @@ -24,17 +24,6 @@ #if defined(RAJA_ENABLE_SYCL) - -#include - -// #include - -// #include - -#include "RAJA/pattern/detail/algorithm.hpp" - -// #include "RAJA/policy/sycl/MemUtils_SYCL.hpp" - #include "RAJA/policy/sycl/policy.hpp" namespace RAJA diff --git a/test/functional/scan/CMakeLists.txt b/test/functional/scan/CMakeLists.txt index 73b4a64dbc..a90caa1012 100644 --- a/test/functional/scan/CMakeLists.txt +++ b/test/functional/scan/CMakeLists.txt @@ -5,7 +5,7 @@ # SPDX-License-Identifier: (BSD-3-Clause) ############################################################################### -# list(APPEND SCAN_BACKENDS Sequential) +list(APPEND SCAN_BACKENDS Sequential) if(RAJA_ENABLE_OPENMP) list(APPEND SCAN_BACKENDS OpenMP) @@ -24,7 +24,7 @@ if(RAJA_ENABLE_SYCL) endif() -set(SCAN_TYPES ExclusiveInplace Exclusive Inclusive InclusiveInplace) +set(SCAN_TYPES Exclusive ExclusiveInplace Inclusive InclusiveInplace) # # Generate scan tests for each enabled RAJA back-end.