Skip to content

Commit

Permalink
misc: Tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
EdCaunt committed Jan 8, 2025
1 parent 0d1b7d0 commit d9dea13
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def parallel(item, m):
args = ["-n", "1", pyversion, "-m", "pytest", "-s", "--runxfail", "-qq", testname]
if nprocs > 1:
args.extend([":", "-n", "%d" % (nprocs - 1), pyversion, "-m", "pytest",
"-s", "--runxfail", "--tb=no", "-qq", testname])
"-s", "--runxfail", "--tb=no", "-qq", "--no-summary", testname])
# OpenMPI requires an explicit flag for oversubscription. We need it as some
# of the MPI tests will spawn lots of processes
if mpi_distro == 'OpenMPI':
Expand Down
3 changes: 0 additions & 3 deletions devito/operations/interpolators.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,6 @@ def adjust_interp_indices(subdomain, mapper, smapper, cdmapper):
# into an empty rank. This depends on the injection field or interpolated
# expression, and so must be inserted here.
rank_populated = subdomain.distributor.rank_populated
# FIXME: This could be checked for the rank before looping over sparse
# footprint -> Can one nest ConditionalDimensions?
# FIXME: This is also only needed if the function is distributed

for d, cd in list(mapper.items()):
cond = cd.condition.subs(subs)
Expand Down

0 comments on commit d9dea13

Please sign in to comment.