| 336 | |
| 337 | template <class FAB> |
| 338 | void |
| 339 | FabArray<FAB>::ParallelAdd (const FabArray<FAB>& src, int src_comp, int dest_comp, |
| 340 | int num_comp, const IntVect& snghost, const IntVect& dnghost, |
| 341 | const IntVect& offset, const Periodicity& period) |
| 342 | { |
| 343 | BL_PROFILE("FabArray::ParallelAdd()"); |
| 344 | |
| 345 | ParallelCopy_nowait(src,src_comp,dest_comp,num_comp,snghost,dnghost,offset,period, |
| 346 | FabArray::ADD); |
| 347 | ParallelCopy_finish(); |
| 348 | } |
| 349 | |
| 350 | template <class FAB> |
| 351 | void |
no test coverage detected