Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
philsippl committed Sep 9, 2024
1 parent d082ea8 commit 8c38d16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iris-mpc-gpu/src/bin/nccl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ async fn main() -> eyre::Result<()> {
match party_id {
0 => {
comms[i].send(&slices[i], 1).unwrap();
comms[i].recv(&mut slices1[i], 0).unwrap();
comms[i].recv(&mut slices1[i], 1).unwrap();
}
1 => {
comms[i].recv(&mut slices1[i], 0).unwrap();
comms[i].send(&slices[i], 1).unwrap();
comms[i].send(&slices[i], 0).unwrap();
}
_ => unreachable!(),
};
Expand Down

0 comments on commit 8c38d16

Please sign in to comment.