5e4e7b41f1
* Update scripts/thread-sanitizer-suppr.txt
- ignore data race occasionally triggered by libamdhip64.so
* Update external/CMakeLists.txt
- configure PTL to use locks in task queues
* Update PTL submodule
- tweal to task queues to prevent data race from std::list next pointer
* Add scripts/setup-sanitizer-env.sh
- bash script that exports the {ASAN,LSAN,TSAN}_OPTIONS used by run-ci.py
* Update include/rocprofiler (doxygen)
- fix doxygen grouping
* Update docs workflow
- change concurrency group to be specific to workflow + ref
- this prevents separate PRs triggering this workflow from cancelling each other
17 lines
330 B
Plaintext
17 lines
330 B
Plaintext
#
|
|
# ThreadSanitizer suppressions file for rocprofiler project.
|
|
#
|
|
|
|
# leaked thread
|
|
thread:libhsa-runtime64.so
|
|
|
|
# data race in operator delete(void*)
|
|
race_top:libamdhip64.so
|
|
|
|
# unlock of an unlocked mutex (or by a wrong thread)
|
|
mutex:librocm_smi64.so
|
|
|
|
# google logging
|
|
race:google::LogMessageTime::CalcGmtOffset
|
|
race:tzset_internal
|