Skip to content
  1. Mar 06, 2022
  2. Mar 05, 2022
  3. Mar 04, 2022
    • Joseph Huber's avatar
      [Libomptarget] Work around bug in initialization of libomptarget · e2dcc221
      Joseph Huber authored
      Libomptarget uses some shared variables to track certain internal stated
      in the runtime. This causes problems when we have code that contains no
      OpenMP kernels. These variables are normally initialized upon kernel
      entry, but if there are no kernels we will see no initialization.
      Currently we load the runtime into each source file when not running in
      LTO mode, so these variables will be erroneously considered undefined or
      dead and removed, causing miscompiles. This patch temporarily works
      around the most obvious case, but others still exhibit this problem. We
      will need to fix this more soundly later.
      
      Fixes #54208.
      
      Reviewed By: jdoerfert
      
      Differential Revision: https://reviews.llvm.org/D121007
      e2dcc221
  4. Mar 03, 2022
  5. Mar 02, 2022
  6. Mar 01, 2022
  7. Feb 23, 2022
  8. Feb 18, 2022
  9. Feb 17, 2022
  10. Feb 16, 2022
  11. Feb 15, 2022
  12. Feb 14, 2022
    • Joseph Huber's avatar
      [Libomptarget][NFC] Remove constexpr to hide warnings · 48e3dcec
      Joseph Huber authored
      Currently whenever we compile the device runtime we get the following
      'Mapping.cpp:32:32: warning: inline function '_OMP::impl::getGridValue'
      is not defined [-Wundefined-inline]' warning. This can be silenced by
      removing the constexpr attribute for this function. Doing this doesn't
      change the generated bitcode at all but prevents the screen from getting
      filled with warnings whenver we build the runtime.
      
      Reviewed By: jdoerfert
      
      Differential Revision: https://reviews.llvm.org/D119747
      48e3dcec
    • Jonathan Peyton's avatar
      [OpenMP][libomp] Introduce oneAPI compiler support · 1234011b
      Jonathan Peyton authored
      Introduce KMP_COMPILER_ICX macro to represent compilation with oneAPI
      compiler.
      
      Fixup flag detection and compiler ID detection in CMake. Older CMake's
      detect IntelLLVM as Clang.
      
      Fix compiler warnings.
      
      Fixup many of the tests to have non-empty parallel regions as they are
      elided by oneAPI compiler.
      1234011b
  13. Feb 13, 2022
  14. Feb 12, 2022
  15. Feb 11, 2022
  16. Feb 10, 2022
  17. 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
  18. Feb 08, 2022
  19. Feb 07, 2022
  20. 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
  21. Feb 02, 2022
  22. Feb 01, 2022
  23. Jan 31, 2022
Loading