Skip to content
  1. Apr 05, 2016
  2. Apr 04, 2016
    • Jonathan Peyton's avatar
      OMP_WAIT_POLICY changes · 50e8f18b
      Jonathan Peyton authored
      This change has OMP_WAIT_POLICY=active to mean that threads will busy-wait in
      spin loops and virtually never go to sleep. OMP_WAIT_POLICY=passive now means
      that threads will immediately go to sleep inside a spin loop. KMP_BLOCKTIME was
      the previous mechanism to specify this behavior via KMP_BLOCKTIME=0 or
      KMP_BLOCKTIME=infinite, but the standard OpenMP environment variable should
      also be able to specify this behavior.
      
      Differential Revision: http://reviews.llvm.org/D18577
      
      llvm-svn: 265339
      50e8f18b
  3. Mar 30, 2016
  4. Mar 29, 2016
  5. Mar 28, 2016
  6. Mar 27, 2016
  7. Mar 24, 2016
  8. Mar 23, 2016
    • Jonathan Peyton's avatar
      Fix Visual Studio builds · b7d30cbc
      Jonathan Peyton authored
      Have Visual Studio use MemoryBarrier() instead of _mm_mfence() and remove
      __declspec align attribute from function parameters in kmp_atomic.h
      
      llvm-svn: 264166
      b7d30cbc
  9. Mar 22, 2016
    • Jonas Hahnfeld's avatar
      [OMPT] Make tests require OMPT_BLAME · b1cad295
      Jonas Hahnfeld authored
      ompt_event_barrier_{begin,end} are optional blame events.
      In total it doesn't make any sense to test partially built OMPT support.
      
      llvm-svn: 264031
      b1cad295
    • Jonas Hahnfeld's avatar
      [OMPT] Create infrastructure and add first tests for OMPT · c8043011
      Jonas Hahnfeld authored
      Some basic checks next to the implementation should futher lower the
      possibility to introduce regressions. (Note that this would have catched
      the ordering issue fixed in rL258866 and pointed to rL263940.)
      
      The tests are implementation dependent in one point because they assume that
      thread ids are assigned in ascending order. This is not defined by the standard
      but currently ensured in libomp. We have to think about another way of ordering
      the threads should this ever be subject to change...
      
      Note that this isn't aiming at replacing the implementation independent
      test-suite at https://github.com/OpenMPToolsInterface/ompt-test-suite!
      
      Differential Revision: http://reviews.llvm.org/D16715
      
      llvm-svn: 264027
      c8043011
  10. Mar 21, 2016
  11. Mar 18, 2016
  12. Mar 16, 2016
    • Jonathan Peyton's avatar
      [CMake] Fix Windows build problem for CMake versions < 3.3 · 8a46c067
      Jonathan Peyton authored
      Building libomp using CMake versions < 3.3 caused a link time error.  These
      errors occurred because when assembling z_Windows_NT-586_asm.asm, the
      definitions: OMPT_SUPPORT, _M_AMD64|_M_IA32 weren't defined on the command line.
      To fix the problem, the COMPILE_FLAGS property for the assembly file is appended
      to instead of the COMPILE_DEFINITIONS property being set.  For whatever reason, the
      COMPILE_DEFINITIONS property doesn't pick up the definitions for assembly files
      for the older CMake versions.
      
      llvm-svn: 263651
      8a46c067
  13. Mar 15, 2016
  14. Mar 12, 2016
    • Samuel Antao's avatar
      Initialize two variables in kmp_tasking. · 11e4c539
      Samuel Antao authored
      Summary:
      Two initialized local variables are causing clang to produce warnings:
      
      ```
      ./src/projects/openmp/runtime/src/kmp_tasking.c:3019:5: error: variable 'num_tasks' is used uninitialized whenever switch default is taken [-Werror,-Wsometimes-uninitialized]
          default:
          ^~~~~~~
      ./src/projects/openmp/runtime/src/kmp_tasking.c:3027:21: note: uninitialized use occurs here
          for( i = 0; i < num_tasks; ++i ) {
                          ^~~~~~~~~
      ./src/projects/openmp/runtime/src/kmp_tasking.c:2968:28: note: initialize the variable 'num_tasks' to silence this warning
          kmp_uint64 i, num_tasks, extras;
                                 ^
                                  = 0
      ./src/projects/openmp/runtime/src/kmp_tasking.c:3019:5: error: variable 'extras' is used uninitialized whenever switch default is taken [-Werror,-Wsometimes-uninitialized]
          default:
          ^~~~~~~
      ./src/projects/openmp/runtime/src/kmp_tasking.c:3022:52: note: uninitialized use occurs here
          KMP_DEBUG_ASSERT(tc == num_tasks * grainsize + extras);
                                                         ^~~~~~
      ./src/projects/openmp/runtime/src/kmp_debug.h:62:60: note: expanded from macro 'KMP_DEBUG_ASSERT'
              #define KMP_DEBUG_ASSERT( cond )       KMP_ASSERT( cond )
                                                                 ^
      ./src/projects/openmp/runtime/src/kmp_debug.h:60:51: note: expanded from macro 'KMP_ASSERT'
              #define KMP_ASSERT( cond )             ( (cond) ? 0 : __kmp_debug_assert( #cond, __FILE__, __LINE__ ) )
                                                        ^
      ./src/projects/openmp/runtime/src/kmp_tasking.c:2968:36: note: initialize the variable 'extras' to silence this warning
          kmp_uint64 i, num_tasks, extras;
                                         ^
                                          = 0
      2 errors generated.
      ```
      
      This patch initializes these two variables.
      
      Reviewers: tlwilmar, jlpeyton
      
      Subscribers: tlwilmar, openmp-commits
      
      Differential Revision: http://reviews.llvm.org/D17909
      
      llvm-svn: 263316
      11e4c539
  15. Mar 11, 2016
  16. Mar 03, 2016
  17. Mar 02, 2016
    • Jonathan Peyton's avatar
      Add new OpenMP 4.5 taskloop construct feature · 283a215c
      Jonathan Peyton authored
      From the standard: The taskloop construct specifies that the iterations of one
      or more associated loops will be executed in parallel using OpenMP tasks. The
      iterations are distributed across tasks created by the construct and scheduled
      to be executed.
      
      This initial implementation uses a simple linear tasks distribution algorithm.
      Later we can add other algorithms to speedup generation of huge number of tasks
      (i.e., tree-like tasks generation should be faster).
      
      This needs to be put into the OpenMP runtime library in order for the
      compiler team to develop the compiler side of the implementation.
      
      Differential Revision: http://reviews.llvm.org/D17404
      
      llvm-svn: 262535
      283a215c
    • Jonathan Peyton's avatar
      Forgot to add test files for doacross and task priority. · a0d7a2cd
      Jonathan Peyton authored
      llvm-svn: 262533
      a0d7a2cd
    • Jonathan Peyton's avatar
      Add new OpenMP 4.5 doacross loop nest feature · 71909c57
      Jonathan Peyton authored
      From the standard: A doacross loop nest is a loop nest that has cross-iteration
      dependence. An iteration is dependent on one or more lexicographically earlier
      iterations. The ordered clause parameter on a loop directive identifies the
      loop(s) associated with the doacross loop nest.
      
      The init/fini routines allocate/free doacross buffer(s) for each loop for each
      thread.  The wait routine waits for a flag designated by the dependence vector.
      The post routine sets the flag designated by current iteration vector.  We use
      a similar technique of shared buffer indices that covers up to 7 nowait loops
      executed simultaneously by different threads (number 7 has no real meaning,
      just heuristic value).  Also, the size of structures are kept intact via
      reducing dummy arrays.
      
      This needs to be put into the OpenMP runtime library in order for the compiler
      team to develop the compiler side of the implementation.
      
      Differential Revision: http://reviews.llvm.org/D17399
      
      llvm-svn: 262532
      71909c57
  18. Feb 25, 2016
    • Jonathan Peyton's avatar
      Add new OpenMP 4.5 affinity API · 2f7c077b
      Jonathan Peyton authored
      This change introduces the new OpenMP 4.5 affinity api surrounding
      OpenMP Places. There are six new entry points:
      
      Typically called in serial region:
       * omp_get_num_places - returns the number of places available to the execution
             environment in the place list.
       * omp_get_place_num_procs - returns the number of processors available to the
             execution environment in the specified place.
       * omp_get_place_proc_ids - returns the numerical identifiers of the processors
             available to the execution environment in the specified place.
      
      Typically called inside parallel region:
       * omp_get_place_num - returns the place number of the place to which the
             encountering thread is bound.
       * omp_get_partition_num_places - returns the number of places in the place
             partition of the innermost implicit task.
       * omp_get_partition_place_nums - returns the list of place numbers
             corresponding to the places in the place-var ICV of the innermost
             implicit task.
      
      Differential Revision: http://reviews.llvm.org/D17417
      
      llvm-svn: 261915
      2f7c077b
    • Jonathan Peyton's avatar
      Add initial support for OpenMP 4.5 task priority feature · 2851072d
      Jonathan Peyton authored
      The maximum task priority value is read from envirable: OMP_MAX_TASK_PRIORITY.
      But as of now, nothing is done with it.  We just handle the environment variable
      and add the new api: omp_get_max_task_priority() which returns that value or
      zero if it is not set.
      
      Differential Revision: http://reviews.llvm.org/D17411
      
      llvm-svn: 261908
      2851072d
    • Jonathan Peyton's avatar
      dd new OpenMP 4.5 schedule clause modifiers (monotonic/non-monotonic) feature · ea0fe1df
      Jonathan Peyton authored
      The monotonic/non-monotonic flags are sent to the runtime via the sched_type by
      setting the 30th (non-monotonic) or 29th (monotonic) bit in the sched_type.
      Macros are added to probe if monotonic or non-monotonic is specified
      (SCHEDULE_HAS_[NON]MONOTONIC & SCHEDULE_HAS_NO_MODIFIERS)
      and also to to get the base sched_type (SCHEDULE_WITHOUT_MODIFIERS)
      
      Currently, nothing is done with the modifiers.
      
      Also, this patch adds some comments on the use of the enumerations in at least
       one place where it is subtle.
      
      Differential Revision: http://reviews.llvm.org/D17406
      
      llvm-svn: 261906
      ea0fe1df
  19. Feb 18, 2016
  20. Feb 12, 2016
    • Jonas Hahnfeld's avatar
      [OMPT] Frame information for openmp taskwait · 867aa20b
      Jonas Hahnfeld authored
      For pragma omp taskwait the runtime is called from the task context.
      Therefore, the reentry frame information should be updated.
      
      The information should be available for both taskwait event calls; therefore,
      set before the first event and reset after the last event.
      
      Patch by Joachim Protze
      Differential Revision: http://reviews.llvm.org/D17145
      
      llvm-svn: 260674
      867aa20b
    • Jonathan Peyton's avatar
      Fix incorrect task_team in __kmp_give_task · 134f90d5
      Jonathan Peyton authored
      When a target task finishes and it tries to access the th_task_team from the
      threads in the team where it was created, th_task_team can be NULL or point to
      a different place when that thread started a nested region that is still
      running. Finding the exact task_team that the threads were using is difficult
      as it would require to unwind the task_state_memo_stack. So a new field was added
      in the taskdata structure to point to the active task_team when the task was
      created.
      
      llvm-svn: 260615
      134f90d5
  21. Feb 11, 2016
  22. Feb 09, 2016
Loading