Skip to content
  1. Feb 10, 2022
  2. Feb 09, 2022
    • Joseph Huber's avatar
      [Libomptarget] Increase stack size for bug49779 test · 9582f096
      Joseph Huber authored
      The 'bug49779.cpp' test has been failing recently. This is because the
      runtime is sufficiently complex when using nested parallelism without
      optimizations that the CUDA tools cannot statically determine the stack
      size. Because of this the kernel can exceed the thread stack size and
      crash. Work around this using the 'LIBOMPTARGET_STACK_SIZE' environment
      variable and add an FAQ entry for this situation.
      
      Fixes #53670
      
      Reviewed By: Meinersbur
      
      Differential Revision: https://reviews.llvm.org/D119357
      9582f096
    • Jonathan Peyton's avatar
      [OpenMP][libomp] Replace accidental VLA with KMP_ALLOCA · 6be7c21b
      Jonathan Peyton authored
      MSVC does not support variable length arrays. Replace with KMP_ALLOCA
      which is already used in the same file for stack-allocated variables.
      6be7c21b
  3. Feb 08, 2022
  4. Feb 07, 2022
  5. Feb 04, 2022
    • Joseph Huber's avatar
      [OpenMP] Completely remove old device runtime · 034adaf5
      Joseph Huber authored
      This patch completely removes the old OpenMP device runtime. Previously,
      the old runtime had the prefix `libomptarget-new-` and the old runtime
      was simply called `libomptarget-`. This patch makes the formerly new
      runtime the only runtime available. The entire project has been deleted,
      and all references to the `libomptarget-new` runtime has been replaced
      with `libomptarget-`.
      
      Reviewed By: JonChesterfield
      
      Differential Revision: https://reviews.llvm.org/D118934
      034adaf5
    • Joseph Huber's avatar
      [Libomptarget] Remove AMDGPU XFAIL from test · b4be1821
      Joseph Huber authored
      Summary;
      This test should pass now with AMDGPU. Previously the symbols were
      hidden and would fail when read.
      b4be1821
  6. Feb 02, 2022
  7. Feb 01, 2022
  8. Jan 31, 2022
  9. Jan 30, 2022
    • John Ericson's avatar
      [openmp][cmake] `CMAKE_INSTALL_BINDIR` usage should not be quoted · 368c54b8
      John Ericson authored
      As @mstorsjo wrote in https://reviews.llvm.org/D117945#inline-1132920 :
      
      > This change seems to have broken one aspect: When doing `ninja
      install` I now get a warning saying `Error copying file "libomp.dll" to
      "libiomp5md.dll".`, and `libiomp5md.dll` isn't installed.
      >
      > I believe the reason is that the inline cmake snippet is written to
      `runtime/src/cmake_install.cmake` and then executed on install, but on
      install, `${CMAKE_INSTALL_BINDIR}` isn't set (as `GNUInstallDirs` isn't
      included there). Should this maybe expand `${CMAKE_INSTALL_BINDIR}`
      right here instead of deferring it to the install cmake, or what's the
      right course of action?
      
      I agree that is the right course of action. We also agreed to restore the `CMAKE_INSTALL_PREFIX` that was there before, too.
      
      Reviewed By: mstorsjo
      
      Differential Revision: https://reviews.llvm.org/D118528
      368c54b8
  10. Jan 29, 2022
  11. Jan 28, 2022
  12. Jan 27, 2022
  13. Jan 26, 2022
  14. Jan 22, 2022
  15. Jan 21, 2022
    • Joseph Huber's avatar
      [Libomptarget] Change visibility to hidden for device RTL · 26feef08
      Joseph Huber authored
      This patch changes the visibility for all construct in the new device
      RTL to be hidden by default. This is done after the changes introduced
      in D117806 changed the visibility from being hidden by default for all
      device compilations. This asserts that the visibility for the device
      runtime library will be hidden except for the internal environment
      variable. This is done to aid optimization and linking of the device
      library.
      
      Reviewed By: JonChesterfield
      
      Differential Revision: https://reviews.llvm.org/D117807
      26feef08
  16. Jan 20, 2022
    • Johannes Doerfert's avatar
      [OpenMP] Avoid costly shadow map traversals whenever possible · b0789a1b
      Johannes Doerfert authored
      In the OpenMC app we saw `omp target update` spending an awful lot of
      time in the shadow map traversal without ever doing any update there.
      There are two cases that allow us to avoid the traversal completely.
      The simplest thing is that small updates cannot (reasonably) contain
      an attached pointer part. The other case requires to track in the
      mapping table if an entry might contain an attached pointer as part.
      Given that we have a single location shadow map entries are created,
      the latter is actually fairly easy as well.
      
      Differential Revision: https://reviews.llvm.org/D113124
      b0789a1b
    • Johannes Doerfert's avatar
      [OpenMP] Introduce an environment variable to disable atomic map clauses · 1e447d03
      Johannes Doerfert authored
      Atomic handling of map clauses was introduced to comply with the OpenMP
      standard (see D104418). However, many apps won't need this feature which
      can be costly in certain situations. To allow for applications to
      opt-out we now introduce the `LIBOMPTARGET_MAP_FORCE_ATOMIC` environment
      flag that voids the atomicity guarantee of the standard for map clauses
      again, shifting the burden to the user.
      
      This patch also de-duplicates the code that introduces the events used
      to enforce atomicity as a cleanup.
      
      Differential Revision: https://reviews.llvm.org/D117627
      1e447d03
    • Joseph Huber's avatar
      [OpenMP] Expand short verisions of OpenMP offloading triples · 28d71860
      Joseph Huber authored
      The OpenMP offloading libraries are built with fixed triples and linked
      in during compile time. This would cause un-helpful errors if the user
      passed in the wrong expansion of the triple used for the bitcode
      library. because we only support these triples for OpenMP offloading we
      can normalize them to the full verion used in the bitcode library.
      
      Reviewed By: jdoerfert, JonChesterfield
      
      Differential Revision: https://reviews.llvm.org/D117634
      28d71860
  17. Jan 19, 2022
Loading