starpu.suppr 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. don't care about cache hit stats
  3. Helgrind:Race
  4. fun:_starpu_msi_cache_hit
  5. ...
  6. }
  7. {
  8. don't care about cache miss stats
  9. Helgrind:Race
  10. fun:_starpu_msi_cache_miss
  11. ...
  12. }
  13. {
  14. known race, but not problematic in practice, see comment in _starpu_tag_clear
  15. Helgrind:LockOrder
  16. ...
  17. fun:_starpu_tag_free
  18. fun:_starpu_htbl_clear_tags
  19. ...
  20. fun:_starpu_tag_clear
  21. fun:starpu_shutdown
  22. ...
  23. }
  24. {
  25. 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.
  26. Helgrind:Race
  27. fun:_starpu_release_data_on_node
  28. fun:_starpu_push_task_output
  29. ...
  30. }
  31. {
  32. We do not care about races on profiling statistics
  33. Helgrind:Race
  34. fun:_starpu_worker_get_status
  35. fun:_starpu_worker_reset_profiling_info_with_lock
  36. ...
  37. }
  38. {
  39. This is racy, but since we'll always put the same values, this is not a problem.
  40. Helgrind:Race
  41. fun:_starpu_codelet_check_deprecated_fields
  42. ...
  43. }
  44. {
  45. This is racy, but we don't care, it's only a statistic
  46. Helgrind:Race
  47. fun:starpu_task_nsubmitted
  48. ...
  49. }
  50. {
  51. This is racy, but we don't care, it's only a statistic
  52. Helgrind:Race
  53. fun:starpu_task_nready
  54. ...
  55. }
  56. {
  57. fscanf error
  58. Memcheck:Cond
  59. ...
  60. fun:fscanf
  61. fun:_starpu_load_bus_performance_files
  62. ...
  63. }
  64. {
  65. TODO1: This is temporary. It perhaps does not pose problem because only the worker takes this mutex. Fixing this will require changing the scheduler interface, so that the schedulers themselves take the scheduling lock, not the caller. Filter it out for now, so we can see other races more easily.
  66. Helgrind:LockOrder
  67. fun:pthread_mutex_lock
  68. fun:starpu_pthread_mutex_lock
  69. fun:simple_worker_pull_task
  70. ...
  71. }
  72. {
  73. TODO2: This is temporary. It perhaps does not pose problem because only the worker takes this mutex. Fixing this will require changing the scheduler interface, so that the schedulers themselves take the scheduling lock, not the caller. Filter it out for now, so we can see other races more easily.
  74. Helgrind:LockOrder
  75. fun:pthread_mutex_lock
  76. fun:starpu_pthread_mutex_lock
  77. fun:_starpu_sched_component_lock_worker
  78. fun:simple_worker_pull_task
  79. ...
  80. }