Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/plugins/ucx/ucx_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -640,8 +640,8 @@ nixlUcxContext::warnAboutHardwareSupportMismatch() const {
<< "GPU memory is not supported.";
}

if (ucpVersion_ >= UCP_VERSION(1, 21)) {
// `UCS_MEMORY_TYPE_RDMA` is included in `memory_types` only from UCX 1.21
if (ucpVersion_ >= UCP_VERSION(1, 22)) {
// `UCS_MEMORY_TYPE_RDMA` to be checked explicitly only from UCX 1.22
Comment thread
ovidiusm marked this conversation as resolved.
if (hw_info.numIbDevices > 0 && !UCS_BIT_GET(attr.memory_types, UCS_MEMORY_TYPE_RDMA)) {
NIXL_WARN << hw_info.numIbDevices
<< " IB device(s) were detected, but accelerated IB support was not found! "
Expand Down
Loading