* test fixes

* address PR comment

* PR comment fixing Nvidia pass

* add additional kernel launch checks

* pr comments
Tento commit je obsažen v:
Paulius Velesko
2022-10-01 01:07:25 +03:00
odevzdal GitHub
rodič 609edf1c9e
revize da453211ed
94 změnil soubory, kde provedl 177 přidání a 34 odebrání
+1
Zobrazit soubor
@@ -29,6 +29,7 @@ TEMPLATE_TEST_CASE("ABM_AddKernel_MultiTypeMultiSize", "", int, long, float, lon
REQUIRE(res == hipSuccess);
hipLaunchKernelGGL(add<TestType>, 1, size, 0, 0, d_a, d_b, d_c, size);
HIP_CHECK(hipGetLastError());
res = hipMemcpy(a.data(), d_c, sizeof(TestType) * size, hipMemcpyDeviceToHost);
REQUIRE(res == hipSuccess);