Skip to content

Commit

Permalink
Fix ops_sendrecv_test (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
chhwang authored Sep 5, 2023
1 parent 02ef336 commit d3fc54f
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions ark/ops/ops_sendrecv_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,10 @@ void test_sendrecv_internal()
exe.run(1);
exe.stop();

LOG(ark::INFO, "rank ", gpu_id, " done");

// int tmp[2];
// ark::IpcAllGather barrier{"test_sendrecv_barrier", gpu_id, 2,
// tmp,
// sizeof(int)};
// barrier.sync();
int tmp[2];
ark::IpcAllGather barrier{"test_sendrecv_barrier", gpu_id, 2, tmp,
sizeof(int)};
barrier.sync();
return ark::unittest::SUCCESS;
});
}
Expand Down

0 comments on commit d3fc54f

Please sign in to comment.