We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98aab7b commit b2261bcCopy full SHA for b2261bc
pyop2/base.py
@@ -2410,14 +2410,14 @@ def needs_halo_update(self, val):
2410
d.needs_halo_update = val
2411
2412
@collective
2413
- def halo_exchange_begin(self):
+ def halo_exchange_begin(self, reverse=False):
2414
for s in self._dats:
2415
- s.halo_exchange_begin()
+ s.halo_exchange_begin(reverse)
2416
2417
2418
- def halo_exchange_end(self):
+ def halo_exchange_end(self, reverse=False):
2419
2420
- s.halo_exchange_end()
+ s.halo_exchange_end(reverse)
2421
2422
2423
def zero(self, subset=None):
0 commit comments