SWDEV-466622 - Added fix for Unit_hipMallocArray_happy test

Change-Id: I9b647aff69ba92f97b2ca17eac49d58ae63fa858


[ROCm/hip-tests commit: 3acc6a4020]
This commit is contained in:
Ioannis Assiouras
2024-06-07 13:39:54 +01:00
کامیت شده توسط Rakesh Roy
والد 274601814c
کامیت a6afaec892
2فایلهای تغییر یافته به همراه4 افزوده شده و 4 حذف شده
@@ -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",
@@ -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);
}