Skip to content
  1. Jul 22, 2021
    • Jon Chesterfield's avatar
      [libomptarget][amdgpu] Implement dlopen of libhsa · 1a965706
      Jon Chesterfield authored
      AMDGPU plugin equivalent of D95155, build without HSA installed locally
      
      Compiles a new file, plugins/amdgpu/dynamic_hsa/hsa.cpp, to an object file that
      exposes the same symbols that the plugin presently uses from hsa. The object
      file contains dlopen of hsa and cached dlsym calls. Also provides header files
      corresponding to the subset that is used.
      
      This is behind a feature flag, LIBOMPTARGET_FORCE_DLOPEN_LIBHSA, default off.
      That allows developers to build against the dlopen/dlsym implementation, e.g.
      while testing this mode.
      
      Enabling by default will cause this plugin to build on a wider variety of
      machines than it does at present so may break some CI builds. That risk can
      be minimised by reviewing the header dependencies of the library and ensuring
      it doesn't use any libraries that are not already used by libomptarget.
      
      Separating the implementation from enabling by default in case the latter needs
      to be rolled back after wider CI results.
      
      Reviewed By: jdoerfert
      
      Differential Revision: https://reviews.llvm.org/D106559
      1a965706
    • Joseph Huber's avatar
      [OpenMP] Fix warnings for uninitialized block counts · a158d366
      Joseph Huber authored
      Summary:
      Fixes some warning given for uninitialized block counts if the exection mode is
      not recognized. This shouldn't happen in practice because the execution mode is
      checked when it's read from the device.
      a158d366
    • Jon Chesterfield's avatar
      [libomptarget][amdgpu][nfc] Drop dead signal pool setup · dc1f6f8b
      Jon Chesterfield authored
      This class is instantiated once in rtl.cpp before hsa_init is
      called. The hsa_signal_create call therefore fails leaving the pool empty.
      
      This signal pool is a legacy from ATMI where it was constructed after hsa_init.
      Moving the state into the rtl.cpp global class disabled the initial populating
      of the pool without noticeably changing performance. Just rechecked with a fix
      that allocates the signals after hsa_init and that also doesn't noticeably
      change performance.
      
      This patch therefore drops the initialisation. Only change from main is to
      drop a DEBUG_PRINT statement that would say the pool initial size is zero.
      
      Reviewed By: jdoerfert
      
      Differential Revision: https://reviews.llvm.org/D106515
      dc1f6f8b
    • Joseph Huber's avatar
      [OpenMP] Add new execution mode for SPMD execution with Generic semantics · 7d576392
      Joseph Huber authored
      Qualified kernels can be transformed from generic-mode to SPMD mode using an
      optimization in OpenMPOpt. This patch introduces a new execution mode to
      indicate kernels that have been transformed from generic-mode to SPMD-mode.
      These kernels have SPMD-mode execution, but need generic-mode semantics for
      scheduling the blocks and threads. Without this far too few blocks will be
      scheduled for a generic region as SPMD mode expects the trip count to be
      divided by the number of threads.
      
      Reviewed By: ggeorgakoudis
      
      Differential Revision: https://reviews.llvm.org/D106460
      7d576392
  2. Jul 21, 2021
  3. Jul 06, 2021
  4. Jul 02, 2021
    • Atmn Patel's avatar
      [Libomptarget] Experimental Remote Plugin Fixes · 21e92612
      Atmn Patel authored
      D97883 introduced a compile-time error in the experimental remote offloading
      libomptarget plugin, this patch fixes it and resolves a number of
      inconsistencies in the plugin as well:
      
      1. Non-functional Asynchronous API
      2. Unnecessarily verbose debug printing
      3. Misc. code clean ups
      
      This is not intended to make any functional changes to the plugin.
      
      Differential Revision: https://reviews.llvm.org/D105325
      21e92612
  5. Jul 01, 2021
  6. Jun 30, 2021
  7. Jun 29, 2021
  8. Jun 28, 2021
    • Pushpinder Singh's avatar
      [AMDGPU][Libomptarget] Collect allocatable memory pools using HSA · 20df2c70
      Pushpinder Singh authored
      The logic is almost similar to that of system.cpp with one change that
      instead of adding all the memory pools to a device struct it only
      keeps a single pool. The existing approach also always allocated memory on
      the first HSA pool found for a GPU.
      
      This depends on D104691. The goal of this series of patches is to remove
      _atl_machine global. The next patch will drop g_atl_machine entirely.
      
      Reviewed By: JonChesterfield
      
      Differential Revision: https://reviews.llvm.org/D104695
      20df2c70
  9. Jun 25, 2021
  10. Jun 24, 2021
  11. Jun 22, 2021
  12. Jun 21, 2021
  13. Jun 18, 2021
  14. Jun 16, 2021
  15. Jun 15, 2021
  16. Jun 10, 2021
  17. Jun 09, 2021
  18. Jun 08, 2021
  19. Jun 07, 2021
  20. Jun 02, 2021
  21. Jun 01, 2021
  22. May 31, 2021
  23. May 27, 2021
  24. May 26, 2021
Loading