Skip to content

Commit

Permalink
[SWDEV-467303][P1][ROCm QA][NPI][Mainline][QR][MI300X-O][Banff] Obser…
Browse files Browse the repository at this point in the history
…ving 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
  • Loading branch information
emankov committed Jun 17, 2024
1 parent 700d281 commit c4696fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit_tests/synthetic/runtime_functions.cu
Original file line number Diff line number Diff line change
Expand Up @@ -1597,8 +1597,8 @@ int main() {
#if CUDA_VERSION >= 12000
// CUDA: extern __host__ cudaError_t CUDARTAPI cudaGraphExecGetFlags(cudaGraphExec_t graphExec, unsigned long long *flags);
// HIP: hipError_t hipGraphExecGetFlags(hipGraphExec_t graphExec, unsigned long long* flags);
// CHECK: result = hipGraphExecGetFlags(GraphExec_t, &ull);
result = cudaGraphExecGetFlags(GraphExec_t, &ull);
// CHECK: result = hipGraphExecGetFlags(GraphExec_t, &ull_2);
result = cudaGraphExecGetFlags(GraphExec_t, &ull_2);
#endif

#if CUDA_VERSION >= 12020
Expand Down

0 comments on commit c4696fc

Please sign in to comment.