SWDEV-1 - Add missing checks in hipMemset2D.cc

이 커밋은 다음에 포함됨:
Maneesh Gupta
2022-10-11 09:56:00 +05:30
커밋한 사람 GitHub
부모 711612d17f
커밋 b311d373d1
+3 -3
파일 보기
@@ -78,7 +78,7 @@ TEST_CASE("Unit_hipMemset2D_BasicFunctional") {
}
}
hipFree(A_d);
HIP_CHECK(hipFree(A_d));
free(A_h);
}
@@ -120,7 +120,7 @@ TEST_CASE("Unit_hipMemset2DAsync_BasicFunctional") {
}
}
hipFree(A_d);
HIP_CHECK(hipFree(A_d));
HIP_CHECK(hipStreamDestroy(stream));
free(A_h);
}
@@ -169,7 +169,7 @@ TEST_CASE("Unit_hipMemset2D_UniqueWidthHeight") {
}
}
hipFree(A_d);
HIP_CHECK(hipFree(A_d));
free(A_h);
}