Skip to content

Commit

Permalink
API updates relating to:
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgensd committed Apr 23, 2024
1 parent 3f3025b commit 83bccdf
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/adios4dolfinx/checkpointing.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,12 +396,8 @@ def read_function(
dofmap_sorted_by_input = recv_array[unrolled_dofmap_position]

# First invert input data to reference element then transform to current mesh
element.pre_apply_transpose_dof_transformation(
dofmap_sorted_by_input, input_perms_sorted, bs
)
element.pre_apply_inverse_transpose_dof_transformation(
dofmap_sorted_by_input, inc_perms, bs
)
element.Tt_apply(dofmap_sorted_by_input, input_perms_sorted, bs)
element.Tt_inv_apply(dofmap_sorted_by_input, inc_perms, bs)
# Compute invert permutation
inverted_perm = np.empty_like(unrolled_dofmap_position)
inverted_perm[unrolled_dofmap_position] = np.arange(
Expand Down

0 comments on commit 83bccdf

Please sign in to comment.