| 304 | |
| 305 | template <class FAB> |
| 306 | void |
| 307 | FabArray<FAB>::ParallelCopy (const FabArray<FAB>& src, |
| 308 | int scomp, |
| 309 | int dcomp, |
| 310 | int ncomp, |
| 311 | const IntVect& snghost, |
| 312 | const IntVect& dnghost, |
| 313 | const Periodicity& period, |
| 314 | CpOp op, |
| 315 | const FabArrayBase::CPC * a_cpc, |
| 316 | bool deterministic) |
| 317 | { |
| 318 | BL_PROFILE("FabArray::ParallelCopy()"); |
| 319 | |
| 320 | ParallelCopy_nowait(src, scomp, dcomp, ncomp, snghost, dnghost, period, op, a_cpc, |
| 321 | false, deterministic); |
| 322 | ParallelCopy_finish(); |
| 323 | } |
| 324 | |
| 325 | template <class FAB> |
| 326 | void |
no test coverage detected