Forráskód Böngészése

update TSAN suppressions

Samuel Thibault 10 éve
szülő
commit
5305901813
1 módosított fájl, 19 hozzáadás és 3 törlés
  1. 19 3
      tools/tsan/starpu.suppr

+ 19 - 3
tools/tsan/starpu.suppr

@@ -1,4 +1,20 @@
-# The config.running state is only protected by memory barriers
-race:_starpu_machine_is_running
+# don't care about cache hit stats
+race: ^_starpu_msi_cache_hit$
+race: ^_starpu_msi_cache_miss$
+
+# The config.running/pause_depth state is only protected by memory barriers
+race:^_starpu_machine_is_running$
+race:^_starpu_kill_all_workers$
+race:^_starpu_pause$
+race:^_starpu_may_pause$
+race:^_starpu_resume$
+
 # The integer access is atomic, and we use the sched mutex to avoid missing wake ups
-race:_starpu_fifo_empty
+race:^_starpu_fifo_empty$
+race:^push_task_eager_policy$
+
+# These are just statistics
+race: ^starpu_memory_get_available$
+race: ^mc_cache_size$
+race: ^mc_nb$
+race: ^mc_clean_nb$