starpu.suppr 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. {
  2. config.running is not racy from starpu_shutdown
  3. Helgrind:Race
  4. fun:starpu_shutdown
  5. ...
  6. }
  7. {
  8. config.running is not racy from _starpu_machine_is_running
  9. Helgrind:Race
  10. fun:_starpu_machine_is_running
  11. ...
  12. }
  13. {
  14. counterpart of the above
  15. Helgrind:Race
  16. fun:starpu_drivers_request_termination
  17. ...
  18. }
  19. {
  20. don't care about cache hit stats
  21. Helgrind:Race
  22. fun:_starpu_msi_cache_hit
  23. ...
  24. }
  25. {
  26. don't care about cache miss stats
  27. Helgrind:Race
  28. fun:_starpu_msi_cache_miss
  29. ...
  30. }
  31. {
  32. known race, but not problematic in practice, see comment in _starpu_tag_clear
  33. Helgrind:LockOrder
  34. ...
  35. fun:_starpu_tag_free
  36. fun:_starpu_htbl_clear_tags
  37. ...
  38. fun:_starpu_tag_clear
  39. fun:starpu_shutdown
  40. ...
  41. }
  42. {
  43. There is actually no race on current_mode, because the mode can not change unexpectedly, until _starpu_notify_data_dependencies() is called further down. Valgrind can not know about such software rwlock.
  44. Helgrind:Race
  45. fun:_starpu_release_data_on_node
  46. fun:_starpu_push_task_output
  47. ...
  48. }
  49. {
  50. We do not care about the race on the entry->mean variable, we only want a good-enough estimation.
  51. Helgrind:Race
  52. fun:_starpu_history_based_job_expected_perf
  53. ...
  54. }
  55. {
  56. We do not care about races on profiling statistics
  57. Helgrind:Race
  58. fun:starpu_profiling_status_get
  59. ...
  60. }
  61. {
  62. This is the counterpart of the suppression above.
  63. Helgrind:Race
  64. fun:starpu_profiling_status_set
  65. ...
  66. }
  67. {
  68. We do not care about races on profiling statistics
  69. Helgrind:Race
  70. fun:_starpu_worker_get_status
  71. fun:_starpu_worker_reset_profiling_info_with_lock
  72. ...
  73. }
  74. {
  75. This is racy, but since we'll always put the same values, this is not a problem.
  76. Helgrind:Race
  77. fun:_starpu_codelet_check_deprecated_fields
  78. ...
  79. }
  80. {
  81. This is racy, but we don't care, it's only a statistic
  82. Helgrind:Race
  83. fun:starpu_task_nsubmitted
  84. ...
  85. }
  86. {
  87. This is racy, but we don't care, it's only a statistic
  88. Helgrind:Race
  89. fun:starpu_task_nready
  90. ...
  91. }
  92. {
  93. fscanf error
  94. Memcheck:Cond
  95. ...
  96. fun:fscanf
  97. fun:_starpu_load_bus_performance_files
  98. ...
  99. }
  100. {
  101. This is racy, but we don't care, if the function was called a bit earlier we would have had a different value
  102. Helgrind:Race
  103. fun:_starpu_fifo_empty
  104. fun:pop_task_eager_policy
  105. ...
  106. }
  107. {
  108. This is the counterpart of the suppression above
  109. Helgrind:Race
  110. fun:_starpu_fifo_push_task
  111. fun:push_task_eager_policy
  112. ...
  113. }
  114. {
  115. This is the counterpart of the suppression above
  116. Helgrind:Race
  117. fun:_starpu_fifo_push_sorted_task
  118. fun:_starpu_fifo_push_task
  119. fun:push_task_eager_policy
  120. ...
  121. }