Skip to content

Commit

Permalink
Merge branch 'build-production-actx-init' into production-actx-init
Browse files Browse the repository at this point in the history
  • Loading branch information
MTCam committed Jun 30, 2023
2 parents 174ae2d + 9863b5b commit 3cea3f0
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions examples/combozzle-mpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@
import numpy as np
from functools import partial

from meshmode.array_context import PyOpenCLArrayContext

from meshmode.mesh import BTAG_ALL, BTAG_NONE # noqa
from grudge.shortcuts import make_visualizer
from grudge.dof_desc import BoundaryDomainTag, DISCR_TAG_QUAD
Expand Down Expand Up @@ -160,9 +158,8 @@ def __call__(self, x_vec, *, time=0.0):


@mpi_entry_point
def main(use_logmgr=True,
def main(actx_class, use_logmgr=True, rst_filename=None,
use_overintegration=False, casename=None,
rst_filename=None, actx_class=PyOpenCLArrayContext,
log_dependent=False, input_file=None,
force_eval=True, use_esdg=False):
"""Drive example."""
Expand Down Expand Up @@ -1302,9 +1299,9 @@ def dummy_rhs(t, state):

print(f"Calling main: {time.ctime(time.time())}")

main(use_logmgr=args.log, use_leap=args.leap, input_file=input_file,
main(actx_class, use_logmgr=args.log, input_file=input_file,
use_overintegration=args.overintegration or args.esdg,
casename=casename, rst_filename=rst_filename, actx_class=actx_class,
casename=casename, rst_filename=rst_filename,
log_dependent=log_dependent, force_eval=force_eval, use_esdg=args.esdg)

# vim: foldmethod=marker

0 comments on commit 3cea3f0

Please sign in to comment.