Skip to content

Commit 98f1139

Browse files
committed
common: ignore inconsequential data-races
1 parent d94f87c commit 98f1139

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.clang-ignorelist

+8
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,11 @@ fun:*jit_avx_gemm_f32*
1616
# same across all threads.
1717
[thread]
1818
fun:*setting_t*
19+
# inconsequential data-race: to avoid overheads during verbose info print, we
20+
# check a non-atomic variable before the mutex protected initialization.
21+
[thread]
22+
fun:*pd_info_t*init*
23+
# Low impact: itt initializes lock inside critical region, which TSAN
24+
# flags as data race. tracked by ittapi #94
25+
[thread]
26+
fun:*__itt_string_handle_create*

0 commit comments

Comments
 (0)