1. 05 Sep, 2024 13 commits
  2. 04 Sep, 2024 2 commits
  3. 02 Sep, 2024 1 commit
  4. 01 Sep, 2024 4 commits
    • Anton Gorenko's avatar
      Optimize sorting kernels and tune block sizes · 7279c539
      Anton Gorenko authored
      * Compile kernels with max block size of 256 threads:
        The default hipcc behavior since ROCm 4.2 is to compile kernels
        with 1024 threads unless __launch_bounds__ is specified. This
        significantly increases register pressure especially in heavy kernels
        (double precision, for example), requiring register spilling;
      * Optimize computeRange by using multiple blocks for reduction;
      * Use blocks of 1024 threads for computeBucketPositions - it is executed
        as a single work group so larger block size is faster;
      * Sort up-to lenghtNextPow2 instead of blockDim.x (faster for short
        buckets);
      * Optimize sortShortList2;
      * Optimize sortBuckets with bit instructions;
      * Decrease bucket size for non-uniform sorting: too many buckets may
        have sizes too large to sort in shared memory;
      * Add more sizes in tests.
      7279c539
    • Anton Gorenko's avatar
      Cleanup Cmake scripts for HIP platform · aca24d5f
      Anton Gorenko authored
      * Remove setting of link libraries, include and link dirs and compile
        flags for each target, instead let Cmake deal with them by linking the
        main library to hip::host hiprtc::hiprtc hip::hipfft;
      * Fix: custom command without ADD_CUSTOM_TARGET and ADD_DEPENDENCIES is
        executed for both static and shared targets;
      * Remove IF(APPLE) parts.
      aca24d5f
    • Anton Gorenko's avatar
      Add hipification of Amoeba, Drude, RPMD plugins · 6c0f3fbd
      Anton Gorenko authored
      Fix SegFault in HipCalcHippoNonbondedForceKernel
      
          HipSort was created using a temporary ref. Adding `HipContext& cu`
          field to HipCalcHippoNonbondedForceKernel fixes the issue;
      6c0f3fbd
    • Anton Gorenko's avatar
      Add hipification of CUDA platform · 89d2ff0e
      Anton Gorenko authored
      Port changes in CUDA backend to HIP
      
      Fix a warning about arithmetic operations on void* in HipArray::uploadSubArray
      
      Fix "Error Initializing context ROCm 5.3.0"
      
          https://github.com/StreamHPC/openmm-hip/issues/3
      
      
          hipDeviceSetCacheConfig returns hipErrorNotSupported on 5.3
      Co-authored-by: default avatarNick Curtis <nicholas.curtis@amd.com>
      89d2ff0e
  5. 23 Aug, 2024 2 commits
  6. 19 Aug, 2024 1 commit
  7. 06 Aug, 2024 1 commit
  8. 25 Jul, 2024 1 commit
  9. 19 Jul, 2024 1 commit
  10. 17 Jul, 2024 1 commit
    • Peter Eastman's avatar
      Debug CI failures (#4588) · e30e5b69
      Peter Eastman authored
      * Debug CI failures
      
      * Debugging
      
      * Debugging
      
      * Debugging
      
      * Debugging
      
      * Debugging
      
      * Debugging
      
      * Debugging
      
      * Debugging
      
      * Removed build that was failing
      
      * Fixed URL that had changed
      e30e5b69
  11. 09 Jul, 2024 1 commit
  12. 13 May, 2024 1 commit
  13. 03 May, 2024 1 commit
  14. 29 Apr, 2024 3 commits
  15. 10 Apr, 2024 1 commit
  16. 09 Apr, 2024 1 commit
  17. 06 Apr, 2024 2 commits
  18. 05 Apr, 2024 1 commit
  19. 28 Mar, 2024 2 commits