1. 02 Jul, 2025 1 commit
  2. 18 Jun, 2025 1 commit
  3. 07 Jun, 2025 2 commits
    • Anton Gorenko's avatar
      Use fixed point charge spreading on RDNA4 (#4960) · 1ce5d91d
      Anton Gorenko authored
      * Use fixed point spread charge on RDNA4 as it is faster
      
      Even though RDNA4 (gfx12) has global_atomic_add_f32, micro-benchmarks and OpenMM benchmarks show
      that it is very slow compared to global_atomic_add_u64.
      
      * Add a workaround for fixed point gridSpreadCharge on RDNA4
      
      Workaround for rare cases when few values of pmeGrid are very large and
      incorrect. The cause is unknown. Why this workaround or other irrelevant
      changes like printf help is also unknown.
      1ce5d91d
    • Anton Gorenko's avatar
      Fix computeNonbonded hang on the HIP platform (#4959) · a4b43a04
      Anton Gorenko authored
      * Add a workaround for infinite loop in computeNonbonded (HIP)
      
      computeNonbonded hangs in some tests (without neighbor list).
      Reproducible on ROCm 6.4 and 6.4.1 (maybe on older versions too) on various architectures (both CDNA and RDNA).
      Affected tests: TestHipATMForce, TestHipMonteCarloBarostat, TestHipNonbondedForce, TestHipVirtualSites.
      
      Disassembly shows that the compiler splits branches of `if (skipBase+tgx < NUM_TILES_WITH_EXCLUSIONS)` and does
      `SHFL(skipTiles, TILE_SIZE-1) < pos` checks in them separately, even though `__builtin_amdgcn_ds_bpermute`
      is a convergent function. Apparently in this case not all lanes participate in each call.
      
      * Simplify includeTile check using ballot
      a4b43a04
  4. 05 Jun, 2025 4 commits
  5. 02 Jun, 2025 1 commit
  6. 25 May, 2025 1 commit
  7. 24 May, 2025 1 commit
  8. 23 May, 2025 1 commit
  9. 20 May, 2025 2 commits
  10. 08 May, 2025 1 commit
  11. 05 May, 2025 4 commits
  12. 02 May, 2025 4 commits
  13. 01 May, 2025 1 commit
  14. 30 Apr, 2025 1 commit
  15. 28 Apr, 2025 3 commits
    • Peter Eastman's avatar
      Unified interface for queues (#4913) · dd320bcf
      Peter Eastman authored
      * Unified interface for queues
      
      * Simplified stream handling in CudaFFT3D
      
      * HIP implementation of ComputeQueue
      dd320bcf
    • Peter Eastman's avatar
      Created CustomVolumeForce (#4902) · baf7942c
      Peter Eastman authored
      * Created CustomVolumeForce
      
      * Serialization for CustomVolumeForce
      
      * Documentation for CustomVolumeForce
      
      * Code simplification
      
      * Removed unused code
      baf7942c
    • Peter Eastman's avatar
      Added computeCurrentPressure() to MonteCarloBarostat (#4881) · bce0c133
      Peter Eastman authored
      * Added computeCurrentPressure() to MonteCarloBarostat
      
      * Use instantaneous temperature to compute pressure
      
      * Added computeCurrentPressure() to MonteCarloAnisotropicBarostat
      
      * Added computeCurrentPressure() to MonteCarloMembraneBarostat
      
      * Fixed compilation error
      
      * Fixed error in typemap
      
      * Added documentation on computing pressure
      
      * Fixed CUDA compilation errors
      
      * Made test case more robust
      
      * Made a test case more robust
      
      * Added computeCurrentPressure() to MonteCarloFlexibleBarostat
      
      * Fixed compilation error
      
      * More documentation on computing pressure
      bce0c133
  16. 25 Apr, 2025 1 commit
  17. 23 Apr, 2025 1 commit
  18. 22 Apr, 2025 2 commits
  19. 17 Apr, 2025 2 commits
  20. 16 Apr, 2025 2 commits
  21. 14 Apr, 2025 1 commit
    • Peter Eastman's avatar
      DPDIntegrator (#4799) · de180e4e
      Peter Eastman authored
      * Created DPDIntegrator class
      
      * Reference implementation of DPDIntegrator
      
      * Build neighbor list for DPDIntegrator
      
      * Minor fixes
      
      * Documentation for DPDIntegrator
      
      * Python API for DPDIntegrator
      
      * Preliminary OpenCL implementation of DPDIntegrator
      
      * Enable USE_PERIODIC
      
      * Use updated positions in DPD thermostat
      
      * Working on neighbor list for OpenCL DPDIntegrator
      
      * ReorderListener for particle types
      
      * Serialization for DPDIntegrator
      
      * CUDA implementation of DPDIntegrator
      
      * HIP implementation of DPDIntegrator
      
      * Fixed compile error in Python wrapper
      
      * Fixed compile error in wrappers
      
      * Fixed uninitialized memory in reference neighbor list
      
      * Added DPDIntegrator to C++ API docs
      
      * Fixed incorrect launch size
      
      * Fixed nan in DPD random number generator
      
      * Minor optimizations
      
      * Improved load balancing
      
      * Fixed an indexing error
      
      * Neighbor list uses the maximum cutoff of any force
      
      * Fixed HIP compilation error
      
      * Fixed access to invalid memory
      
      * Added test case for diffusion coefficient
      
      * Try to debug segfaults on CI
      
      * Debugging
      
      * Debugging
      
      * Debugging
      
      * Debugging
      
      * Debugging
      
      * Debugging
      
      * Possible fix
      
      * Debugging
      
      * Debugging
      
      * Debugging
      
      * Use correct block size on CPU OpenCL
      
      * Workaround for bug in Intel's OpenCL for CPUs
      
      * Removed an unnecessary define
      
      * Removed debugging code
      
      * Include Dart
      
      * More Intel workarounds
      
      * Workaround for error in NVIDIA OpenCL
      de180e4e
  22. 02 Apr, 2025 2 commits
    • Jinfeng's avatar
      Drude wrapper (#4871) · 1ece5c28
      Jinfeng authored
      * modifiy CMakeLists.txt to generate drude fortran wrapper
      
      * modify doxyfile and wrapper generation wrapper
      1ece5c28
    • Stefan Doerr's avatar
      Fixing XTC/DCD time and step writing (#4879) · 2ff294c6
      Stefan Doerr authored
      * add tests for correctness of step and time written in XTC and DCD
      
      * improve tests
      
      * improve xtc tests
      
      * fix XTC/DCD time/step writing
      
      * different approach by changing the reporters to not pass currentStep as firstStep but instead interval
      
      * undo change
      2ff294c6
  23. 01 Apr, 2025 1 commit