Skip to content
  1. Jan 04, 2017
  2. Dec 21, 2016
  3. Dec 15, 2016
  4. Dec 14, 2016
  5. Dec 08, 2016
  6. Dec 01, 2016
  7. Nov 28, 2016
  8. Nov 21, 2016
  9. Nov 14, 2016
    • Jonathan Peyton's avatar
      Update stats-gathering code · 5375fe82
      Jonathan Peyton authored
      Have developer timers use partitioning scheme which also required that some
      redundant developer timers be removed in favor of the already existing normal
      timers. Move per thread stats initialization to just after global thread id
      assignment which is as early as possible. Also put all global stats
      initialization code in __kmp_stats_init() and all global stats destruction code
      in __kmp_stats_fini().
      
      Differential Revision: https://reviews.llvm.org/D26361
      
      llvm-svn: 286892
      5375fe82
    • Jonathan Peyton's avatar
      Introduce dynamic affinity dispatch capabilities · 1cdd87ad
      Jonathan Peyton authored
      This set of changes enables the affinity interface (Either the preexisting
      native operating system or HWLOC) to be dynamically set at runtime
      initialization. The point of this change is that we were seeing performance
      degradations when using HWLOC. This allows the user to use the old affinity
      mechanisms which on large machines (>64 cores) makes a large difference in
      initialization time.
      
      These changes mostly move affinity code under a small class hierarchy:
      
      KMPAffinity
        class Mask {}
      KMPNativeAffinity : public KMPAffinity
        class Mask : public KMPAffinity::Mask
      KMPHwlocAffinity
        class Mask : public KMPAffinity::Mask
      
      Since all interface functions (for both affinity and the mask implementation)
      are virtual, the implementation can be chosen at runtime initialization.
      
      Differential Revision: https://reviews.llvm.org/D26356
      
      llvm-svn: 286890
      1cdd87ad
  10. Nov 10, 2016
  11. Nov 07, 2016
    • Jonas Hahnfeld's avatar
      [OpenMP] Enable ThreadSanitizer to check OpenMP programs · 50fed047
      Jonas Hahnfeld authored
      This patch allows ThreadSanitizer (Tsan) to verify OpenMP programs.
      It means that no false positive will be reported by Tsan when
      verifying an OpenMP programs.
      This patch introduces annotations within the OpenMP runtime module to
      provide information about thread synchronization to the Tsan runtime.
      
      In order to enable the Tsan support when building the runtime, you must
      enable the TSAN_SUPPORT option with the following environment variable:
      
      -DLIBOMP_TSAN_SUPPORT=TRUE
      
      The annotations will be enabled in the main shared library
      (same mechanism of OMPT).
      
      Patch by Simone Atzeni and Joachim Protze!
      
      Differential Revision: https://reviews.llvm.org/D13072
      
      llvm-svn: 286115
      50fed047
  12. Nov 03, 2016
  13. Nov 02, 2016
  14. Nov 01, 2016
  15. Oct 27, 2016
  16. Oct 26, 2016
  17. Oct 20, 2016
  18. Oct 18, 2016
  19. Oct 07, 2016
  20. Oct 01, 2016
  21. Sep 30, 2016
  22. Sep 27, 2016
  23. Sep 19, 2016
    • Michal Gorny's avatar
      Fix respecting LIBOMP_LLVM_LIT_EXECUTABLE as full path · cd2bfb1e
      Michal Gorny authored
      Fix lit search to correctly respect LIBOMP_LLVM_LIT_EXECUTABLE as full
      program path.
      
      The variable passed to find_program() is created by CMake as a cache
      variable, and therefore can be directly overriden by the user. Since
      this was the design of LIBOMP_LLVM_LIT_EXECUTABLE (as can be deduced
      from the error messages) and there is no other use of LIT_EXECUTABLE,
      remove the redundant variable and pass LIBOMP_LLVM_LIT_EXECUTABLE
      directly to find_program().
      
      Furthermore, the previous code did not work since the HINTS argument
      specifies more search directories rather than expected full path.
      Quoting the CMake documentation:
      
      > 3. Search the paths specified by the HINTS option. These should be
      > paths computed by system introspection, such as a hint provided by
      > the location of another item already found. Hard-coded guesses should
      > be specified with the PATHS option.
      
      Differential Revision: https://reviews.llvm.org/D24710
      
      llvm-svn: 281887
      cd2bfb1e
  24. Sep 14, 2016
Loading