Skip to content

Commit

Permalink
No tiling
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpkatz committed Oct 9, 2023
1 parent 1d0b36a commit 66ec1fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/radiation/Radiation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,8 @@ void Radiation::extrapolateBorders(MultiFab& f, int indx)
#pragma omp parallel
#endif
for (MFIter mfi(f); mfi.isValid(); ++mfi) {
const Box& bx = mfi.tilebox();
// Note no tiling in the current implementation.
const Box& bx = mfi.box();
const Box& grownbx = amrex::grow(bx, 1);

Array4<Real> const f_arr = f[mfi].array(indx);
Expand Down

0 comments on commit 66ec1fa

Please sign in to comment.