Skip to content

Commit b37ef23

Browse files
committed
fix SYCL const
1 parent 1a55c7f commit b37ef23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/Base/AMReX_GpuDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ void
733733
Device::synchronize () noexcept
734734
{
735735
#ifdef AMREX_USE_SYCL
736-
for (auto const& s : gpu_stream_pool) {
736+
for (auto& s : gpu_stream_pool) {
737737
try {
738738
s.get().queue->wait_and_throw();
739739
} catch (sycl::exception const& ex) {

0 commit comments

Comments
 (0)