Remove 0 size UBR (#1346)

ncclCommRegister, required for UBR, will call IB dmabuf regMr directly which forbids 0 size message

[ROCm/rccl commit: 40e93ebc29]
이 커밋은 다음에 포함됨:
Tim
2024-09-24 18:16:51 -04:00
커밋한 사람 GitHub
부모 56bc01cb83
커밋 94ac752578
+1 -1
파일 보기
@@ -90,7 +90,7 @@ namespace RcclUnitTesting
// Configuration
std::vector<ncclDataType_t> const& dataTypes = {ncclInt32, ncclFloat16, ncclFloat64};
std::vector<int> const numElements = {1048576, 53327, 1024, 0};
std::vector<int> const numElements = {1048576, 53327, 1024};
bool const inPlace = false;
bool const useManagedMem = false;
bool const userRegistered = true;