Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Binyang2014 committed Dec 3, 2024
1 parent 29b799d commit 0d6af1d
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion apps/nccl/src/nccl.cu
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,6 @@ NCCL_API ncclResult_t ncclCommInitRank(ncclComm_t* comm, int nranks, ncclUniqueI
}
for (const auto& entry : std::filesystem::directory_iterator(collectiveDir)) {
if (entry.is_regular_file()) {
std::string filename = entry.path().filename().string();
auto plan = loadExecutionPlan(entry.path());
commPtr->executionPlans[plan.first].push_back(plan.second);
}
Expand Down
2 changes: 1 addition & 1 deletion test/execution-files/allreduce.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "allreduce_pairs",
"colletive": "allreduce",
"collective": "allreduce",
"protocol": "Simple",
"inplace": true,
"num_threads_per_block": 512,
Expand Down
2 changes: 1 addition & 1 deletion test/execution-files/allreduce_nvls.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "allreduce_nvls",
"colletive": "allreduce",
"collective": "allreduce",
"protocol": "Simple",
"inplace": true,
"gpus": [
Expand Down
2 changes: 1 addition & 1 deletion test/execution-files/allreduce_packet.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "allreduce_pairs",
"colletive": "allreduce",
"collective": "allreduce",
"protocol": "LL",
"inplace": true,
"num_threads_per_block": 768,
Expand Down
2 changes: 1 addition & 1 deletion test/execution-files/sendrecv.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "send_recv",
"colletive": "sendrecv",
"collective": "sendrecv",
"protocol": "Simple",
"inplace": false,
"gpus": [
Expand Down
2 changes: 1 addition & 1 deletion test/execution-files/sendrecv_packet.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "send_recv",
"colletive": "sendrecv",
"collective": "sendrecv",
"protocol": "LL",
"inplace": false,
"gpus": [
Expand Down

0 comments on commit 0d6af1d

Please sign in to comment.