-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Introduction of the
raft::device_resources_snmg
type (#2487)…
…" (#2543) This reverts commit fb6bfe6. Authors: - Corey J. Nolet (https://github.com/cjnolet) Approvers: - Divye Gala (https://github.com/divyegala) URL: #2543
- Loading branch information
Showing
5 changed files
with
223 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
/* | ||
* Copyright (c) 2024, NVIDIA CORPORATION. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#include <raft/core/device_resources.hpp> | ||
|
||
#include <rmm/mr/device/per_device_resource.hpp> | ||
#include <rmm/mr/device/pool_memory_resource.hpp> | ||
|
||
#include <nccl.h> | ||
|
||
/** | ||
* @brief Error checking macro for NCCL runtime API functions. | ||
* | ||
* Invokes a NCCL runtime API function call, if the call does not return ncclSuccess, throws an | ||
* exception detailing the NCCL error that occurred | ||
*/ | ||
#define RAFT_NCCL_TRY(call) \ | ||
do { \ | ||
ncclResult_t const status = (call); \ | ||
if (ncclSuccess != status) { \ | ||
std::string msg{}; \ | ||
SET_ERROR_MSG(msg, \ | ||
"NCCL error encountered at: ", \ | ||
"call='%s', Reason=%d:%s", \ | ||
#call, \ | ||
status, \ | ||
ncclGetErrorString(status)); \ | ||
throw raft::logic_error(msg); \ | ||
} \ | ||
} while (0); | ||
|
||
namespace raft::comms { | ||
void build_comms_nccl_only(raft::resources* handle, ncclComm_t nccl_comm, int num_ranks, int rank); | ||
} | ||
|
||
namespace raft::comms { | ||
|
||
struct nccl_clique { | ||
using pool_mr = rmm::mr::pool_memory_resource<rmm::mr::device_memory_resource>; | ||
|
||
/** | ||
* Instantiates a NCCL clique with all available GPUs | ||
* | ||
* @param[in] percent_of_free_memory percentage of device memory to pre-allocate as memory pool | ||
* | ||
*/ | ||
nccl_clique(int percent_of_free_memory = 80) | ||
: root_rank_(0), | ||
percent_of_free_memory_(percent_of_free_memory), | ||
per_device_pools_(0), | ||
device_resources_(0) | ||
{ | ||
cudaGetDeviceCount(&num_ranks_); | ||
device_ids_.resize(num_ranks_); | ||
std::iota(device_ids_.begin(), device_ids_.end(), 0); | ||
nccl_comms_.resize(num_ranks_); | ||
nccl_clique_init(); | ||
} | ||
|
||
/** | ||
* Instantiates a NCCL clique | ||
* | ||
* Usage example: | ||
* @code{.cpp} | ||
* int n_devices; | ||
* cudaGetDeviceCount(&n_devices); | ||
* std::vector<int> device_ids(n_devices); | ||
* std::iota(device_ids.begin(), device_ids.end(), 0); | ||
* cuvs::neighbors::mg::nccl_clique& clique(device_ids); // first device is the root rank | ||
* @endcode | ||
* | ||
* @param[in] device_ids list of device IDs to be used to initiate the clique | ||
* @param[in] percent_of_free_memory percentage of device memory to pre-allocate as memory pool | ||
* | ||
*/ | ||
nccl_clique(const std::vector<int>& device_ids, int percent_of_free_memory = 80) | ||
: root_rank_(0), | ||
num_ranks_(device_ids.size()), | ||
percent_of_free_memory_(percent_of_free_memory), | ||
device_ids_(device_ids), | ||
nccl_comms_(device_ids.size()), | ||
per_device_pools_(0), | ||
device_resources_(0) | ||
{ | ||
nccl_clique_init(); | ||
} | ||
|
||
void nccl_clique_init() | ||
{ | ||
RAFT_NCCL_TRY(ncclCommInitAll(nccl_comms_.data(), num_ranks_, device_ids_.data())); | ||
|
||
for (int rank = 0; rank < num_ranks_; rank++) { | ||
RAFT_CUDA_TRY(cudaSetDevice(device_ids_[rank])); | ||
|
||
// create a pool memory resource for each device | ||
auto old_mr = rmm::mr::get_current_device_resource(); | ||
per_device_pools_.push_back(std::make_unique<pool_mr>( | ||
old_mr, rmm::percent_of_free_device_memory(percent_of_free_memory_))); | ||
rmm::cuda_device_id id(device_ids_[rank]); | ||
rmm::mr::set_per_device_resource(id, per_device_pools_.back().get()); | ||
|
||
// create a device resource handle for each device | ||
device_resources_.emplace_back(); | ||
|
||
// add NCCL communications to the device resource handle | ||
raft::comms::build_comms_nccl_only( | ||
&device_resources_[rank], nccl_comms_[rank], num_ranks_, rank); | ||
} | ||
|
||
for (int rank = 0; rank < num_ranks_; rank++) { | ||
RAFT_CUDA_TRY(cudaSetDevice(device_ids_[rank])); | ||
raft::resource::sync_stream(device_resources_[rank]); | ||
} | ||
} | ||
|
||
const raft::device_resources& set_current_device_to_root_rank() const | ||
{ | ||
int root_device_id = device_ids_[root_rank_]; | ||
RAFT_CUDA_TRY(cudaSetDevice(root_device_id)); | ||
return device_resources_[root_rank_]; | ||
} | ||
|
||
~nccl_clique() | ||
{ | ||
#pragma omp parallel for // necessary to avoid hangs | ||
for (int rank = 0; rank < num_ranks_; rank++) { | ||
cudaSetDevice(device_ids_[rank]); | ||
ncclCommDestroy(nccl_comms_[rank]); | ||
rmm::cuda_device_id id(device_ids_[rank]); | ||
rmm::mr::set_per_device_resource(id, nullptr); | ||
} | ||
} | ||
|
||
int root_rank_; | ||
int num_ranks_; | ||
int percent_of_free_memory_; | ||
std::vector<int> device_ids_; | ||
std::vector<ncclComm_t> nccl_comms_; | ||
std::vector<std::shared_ptr<pool_mr>> per_device_pools_; | ||
std::vector<raft::device_resources> device_resources_; | ||
}; | ||
|
||
} // namespace raft::comms |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.