Remove 0 size UBR (#1346)

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

[ROCm/rccl commit: 40e93ebc29]
Cette révision appartient à :
Tim
2024-09-24 18:16:51 -04:00
révisé par GitHub
Parent 56bc01cb83
révision 94ac752578
+1 -1
Voir le fichier
@@ -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;