1. 13 Aug, 2025 1 commit
  2. 12 Aug, 2025 2 commits
    • Emilio Gallicchio's avatar
      Variable distance-based displacements for ATMForce (#4776) · 3645e1ee
      Emilio Gallicchio authored
      
      
      * Variable displacements based on particle positions
      
      * set variable displacements when adding particles
      
      * update documentation
      
      * address compilation error in OpenMMFortranWrapper
      
      * update python API tests
      
      * fix stray 'and'
      
      * addParticle() without arguments add a particle that is not displaced
      
      * pack displacement particles into int4
      
      * put back default displacement removed in error
      
      * ATMForce interface with coordinate transformation objects
      
      * revise variable displacement API
      
      * documentation, formatting, serialization
      
      * Fixed C and Fortran wrappers
      
      * Fixed Python wrappers
      
      * Fixed factory
      
      * Sort files to ensure classes are listed in the correct order
      
      * Converted APIUnits test to new ATMForce API
      
      * write class name
      
      * skip the documentation for forward declarations
      
      * undo 9e91d0b since it does not fix the doc build
      
      * remove temporary doc files for nested classes
      
      * Clean away tabs
      
      ---------
      Co-authored-by: default avatarPeter Eastman <peastman@stanford.edu>
      3645e1ee
    • Peter Eastman's avatar
      Convert C++ types to Python types in API docs (#5036) · 4a956a72
      Peter Eastman authored
      * Convert C++ types to Python types in API docs
      
      * Translate some more types
      
      * Convert return types that are STL containers
      4a956a72
  3. 11 Aug, 2025 1 commit
    • Peter Eastman's avatar
      Adaptive quantum thermal bath (#4995) · 2af004b6
      Peter Eastman authored
      * Began implementing QTBIntegrator
      
      * Adaptation and deconvolution
      
      * Continuing reference implementation
      
      * Continuing to implement QTBIntegrator
      
      * Use common thread pool
      
      * More tests, documentation, and threading
      
      * Fix segfault
      
      * Serialize adapted friction when creating a State
      
      * Beginning of GPU implementation
      
      * Added missing files
      
      * Bug fixes
      
      * Fixed inverse FFT
      
      * Continuing GPU implementation
      
      * Checkpointing
      
      * Bug fixes
      
      * Test cases run faster
      
      * Changes needed for latest main branch
      
      * Minor optimizations
      
      * Documentation
      
      * Fixed atom reordering
      
      * Added parahydrogen test case
      
      * Workaround for bug in Microsoft's compiler
      
      * Added a Python test
      
      * Normalize kernel in deconvolution
      
      * Minor documentation improvements
      2af004b6
  4. 07 Aug, 2025 1 commit
    • feiglab's avatar
      fix for scaled 1-4 LJ interactions when NBFIX is present in Gromacs topology file (#5032) · d2a5d7e4
      feiglab authored
      * fix to correctly read Gromacs topology files for CHARMM force field
      
      * updated fix to correctly read topology files with NBFIX and different combination rules
      
      * fixes to read topology files with NBFIX and different combination rules
      
      * changed default for useDispersionCorrection to True
      
      * changed docstring default for useDispersionCorrection to 'True'
      
      * fix scaling of 1-4 LJ pairs when NBFIX is used
      d2a5d7e4
  5. 06 Aug, 2025 3 commits
  6. 05 Aug, 2025 4 commits
  7. 04 Aug, 2025 2 commits
  8. 29 Jul, 2025 2 commits
  9. 28 Jul, 2025 2 commits
  10. 25 Jul, 2025 1 commit
  11. 23 Jul, 2025 3 commits
  12. 19 Jul, 2025 1 commit
  13. 18 Jul, 2025 1 commit
  14. 16 Jul, 2025 2 commits
  15. 15 Jul, 2025 1 commit
  16. 09 Jul, 2025 2 commits
  17. 07 Jul, 2025 1 commit
  18. 03 Jul, 2025 1 commit
  19. 02 Jul, 2025 5 commits
  20. 18 Jun, 2025 1 commit
  21. 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
  22. 05 Jun, 2025 1 commit