Skip to content

Commit

Permalink
Merge pull request #1781 from pymor/fix_mpioperator_apply_adjoint
Browse files Browse the repository at this point in the history
Fix MPIOperator.apply_adjoint
  • Loading branch information
sdrave committed Oct 21, 2022
2 parents b662756 + e020a72 commit 8229a85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pymor/operators/mpi.py
Expand Up @@ -137,7 +137,7 @@ def apply_adjoint(self, V, mu=None):
mpi.call(mpi.function_call_manage, _MPIOperator_apply_adjoint, self.obj_id, V, V_ind, mu)
)
else:
return mpi.call(_MPIOperator_apply_adjoint, self.obj_id, V, V_ind, mu)
return mpi.call(mpi.function_call, _MPIOperator_apply_adjoint, self.obj_id, V, V_ind, mu)

def apply_inverse(self, V, mu=None, initial_guess=None, least_squares=False):
if not self.mpi_source or not self.mpi_range:
Expand Down

0 comments on commit 8229a85

Please sign in to comment.