SWDEV-460098 - Fix error codes for hipLaunchKernel APIs to match cuda (#206)

Co-authored-by: Branislav Brzak <branislav.brzak@amd.com>

[ROCm/hip-tests commit: ea8a7e1e54]
Este commit está contenido en:
Manocha, Rahul
2025-05-29 00:50:49 -07:00
cometido por GitHub
padre 6854570285
commit 98c34321f1
Se han modificado 5 ficheros con 29 adiciones y 26 borrados
@@ -205,7 +205,7 @@ TEST_CASE("Unit_hipModuleLaunchCooperativeKernel_Negative_Parameters") {
HIP_CHECK(hipStreamCreate(&stream));
HIP_CHECK(hipStreamDestroy(stream));
HIP_CHECK_ERROR(hipModuleLaunchCooperativeKernel(f, 1, 1, 1, 1, 1, 1, 0, stream, nullptr),
hipErrorInvalidValue);
hipErrorContextIsDestroyed);
}
#endif
}