Skip to content
  1. Sep 02, 2021
  2. Sep 01, 2021
    • Joel E. Denny's avatar
      [OpenMP] Use IsHostPtr where needed in rest of omptarget.cpp · 786a1406
      Joel E. Denny authored
      As started in D107925, this patch replaces the remaining occurrences
      of `UNIFIED_SHARED_MEMORY && TgtPtrBegin == HstPtrBegin` in
      `omptarget.cpp` with `IsHostPtr`.  The former condition is broken in
      the rare case that the device and host happen to use the same address
      for their mapped allocations.  I don't know how to write a test that's
      likely to reveal this case.
      
      Reviewed By: grokos
      
      Differential Revision: https://reviews.llvm.org/D107928
      786a1406
    • Joel E. Denny's avatar
      [OpenMP] Use IsHostPtr where needed for targetDataBegin · d11bab0b
      Joel E. Denny authored
      As discussed in D105990, without this patch, `targetDataBegin`
      determines whether to transfer data (as opposed to assuming it's in
      shared memory) using the condition `!UseUSM || HasCloseModifier`.
      However, this condition is broken if use of discrete memory was forced
      by `omp_target_associate_ptr`.  This patch extends
      `unified_shared_memory/associate_ptr.c` to reveal this case, and it
      fixes it using `!IsHostPtr` in `DeviceTy::getTargetPointer` to replace
      this condition.
      
      Reviewed By: grokos
      
      Differential Revision: https://reviews.llvm.org/D107927
      d11bab0b
    • Joel E. Denny's avatar
      [OpenMP][NFC] Eliminate CopyMember from targetDataEnd · fa6c2755
      Joel E. Denny authored
      This patch is based on comments in D105990.  It is NFC according to
      the following observations:
      
      1. `CopyMember` is computed as `!IsHostPtr && IsLast`.
      2. `DelEntry` is true only if `IsLast` is true.
      
      We apply those observations in order:
      
      ```
      if ((DelEntry || Always || CopyMember) && !IsHostPtr)
      
      if ((DelEntry || Always || IsLast) && !IsHostPtr)
      
      if ((Always || IsLast) && !IsHostPtr)
      ```
      
      Reviewed By: grokos
      
      Differential Revision: https://reviews.llvm.org/D107926
      fa6c2755
    • Joel E. Denny's avatar
      [OpenMP] Use IsHostPtr where needed for targetDataEnd · 8e4836b2
      Joel E. Denny authored
      As discussed in D105990, without this patch, `targetDataEnd`
      determines whether to transfer data or delete a device mapping (as
      opposed to assuming it's in shared memory) using two different
      conditions, each of which is broken for some cases:
      
      1. `!(UNIFIED_SHARED_MEMORY && TgtPtrBegin == HstPtrBegin)`: The
         broken case is rare: the device and host might happen to use the
         same address for their mapped allocations.  I don't know how to
         write a test that's likely to reveal this case, but this patch does
         fix it, as discussed below.
      2. `!UNIFIED_SHARED_MEMORY || HasCloseModifier`: There are at least
         two broken cases:
          1. The `close` modifier might have been specified on an `omp
            target enter data` but not the corresponding `omp target exit
            data`, which thus might falsely assume a mapping is in shared
            memory.  The test `unified_shared_memory/close_enter_exit.c`
            already has a missing deletion as a result, and this patch adds
            a check for that.  This patch also adds the new test
            `close_member.c` to reveal a missing transfer and deletion.
          2. Use of discrete memory might have been forced by
            `omp_target_associate_ptr`, as in the test
            `unified_shared_memory/api.c`.  In the current `targetDataEnd`
            implementation, this condition turns out not be used for this
            case: because the reference count is infinite, a transfer is
            possible only with an `always` modifier, and this condition is
            never used in that case.  To ensure it's never used for that
            case in the future, this patch adds the test
            `unified_shared_memory/associate_ptr.c`.
      
      Fortunately, `DeviceTy::getTgtPtrBegin` already has a solution: it
      reports whether the allocation was found in shared memory via the
      variable `IsHostPtr`.
      
      After this patch, `HasCloseModifier` is no longer used in
      `targetDataEnd`, and I wonder if the `close` modifier is ever useful
      on an `omp target data end`.
      
      Reviewed By: grokos
      
      Differential Revision: https://reviews.llvm.org/D107925
      8e4836b2
    • Jon Chesterfield's avatar
      Revert "[openmp] No longer use LIBRARY_PATH to find devicertl" · cef11996
      Jon Chesterfield authored
      This reverts commit 7a228f87.
      Failing test case under CI
      cef11996
    • Jon Chesterfield's avatar
      [openmp] No longer use LIBRARY_PATH to find devicertl · 7a228f87
      Jon Chesterfield authored
      Given D109057, change test runner to use the libomptarget-x-bc-path
      argument instead of the LIBRARY_PATH environment variable to find the device
      library.
      
      Also drop the use of LIBRARY_PATH environment variable as it is far
      too easy to pull in the device library from an unrelated toolchain by accident
      with the current setup. No loss in flexibility to developers as the clang
      commandline used here is still available.
      
      Reviewed By: jdoerfert
      
      Differential Revision: https://reviews.llvm.org/D109061
      7a228f87
    • Jon Chesterfield's avatar
      [libomptarget] Set runpath on libomptarget, use that to drop LD_LIBRARY_PATH from test runner · 718e5a98
      Jon Chesterfield authored
      Using rpath instead of LD_LIBRARY_PATH to find libomp.so and
      libomptarget.so lets one rerun the already built test executables without
      setting environment variables and removes the risk of the test runner picking
      up different libraries to the developer debugging the failure.
      
      rpath usually means runpath, which is not transitive, so set runpath on
      libomptarget itself so that it can find the plugins located next to it,
      spelled $ORIGIN. This provides sufficient functionality to drop D102043
      
      Reviewed By: tianshilei1992
      
      Differential Revision: https://reviews.llvm.org/D109071
      718e5a98
    • Jon Chesterfield's avatar
    • Joel E. Denny's avatar
      1688b4cf
  3. Aug 31, 2021
  4. Aug 30, 2021
  5. Aug 29, 2021
  6. Aug 28, 2021
  7. Aug 27, 2021
  8. Aug 26, 2021
  9. Aug 25, 2021
  10. Aug 24, 2021
  11. Aug 23, 2021
  12. Aug 20, 2021
    • Joachim Protze's avatar
      [libomptarget][amdcgn] Add build dependency for llvm-link and opt · 4bb36df1
      Joachim Protze authored
      D107156 and D107320 are not sufficient when OpenMP is built as llvm runtime
      (LLVM_ENABLE_RUNTIMES=openmp) because dependencies only work within the same
      cmake instance.
      
      We could limit the dependency to cases where libomptarget/plugins are really
      built. But compared to the whole llvm project, building openmp runtime is
      negligible and postponing the build of OpenMP runtime after the dependencies
      are ready seems reasonable.
      
      The direct dependency introduced in D107156 and D107320 is necessary for the
      case where OpenMP is built as llvm project (LLVM_ENABLE_PROJECTS=openmp).
      
      Differential Revision: https://reviews.llvm.org/D108404
      4bb36df1
  13. Aug 19, 2021
  14. Aug 18, 2021
  15. Aug 10, 2021
Loading