Skip to content

Commit

Permalink
[HIPIFY][Linux][tests][fix] Fix Runtime test dealing with `unsigned…
Browse files Browse the repository at this point in the history
… long long` (`CUDA >= 12.0` tests affected)
  • Loading branch information
emankov committed Jun 11, 2024
1 parent 444703f commit f9cf30b
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 f9cf30b

Please sign in to comment.