Skip to content

Commit

Permalink
add inter-volume communication
Browse files Browse the repository at this point in the history
  • Loading branch information
majosm committed Sep 26, 2022
1 parent afc56b6 commit 3af1ca5
Show file tree
Hide file tree
Showing 3 changed files with 522 additions and 118 deletions.
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

0 comments on commit 3af1ca5

Please sign in to comment.