Unreliable profiling info with cuda / hip backends
Open
bug
cuda
hip
- Dominant language
- LLVM
- Stars
- 1.5k
- Forks
- 854
- Avg merge
- 3d 17h
- Merged PRs (30d)
- 137
Description
Building and running `Basic/event_profiling_info.cpp` on cuda / hip backend could result in hitting the below asserts
```
auto Submit =
Event.get_profiling_info();
auto Start =
Event.get_profiling_info();
auto End =
Event.get_profiling_info();
assert(Submit <= Start);
assert(Start <= End);
```
in verifyProfiling function.
Please note the assert may come from any of the two kernels.
Contributor guide
Assessment
This issue has not been assessed yet.