starpu.suppr 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. # StarPU --- Runtime system for heterogeneous multicore architectures.
  2. #
  3. # Copyright (C) 2012-2021 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
  4. #
  5. # StarPU is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU Lesser General Public License as published by
  7. # the Free Software Foundation; either version 2.1 of the License, or (at
  8. # your option) any later version.
  9. #
  10. # StarPU is distributed in the hope that it will be useful, but
  11. # WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. #
  14. # See the GNU Lesser General Public License in COPYING.LGPL for more details.
  15. #
  16. {
  17. don't care about cache hit stats
  18. Helgrind:Race
  19. fun:_starpu_msi_cache_hit
  20. ...
  21. }
  22. {
  23. don't care about cache miss stats
  24. Helgrind:Race
  25. fun:_starpu_msi_cache_miss
  26. ...
  27. }
  28. {
  29. known race, but not problematic in practice, see comment in _starpu_tag_clear
  30. Helgrind:LockOrder
  31. ...
  32. fun:_starpu_tag_free
  33. fun:_starpu_htbl_clear_tags
  34. ...
  35. fun:_starpu_tag_clear
  36. fun:starpu_shutdown
  37. ...
  38. }
  39. {
  40. 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.
  41. Helgrind:Race
  42. fun:_starpu_release_data_on_node
  43. fun:_starpu_push_task_output
  44. ...
  45. }
  46. {
  47. We do not care about races on profiling statistics
  48. Helgrind:Race
  49. fun:_starpu_worker_get_status
  50. fun:_starpu_worker_reset_profiling_info_with_lock
  51. ...
  52. }
  53. {
  54. This is racy, but since we'll always put the same values, this is not a problem.
  55. Helgrind:Race
  56. fun:_starpu_codelet_check_deprecated_fields
  57. ...
  58. }
  59. {
  60. This is racy, but we don't care, it's only a statistic
  61. Helgrind:Race
  62. fun:starpu_task_nsubmitted
  63. ...
  64. }
  65. {
  66. This is racy, but we don't care, it's only a statistic
  67. Helgrind:Race
  68. fun:starpu_task_nready
  69. ...
  70. }
  71. {
  72. This is racy, but we don't care, it's only a statistic
  73. Helgrind:Race
  74. fun:_starpu_bus_update_profiling_info
  75. ...
  76. }
  77. {
  78. fscanf error
  79. Memcheck:Cond
  80. ...
  81. fun:fscanf
  82. fun:_starpu_load_bus_performance_files
  83. ...
  84. }
  85. {
  86. locking order. It's not a problem when it's a trylock... but helgrind doesn't handle that :/ https://bugs.kde.org/show_bug.cgi?id=243232
  87. Helgrind:LockOrder
  88. fun:mutex_trylock_WRK
  89. ...
  90. }
  91. {
  92. locking order. It's not a problem when it's a trylock... but helgrind doesn't handle that :/ https://bugs.kde.org/show_bug.cgi?id=243232
  93. Helgrind:LockOrder
  94. fun:pthread_rwlock_trywrlock_WRK
  95. ...
  96. }
  97. {
  98. locking order. It's not a problem when it's a trylock... but helgrind doesn't handle that :/ https://bugs.kde.org/show_bug.cgi?id=243232
  99. Helgrind:LockOrder
  100. fun:pthread_rwlock_tryrdlock_WRK
  101. ...
  102. }
  103. {
  104. mc / handle locking order1
  105. Helgrind:LockOrder
  106. ...
  107. fun:__starpu_spin_lock
  108. fun:try_to_free_mem_chunk
  109. ...
  110. }
  111. {
  112. mc / handle locking order2
  113. Helgrind:LockOrder
  114. ...
  115. fun:__starpu_spin_lock
  116. fun:try_to_find_reusable_mem_chunk
  117. ...
  118. }
  119. {
  120. mc / handle locking order3
  121. Helgrind:LockOrder
  122. ...
  123. fun:__starpu_spin_lock
  124. fun:free_potentially_in_use_mc
  125. ...
  126. }
  127. {
  128. mc / handle locking order4
  129. Helgrind:LockOrder
  130. ...
  131. fun:__starpu_spin_lock
  132. fun:free_potentially_in_use_mc
  133. ...
  134. }
  135. {
  136. mc / handle locking order5
  137. Helgrind:LockOrder
  138. ...
  139. fun:__starpu_spin_lock
  140. fun:register_mem_chunk
  141. ...
  142. }
  143. {
  144. mc / handle locking order6
  145. Helgrind:LockOrder
  146. ...
  147. fun:__starpu_spin_lock
  148. fun:_starpu_request_mem_chunk_removal
  149. ...
  150. }
  151. {
  152. mc / handle locking order7
  153. Helgrind:LockOrder
  154. ...
  155. fun:__starpu_spin_lock
  156. fun:_starpu_allocate_interface
  157. ...
  158. }
  159. {
  160. mc / handle locking order8
  161. Helgrind:LockOrder
  162. ...
  163. fun:__starpu_spin_lock
  164. fun:_starpu_memchunk_recently_used
  165. ...
  166. }