Skip to content

Commit

Permalink
Support multiple volumes in a discretization collection
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Mar 17, 2022
1 parent f42f141 commit d667283
Show file tree
Hide file tree
Showing 18 changed files with 1,329 additions and 666 deletions.
1 change: 1 addition & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def get_version():
"https://documen.tician.de/arraycontext/": None,
"https://documen.tician.de/meshmode/": None,
"https://documen.tician.de/loopy/": None,
"https://mpi4py.readthedocs.io/en/stable": None,
}

# index-page demo uses pyopencl via plot_directive
Expand Down
5 changes: 3 additions & 2 deletions grudge/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
import grudge.symbolic as sym
from grudge.execution import bind

from grudge.discretization import DiscretizationCollection
from grudge.discretization import (
DiscretizationCollection, make_discretization_collection)

__all__ = [
"sym", "bind", "DiscretizationCollection"
"sym", "bind", "DiscretizationCollection", "make_discretization_collection"
]
Loading

0 comments on commit d667283

Please sign in to comment.