1. 01 Nov, 2023 2 commits
  2. 31 Oct, 2023 2 commits
  3. 26 Oct, 2023 1 commit
  4. 24 Oct, 2023 2 commits
  5. 23 Oct, 2023 1 commit
  6. 17 Oct, 2023 1 commit
  7. 16 Oct, 2023 1 commit
    • Christopher Woods's avatar
      WIP - looking for a way to optimise performance of creating contexts by... · 03ed8ff2
      Christopher Woods authored
      WIP - looking for a way to optimise performance of creating contexts by removing temporary arrays (and their associated mallocs/frees) (#4261)
      
      * Suggesting a "haveSameParameters" function for CustomNonbondedForce which could be
      used to avoid creating temporary copies of arrays when testing if particles are
      the same.
      
      Also updating "getParticleParameters" so that it re-uses the memory of the
      passed vector argument, rather than deallocating and reallocating it
      via a copy.
      
      * Revert "Suggesting a "haveSameParameters" function for CustomNonbondedForce which could be"
      
      This reverts commit e80ec2d2e9981abb90711636bf3a78d0c49e43fc.
      
      * Moved to `thread_local static` as suggested to prevent new vector allocations on each function call.
      
      Updated `getParameters` and `getBondParameters` to re-use the memory from the argument rather
      than re-allocating via the copy.
      
      * Forgot to reuse the memory for the groups...
      
      * Reverted back the manual copies via memcpy as they aren't needed. Looking at the header
      file and benchmarking shows that std::vector does the right thing.
      
      * Confined `thread_local static` only to ForceInfo methods, and have also put declarations
      for multiple variables back onto a single line
      
      * Removed `thread_local static` from the constructor
      
      * Moved constructor declarations back into the for loop
      03ed8ff2
  8. 14 Oct, 2023 2 commits
  9. 11 Oct, 2023 1 commit
  10. 10 Oct, 2023 1 commit
  11. 02 Oct, 2023 1 commit
  12. 28 Sep, 2023 2 commits
  13. 27 Sep, 2023 1 commit
  14. 19 Sep, 2023 1 commit
  15. 16 Sep, 2023 1 commit
  16. 07 Sep, 2023 2 commits
  17. 04 Sep, 2023 2 commits
  18. 02 Sep, 2023 1 commit
  19. 01 Sep, 2023 1 commit
  20. 28 Aug, 2023 2 commits
  21. 24 Aug, 2023 1 commit
  22. 18 Aug, 2023 2 commits
  23. 16 Aug, 2023 3 commits
  24. 13 Aug, 2023 1 commit
  25. 08 Aug, 2023 1 commit
  26. 04 Aug, 2023 1 commit
  27. 03 Aug, 2023 1 commit
  28. 02 Aug, 2023 2 commits
    • Emilio Gallicchio's avatar
      Draft integration of the Alchemical Transfer Method (ATM) plugin (#4110) · d8c67699
      Emilio Gallicchio authored
      * Draft integration of the Alchemical Transfer Method (ATM) plugin
      
      * Attempt to store and retrieve forces--does not compile
      
      * Implement addForce()/getForce() methods
      
      * Throw exception when specifying properties without a Platform (#4130)
      
      * Fixed DOF calculation for NoseHooverIntegrator (#4128)
      
      * Fix variance in documentation of VerletIntegrator (#4138)
      
      * Python API for ATMForce
      
      * Fixed compilation error
      
      * Minor cleanup of formatting and documentation
      
      * Files for ATMForce test cases
      
      * More cleanup
      
      * Removed variable groups
      
      * Test ATMForce with two particles
      
      * More tests for ATMForce plus fixes
      
      * Added missing header
      
      * Rework interface to pass displacements as vector of parameters
      
      * Revert "Rework interface to pass displacements as vector of parameters"
      
      This reverts commit 5e092031f31ded1137b677588f007add1c2d6f82.
      
      * Test with nonbonded force
      
      * Allow energy expression to be custom...
      d8c67699
    • Peter Eastman's avatar