[Openmp-commits] [PATCH] D103121: [OpenMP] libomp: Add new experimental barrier: two-level distributed barrier

Terry Wilmarth via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Tue May 25 15:22:58 PDT 2021


tlwilmar created this revision.
tlwilmar added reviewers: AndreyChurbanov, jlpeyton.
tlwilmar added a project: OpenMP.
Herald added subscribers: jfb, guansong, yaxunl.
tlwilmar requested review of this revision.
Herald added a reviewer: jdoerfert.
Herald added a subscriber: sstefan1.

Two-level distributed barrier is a new experimental barrier designed
for Intel hardware that has better performance in some cases than the
default hyper barrier.

This barrier is designed to handle fine granularity parallelism where
barriers are used frequently with little compute and memory access
between barriers.  There is no need to use it for codes with few
barriers and large granularity compute, or memory intensive
applications, as little difference will be seen between this barrier
and the default hyper barrier. This barrier is designed to work
optimally with a fixed number of threads, and has a significant setup
time, so should NOT be used in situations where the number of threads
in a team is varied frequently.

The two-level distributed barrier is off by default -- hyper barrier
is used by default. To use this barrier, you must set all barrier
patterns to use this type, because it will not work with other barrier
patterns.  Thus, to turn it on, the following settings are required:

KMP_FORKJOIN_BARRIER_PATTERN=dist,dist
KMP_PLAIN_BARRIER_PATTERN=dist,dist
KMP_REDUCTION_BARRIER_PATTERN=dist,dist

Branching factors (set with KMP_FORKJOIN_BARRIER, KMP_PLAIN_BARRIER,
and KMP_REDUCTION_BARRIER) are ignored by the two-level distributed
barrier.


Repository:
  rOMP OpenMP

https://reviews.llvm.org/D103121

Files:
  openmp/runtime/src/i18n/en_US.txt
  openmp/runtime/src/kmp.h
  openmp/runtime/src/kmp_atomic.cpp
  openmp/runtime/src/kmp_barrier.cpp
  openmp/runtime/src/kmp_barrier.h
  openmp/runtime/src/kmp_global.cpp
  openmp/runtime/src/kmp_os.h
  openmp/runtime/src/kmp_runtime.cpp
  openmp/runtime/src/kmp_settings.cpp
  openmp/runtime/src/kmp_stats.h
  openmp/runtime/src/kmp_str.cpp
  openmp/runtime/src/kmp_str.h
  openmp/runtime/src/kmp_tasking.cpp
  openmp/runtime/src/kmp_wait_release.cpp
  openmp/runtime/src/kmp_wait_release.h
  openmp/runtime/src/z_Linux_util.cpp
  openmp/runtime/src/z_Windows_NT_util.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D103121.347796.patch
Type: text/x-patch
Size: 112539 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20210525/16e7a846/attachment-0001.bin>


More information about the Openmp-commits mailing list