Skip to content

Commit c4696fc

Browse files
committed
[SWDEV-467303][P1][ROCm QA][NPI][Mainline][QR][MI300X-O][Banff] Observing unit_tests failure while running hipify - HipClang UT
[HIPIFY][Linux][tests][fix] Fix `Runtime` test dealing with `unsigned long long` (`CUDA >= 12.0` tests affected) Change-Id: Ia66260a71b4729f518250cb71be5e50bd9c5b43e
1 parent 700d281 commit c4696fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit_tests/synthetic/runtime_functions.cu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1597,8 +1597,8 @@ int main() {
15971597
#if CUDA_VERSION >= 12000
15981598
// CUDA: extern __host__ cudaError_t CUDARTAPI cudaGraphExecGetFlags(cudaGraphExec_t graphExec, unsigned long long *flags);
15991599
// HIP: hipError_t hipGraphExecGetFlags(hipGraphExec_t graphExec, unsigned long long* flags);
1600-
// CHECK: result = hipGraphExecGetFlags(GraphExec_t, &ull);
1601-
result = cudaGraphExecGetFlags(GraphExec_t, &ull);
1600+
// CHECK: result = hipGraphExecGetFlags(GraphExec_t, &ull_2);
1601+
result = cudaGraphExecGetFlags(GraphExec_t, &ull_2);
16021602
#endif
16031603

16041604
#if CUDA_VERSION >= 12020

0 commit comments

Comments
 (0)