| 349 | |
| 350 | template <class FAB> |
| 351 | void |
| 352 | FabArray<FAB>::ParallelCopyToGhost (const FabArray<FAB>& src, |
| 353 | int scomp, |
| 354 | int dcomp, |
| 355 | int ncomp, |
| 356 | const IntVect& snghost, |
| 357 | const IntVect& dnghost, |
| 358 | const Periodicity& period) |
| 359 | { |
| 360 | BL_PROFILE("FabArray::ParallelCopyToGhost()"); |
| 361 | |
| 362 | ParallelCopy_nowait(src, scomp, dcomp, ncomp, snghost, dnghost, period, |
| 363 | FabArrayBase::COPY, nullptr, true); |
| 364 | ParallelCopy_finish(); |
| 365 | } |
| 366 | |
| 367 | template <class FAB> |
| 368 | void |
no test coverage detected