Skip to content
  1. Sep 21, 2015
  2. Sep 18, 2015
  3. Sep 16, 2015
  4. Sep 14, 2015
    • Jonathan Peyton's avatar
      Removing the Makefile/Perl build system. · 89776187
      Jonathan Peyton authored
      This change deletes the Makefile+Perl build system and all files used by it
      which aren't used by the CMake build system. This included many Perl files,
      *.mk files, iomp* files.  This change also updates the README's and
      index.html to instruct the user to use the CMake build system. All mentioning
      of the Perl+Makefile based system are removed.
      
      Differential Revision: http://reviews.llvm.org/D12331
      
      llvm-svn: 247583
      89776187
  5. Sep 10, 2015
  6. Sep 02, 2015
  7. Aug 31, 2015
  8. Aug 28, 2015
    • Jonathan Peyton's avatar
      Add kmp_config.h.cmake · ff7da34b
      Jonathan Peyton authored
      In r246314 (Removing expand-vars.pl) patch, I forgot to add kmp_config.h.cmake
      This patch just adds it.
      
      llvm-svn: 246317
      ff7da34b
    • Jonathan Peyton's avatar
      [OpenMP] [CMake] Removing expand-vars.pl in favor of CMake's configure_file() · c0225ca2
      Jonathan Peyton authored
      Currently, the libomp CMake build system uses a Perl script to configure files
      (tools/expand-vars.pl). This patch replaces the use of the Perl script by using
      CMake's configure_file() function. The major changes include:
      1. *.var has every $KMP_* variable changed to @LIBOMP_*@
      2. kmp_config.h.cmake is a new file which contains all the feature macros and
         #cmakedefine lines
      3. Most of the -D lines have been moved from LibompDefinitions.cmake but some
         OS specific MACROs (e.g., _GNU_SOURCE) remain.
      4. All expand-vars.pl related logic is removed from the CMake files.
      
      One important note about this change is that it breaks the old Perl+Makefile
      build system because it can't create kmp_config.h properly.
      
      Differential Review: http://reviews.llvm.org/D12211
      
      llvm-svn: 246314
      c0225ca2
  9. Aug 27, 2015
  10. Aug 26, 2015
  11. Aug 25, 2015
    • Jonathan Peyton's avatar
      Fix machine topology pruning. · 62f3840c
      Jonathan Peyton authored
      This patch fixes a bug when eliminating layers in the machine topology (namely
      cores, and threads). Before this patch, if a user specifies using only one 
      thread per socket, then affinity is not set properly due to bad topology
      pruning.
      
      Differential Revision: http://reviews.llvm.org/D11158
      
      llvm-svn: 245966
      62f3840c
  12. Aug 20, 2015
    • Jonathan Peyton's avatar
      Update z_Linux_asm.s to use platform macros · 621743b9
      Jonathan Peyton authored
      z_Linux_asm.s can use the KMP_OS_* / KMP_MIC macros instead of the predefined
      compiler macro checks.  The macro logic to determine KMP_MIC is moved from
      kmp_os.h to kmp_platform.h.
      
      llvm-svn: 245602
      621743b9
  13. Aug 18, 2015
  14. Aug 17, 2015
  15. Aug 13, 2015
    • Jonathan Peyton's avatar
      Remove unused KMP_SETVERSION macro · 221104be
      Jonathan Peyton authored
      This macro and the small amount of code along with it are unused and
      can be removed.  The macro is never defined in any build script or source file.
      
      llvm-svn: 244899
      221104be
  16. Aug 12, 2015
  17. Aug 11, 2015
    • Jonathan Peyton's avatar
      Tidy statistics collection · 45be4500
      Jonathan Peyton authored
      This removes some statistics counters and timers which were not used,
      adds new counters and timers for some language features that were not
      monitored previously and separates the counters and timers into those
      which are of interest for investigating user code and those which are
      only of interest to the developer of the runtime itself.
      The runtime developer statistics are now ony collected if the
      additional #define KMP_DEVELOPER_STATS is set.
      
      Additional user statistics which are now collected include:
      * Count of nested parallelism (omp parallel inside a parallel region)
      * Count of omp distribute occurrences
      * Count of omp teams occurrences
      * Counts of task related statistics (taskyield, task execution, task
        cancellation, task steal)
      * Values passed to omp_set_numtheads
      * Time spent in omp single and omp master
      
      None of this affects code compiled without stats gathering enabled,
      which is the normal library build mode.
      
      This also fixes the CMake build by linking to the standard c++ library
      when building the stats library as it is a requirement.  The normal library
      does not have this requirement and its link phase is left alone.
      
      Differential Revision: http://reviews.llvm.org/D11759
      
      llvm-svn: 244677
      45be4500
Loading