SWDEV-466622 - Added fix for Unit_hipMallocArray_happy test

Change-Id: I9b647aff69ba92f97b2ca17eac49d58ae63fa858
Este commit está contenido en:
Ioannis Assiouras
2024-06-07 13:39:54 +01:00
cometido por Rakesh Roy
padre 59471ab86b
commit 3acc6a4020
Se han modificado 2 ficheros con 4 adiciones y 4 borrados
-2
Ver fichero
@@ -1390,8 +1390,6 @@
"Unit_hipMallocManaged_HostDeviceConcurrent",
"Unit_hipMallocManaged_MultiThread",
"Unit_hipMemcpyAsync_H2H-H2D-D2H-H2PinMem - double",
"Unit_hipMallocArray_happy - int4",
"Unit_hipMallocArray_happy - float4",
"=== SWDEV-437982:Below test failed in stress test on 08/12/23 ===",
"Unit_hipDeviceGetPCIBusId_Functional",
"Unit_hipDrvMemcpy_Functional",
+4 -2
Ver fichero
@@ -58,9 +58,11 @@ template <typename T> void checkDataIsAscending(const std::vector<T>& hostData)
size_t i = 0;
for (; i < hostData.size(); ++i) {
allMatch = allMatch && hostData[i] == static_cast<T>(i);
if (!allMatch) break;
if (!allMatch) {
INFO("hostData[" << i << "] == " << static_cast<T>(hostData[i]));
break;
}
}
INFO("hostData[" << i << "] == " << static_cast<T>(hostData[i]));
REQUIRE(allMatch);
}