Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support coupled volumes #285

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
add inter-volume communication
  • Loading branch information
majosm committed May 25, 2023
commit deb2e46e006767d980318cda15a98e13fbd2b784
3 changes: 2 additions & 1 deletion grudge/eager.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ def nodal_max(self, dd, vec):
return op.nodal_max(self, dd, vec)


connected_ranks = op.connected_ranks
# FIXME: Deprecate connected_ranks instead of removing
connected_parts = op.connected_parts
interior_trace_pair = op.interior_trace_pair
cross_rank_trace_pairs = op.cross_rank_trace_pairs

Expand Down
10 changes: 8 additions & 2 deletions grudge/op.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,11 @@
interior_trace_pair,
interior_trace_pairs,
local_interior_trace_pair,
connected_ranks,
connected_parts,
inter_volume_trace_pairs,
local_inter_volume_trace_pairs,
cross_rank_trace_pairs,
cross_rank_inter_volume_trace_pairs,
bdry_trace_pair,
bv_trace_pair
)
Expand Down Expand Up @@ -147,8 +150,11 @@
"interior_trace_pair",
"interior_trace_pairs",
"local_interior_trace_pair",
"connected_ranks",
"connected_parts",
"inter_volume_trace_pairs",
"local_inter_volume_trace_pairs",
"cross_rank_trace_pairs",
"cross_rank_inter_volume_trace_pairs",
"bdry_trace_pair",
"bv_trace_pair",

Expand Down
Loading