Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SYCL: Remove Workaround no longer needed #3455

Merged
merged 1 commit into from
Jul 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions Src/EB/AMReX_algoim_K.H
Original file line number Diff line number Diff line change
Expand Up @@ -571,19 +571,6 @@ struct ImplicitIntegral
new_free[e0] = false;
ImplicitIntegral<M-1,N,Phi,ImplicitIntegral<M,N,Phi,F,S>,false>
(phi, *this, new_free, newPsi, newPsiCount);

#if defined(AMREX_USE_SYCL)
#if AMREX_DEVICE_COMPILE
if constexpr (std::is_same<F,QuadratureRule>()) {
if (&f != &f_) {
// xxxxx SYCL todo The only purpose of the following
// statement is to work around a compiler bug. Nothing will
// actually be printed because &f == &f_.
AMREX_DEVICE_PRINTF("Work around compiler bug. %p %p\n", &f, &f_);
}
}
#endif
#endif
}
};

Expand Down
Loading