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

Fix argument ordering in multipole BCs #2525

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
6 changes: 3 additions & 3 deletions Source/gravity/Gravity_util.H
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,12 @@ void multipole_symmetric_add(Real x, Real y, Real z,
const GpuArray<Real, AMREX_SPACEDIM>& problo,
const GpuArray<Real, AMREX_SPACEDIM>& probhi,
Real rho, Real vol,
Array4<Real> const& qU0,
Array4<Real> const& qUC,
Array4<Real> const& qUS,
Array4<Real> const& qL0,
Array4<Real> const& qLC,
Array4<Real> const& qLS,
Array4<Real> const& qU0,
Array4<Real> const& qUC,
Array4<Real> const& qUS,
int npts, int nlo, int index,
amrex::Gpu::Handler const& handler)
{
Expand Down
Loading