SWDEV-1 - Fix warnings while building tests (#201)

Change-Id: I7faf3446f8c9dafbbfc6bab4c6c1b756f0e4219d
이 커밋은 다음에 포함됨:
Maneesh Gupta
2023-03-14 21:42:20 +05:30
커밋한 사람 GitHub
부모 a25ea2ca40
커밋 ac4267e21e
13개의 변경된 파일46개의 추가작업 그리고 39개의 파일을 삭제
+2 -2
파일 보기
@@ -133,7 +133,7 @@ void checkStreamCaptureStatus(hipStreamCaptureMode mode, hipStream_t stream) {
REQUIRE(graphExec != nullptr);
// Replay the recorded sequence multiple times
for (int i = 0; i < kLaunchIters; i++) {
for (size_t i = 0; i < kLaunchIters; i++) {
std::fill_n(A_h.host_ptr(), N, static_cast<float>(i));
HIP_CHECK(hipGraphLaunch(graphExec, stream));
HIP_CHECK(hipStreamSynchronize(stream));
@@ -209,4 +209,4 @@ TEST_CASE("Unit_hipStreamIsCapturing_Positive_Thread") {
HIP_CHECK(hipStreamEndCapture(stream, &graph));
HIP_CHECK(hipGraphDestroy(graph));
}
}