Skip to content

Commit

Permalink
Fix up SYCL execution space instance creation for Intel GPUs
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed Apr 27, 2023
1 parent 15776f9 commit d5fa56e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/src/SYCL/Kokkos_SYCL_Instance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit d5fa56e

Please sign in to comment.