Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Cédric Chevalier <[email protected]>
  • Loading branch information
dssgabriel and cedricchevalier19 authored Apr 11, 2024
1 parent 68fee65 commit 19cfcef
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/KokkosComm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@

namespace KokkosComm {

template <Mode CommMode = Mode::Default, KokkosExecutionSpace ExecSpace,
template <KokkosExecutionSpace ExecSpace,KokkosView SendView,
Mode CommMode = Mode::Default>
KokkosView SendView>
Req isend(const ExecSpace &space, const SendView &sv, int dest, int tag,
MPI_Comm comm) {
Expand All @@ -41,7 +42,8 @@ Req isend(const ExecSpace &space, const SendView &sv, int dest, int tag,
}
}

template <Mode CommMode = Mode::Default, KokkosExecutionSpace ExecSpace,
template <KokkosExecutionSpace ExecSpace,KokkosView SendView,
Mode CommMode = Mode::Default>
KokkosView SendView>
void send(const ExecSpace &space, const SendView &sv, int dest, int tag,
MPI_Comm comm) {
Expand Down

0 comments on commit 19cfcef

Please sign in to comment.