SWDEV-547526 - Add missing free calls (#531)

Co-authored-by: Vladana Stojiljkovic <Vladana.Stojiljkovic@amd.com>
Dieser Commit ist enthalten in:
systems-assistant[bot]
2025-11-13 11:16:41 +01:00
committet von GitHub
Ursprung 7450910e53
Commit 720a5bcf9a
2 geänderte Dateien mit 6 neuen und 7 gelöschten Zeilen
@@ -91,6 +91,7 @@ bool testCodeObjFile(const char* codeObjFile) {
HIP_CHECK(hipModuleLaunchKernel(Function, 1, 1, 1, LEN, 1, 1, 0, stream, NULL,
reinterpret_cast<void**>(&config)));
HIP_CHECK(hipStreamSynchronize(stream));
HIP_CHECK(hipStreamDestroy(stream));
HIP_CHECK(hipMemcpy(B, Bd, SIZE, hipMemcpyDeviceToHost));