starpu.suppr 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # Disabled checking
  2. race:^active_hook_cnt$
  3. race:^worker_exp_start$
  4. race:^worker_exp_end$
  5. race:^worker_exp_len$
  6. race:^ntasks$
  7. race:^mc_cache_size$
  8. race:^mc_nb$
  9. race:^mc_clean_nb$
  10. race:^data_requests$
  11. race:^prefetch_requests$
  12. race:^idle_requests$
  13. race:^data_requests_npending$
  14. race:^used_size$
  15. race:^hit_cnt$
  16. race:^miss_cnt$
  17. race:^alloc_cache_hit_cnt$
  18. race:^alloc_cnt$
  19. race:^comm_amount$
  20. race:^_starpu_valgrind_print_once$
  21. race:^_starpu_silent$
  22. # don't care about cache hit stats
  23. race:^_starpu_msi_cache_hit$
  24. race:^_starpu_msi_cache_miss$
  25. # This is racy, but since we'll always put the same values, this is not a problem.
  26. race:^_starpu_codelet_check_deprecated_fields$
  27. # This is racy, but we don't care, it's only a statistic
  28. race:^starpu_task_nsubmitted$
  29. race:^starpu_task_nready$
  30. race:^_starpu_bus_update_profiling_info$
  31. # The config.running/pause_depth state is only protected by memory barriers
  32. race:^_starpu_machine_is_running$
  33. race:^_starpu_kill_all_workers$
  34. race:^starpu_pause$
  35. race:^_starpu_may_pause$
  36. race:^starpu_resume$
  37. # worker_is_initialized is not actually racy since deinit happens only after main set running to 0
  38. race:^_starpu_opencl_driver_deinit$
  39. race:^_starpu_cuda_driver_deinit$
  40. race:^_starpu_cpu_driver_deinit$
  41. # The integer access is atomic, and we use the sched mutex to avoid missing wake ups
  42. race:^_starpu_fifo_empty$
  43. race:^push_task_eager_policy$
  44. # These are just statistics
  45. race:^starpu_memory_get_available$
  46. race:^_starpu_profiling$
  47. race:^_starpu_history_based_job_expected_perf$
  48. race:^compute_ntasks_end$
  49. race:^compute_expected_end$
  50. race:^compute_all_performance_predictions$
  51. # There is actually no race with busy_count, see comment
  52. race:_starpu_data_unregister
  53. # ignore other libraries' races
  54. called_from_lib:^libmpi.so$
  55. called_from_lib:^libhwloc*.so$