SWDEV-519340 - Enable and fix hipModuleLoad test (#607)

このコミットが含まれているのは:
systems-assistant[bot]
2025-11-12 09:28:49 +01:00
committed by GitHub
コミット f99baf5481
15個のファイルの変更66行の追加41行の削除
+2
ファイルの表示
@@ -40,6 +40,7 @@ THE SOFTWARE.
* - HIP_VERSION >= 7.1
*/
TEST_CASE("Unit_hipModuleLoadFatBinary_NegativeTsts") {
CTX_CREATE();
hipModule_t Module;
SECTION("fatCubin as nullptr") {
HIP_CHECK_ERROR(hipModuleLoadFatBinary(&Module, nullptr),
@@ -51,6 +52,7 @@ TEST_CASE("Unit_hipModuleLoadFatBinary_NegativeTsts") {
REQUIRE(Module != nullptr);
HIP_CHECK(hipModuleUnload(Module));
}
CTX_DESTROY();
}
#if HT_AMD
void loadKernelData(hipFunction_t kernel) {