SWDEV-515530 - Re-enable passing tests (#1013)
This commit is contained in:
+6
-1
@@ -93,8 +93,13 @@ TEST_CASE("Unit_hipLaunchCooperativeKernelMultiDevice_Negative_Parameters",
|
||||
}
|
||||
|
||||
SECTION("numDevices > device count") {
|
||||
#if HT_AMD
|
||||
HIP_CHECK_ERROR(hipLaunchCooperativeKernelMultiDevice(params_list.data(), device_count + 1, 0u),
|
||||
hipErrorInvalidDevice);
|
||||
#else
|
||||
HIP_CHECK_ERROR(hipLaunchCooperativeKernelMultiDevice(params_list.data(), device_count + 1, 0u),
|
||||
hipErrorInvalidValue);
|
||||
#endif
|
||||
}
|
||||
|
||||
SECTION("invalid flags") {
|
||||
@@ -158,4 +163,4 @@ TEST_CASE("Unit_hipLaunchCooperativeKernelMultiDevice_Negative_MultiKernelSameDe
|
||||
for (const auto params : params_list) {
|
||||
HIP_CHECK(hipStreamDestroy(params.stream));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user