Skip to content

Commit

Permalink
Remove unneeded code
Browse files Browse the repository at this point in the history
  • Loading branch information
chhwang committed Jun 29, 2023
1 parent b06043b commit 484c6c9
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions test/mscclpp-test/allreduce_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,6 @@ class AllReduceTestEngine : public BaseTestEngine {
~AllReduceTestEngine() = default;

void allocateBuffer() override;
std::shared_ptr<mscclpp::BaseProxyService> createChannelService() override;
void setupConnections() override;

bool isUsePacket() const;
Expand Down Expand Up @@ -697,14 +696,6 @@ void AllReduceTestEngine::allocateBuffer() {
expectedBuff_ = std::shared_ptr<int[]>(new int[args_.maxBytes / sizeof(int)]);
}

std::shared_ptr<mscclpp::BaseProxyService> AllReduceTestEngine::createChannelService() {
if (isUsePacket()) {
return std::make_shared<mscclpp::ProxyService>(*comm_);
} else {
return std::make_shared<mscclpp::ProxyService>(*comm_);
}
}

void AllReduceTestEngine::setupConnections() {
if (isUsePacket()) {
std::vector<mscclpp::SmChannel> smChannels;
Expand Down

0 comments on commit 484c6c9

Please sign in to comment.