From d5fa56e1d0d860dbc720091ab2f5c6115363976a Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Thu, 27 Apr 2023 15:20:27 +0000 Subject: [PATCH] Fix up SYCL execution space instance creation for Intel GPUs --- core/src/SYCL/Kokkos_SYCL_Instance.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/SYCL/Kokkos_SYCL_Instance.cpp b/core/src/SYCL/Kokkos_SYCL_Instance.cpp index ea7498565e..7f33a4f948 100644 --- a/core/src/SYCL/Kokkos_SYCL_Instance.cpp +++ b/core/src/SYCL/Kokkos_SYCL_Instance.cpp @@ -81,8 +81,7 @@ void SYCLInternal::initialize(const sycl::device& d) { initialize( sycl::queue{d, exception_handler, sycl::property::queue::in_order()}); #else - initialize( - sycl::queue{d, exception_handler); + initialize(sycl::queue{d, exception_handler}); #endif }