Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
WeiqunZhang committed Oct 15, 2024
1 parent d4532bf commit ff7e950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/FFT/AMReX_FFT.H
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ void R2C::post_forward_doit (F const& post_forward)
auto const& a = spectral_fab.array();
ParallelFor(spectral_fab.box(), [=] AMREX_GPU_DEVICE (int i, int j, int k)
{
post_forward(i,j,k,a(i,j,k));
post_forward(j,k,i,a(i,j,k)); // m_cz's ordering is z,x,y
});
}

Expand Down

0 comments on commit ff7e950

Please sign in to comment.