1. 01 Dec, 2022 1 commit
  2. 29 Nov, 2022 2 commits
  3. 15 Nov, 2022 1 commit
  4. 11 Nov, 2022 1 commit
  5. 09 Nov, 2022 1 commit
  6. 08 Nov, 2022 2 commits
    • Peter Eastman's avatar
      Document LennardJonesForce tag (#3838) · e2a5b168
      Peter Eastman authored
      e2a5b168
    • John Chodera's avatar
      Fix #3790: Collision rate for MTS BAOAB Langevin integrator now correctly... · 28394f50
      John Chodera authored
      
      Fix #3790: Collision rate for MTS BAOAB Langevin integrator now correctly accounts for number of substeps (#3791)
      
      * Fix #3790: Collision rate for MTS BAOAB Langevin integrator now correctly accounts for number of substeps. Fix suggested by Charlie Matthews (@c-matthews)
      
      * Fix computation of total number of substeps
      
      * Add test for MTS friction
      
      * Fix typo
      
      * Fix yet another typo
      
      * Fix typo and check against analytical result
      
      * Fix typo
      
      * Fix typos
      
      * Fix more typos
      
      * Integrate MTSLangevinIntegrator for longer to allow thermalization
      
      * Revert number of integrator steps
      
      * Update TestIntegrators.py
      
      Fixed a failing test case
      Co-authored-by: default avatarPeter Eastman <peter.eastman@gmail.com>
      28394f50
  7. 07 Nov, 2022 1 commit
  8. 01 Nov, 2022 1 commit
  9. 31 Oct, 2022 5 commits
  10. 30 Oct, 2022 1 commit
    • Mike Henry's avatar
      Update hosted envs (#3818) · 02ee9325
      Mike Henry authored
      * add guide for dev builds
      
      * hosted env file for openmm-8 beta
      
      * explain how to host an env
      
      * add a namespace to support different os
      
      * pin all the versions
      
      * add version pins and env name
      
      * Added pytest
      
      * update envs
      02ee9325
  11. 22 Oct, 2022 1 commit
  12. 21 Oct, 2022 1 commit
  13. 17 Oct, 2022 1 commit
    • Mike Henry's avatar
      Feat/add host envs (#3808) · 48885911
      Mike Henry authored
      * add guide for dev builds
      
      * hosted env file for openmm-8 beta
      
      * explain how to host an env
      
      * add a namespace to support different os
      
      * pin all the versions
      
      * add version pins and env name
      
      * Added pytest
      48885911
  14. 30 Sep, 2022 2 commits
  15. 20 Sep, 2022 2 commits
  16. 12 Sep, 2022 1 commit
  17. 08 Sep, 2022 2 commits
  18. 06 Sep, 2022 2 commits
  19. 31 Aug, 2022 1 commit
  20. 26 Aug, 2022 1 commit
  21. 17 Aug, 2022 1 commit
  22. 12 Aug, 2022 1 commit
  23. 09 Aug, 2022 1 commit
  24. 02 Aug, 2022 1 commit
  25. 26 Jul, 2022 1 commit
  26. 22 Jul, 2022 1 commit
    • Adel Johar's avatar
      Final HIP Platform implementation for AMD GPUs on ROCm (#3338) · a39fa14a
      Adel Johar authored
      
      
      * Support kernel files with extensions of any length (like .hip)
      
      * Do not allow to replace symbols in single-line comments
      
      * Add OPENMM_BUILD_COMMON CMake option
      
      It allows to build and install common platform files even if
      CUDA or OpenCL platforms are not built.
      This is required for HIP platform (openmm-hip) if ROCm OpenCL
      packages are not installed.
      
      * Add an option for Python wrapper to install into user packages
      
      OPENMM_PYTHON_USER_INSTALL is OFF be default.
      
      * Support FFT backends in Amoeba plugin
      
      The HIP platform supports FFT backends, this commit moves
      findLegalFFTDimension to ComputeContext, so platforms can have their own
      implementations.
      
      * Compatibility for common platform w/ new HIP platform
      
      * Do not use volatile with private and local AtomData parameters on HIP
      
      The generated code is not optimal, for example, the compiler generates
      flat_load instructions instead of ds_read.
      
      * Tune launch bounds for PME grid-related kernels and add WA for RDNA
      
      Force the compiler to use all registers for gridSpreadCharge and
      gridInterpolateForce by limiting max waves per EU to 1 on CDNA GPUs,
      RDNA GPUs work better without it.
      
      * Optimize atom data structs in GBSA and Amoeba on HIP
      
      Manually rearrange fields, add paddings and force alignments to
      have faster accesses to shared memory: ds_read and ds_write may
      work slower if addresses are not aligned by 16 bytes.
      Co-authored-by: default avatarAnton Gorenko <anton@streamhpc.com>
      Co-authored-by: default avatarNick Curtis <nicholas.curtis@amd.com>
      a39fa14a
  27. 15 Jul, 2022 1 commit
  28. 13 Jul, 2022 1 commit
  29. 11 Jul, 2022 1 commit
  30. 30 Jun, 2022 1 commit
    • Peter Eastman's avatar
      Use PocketFFT (#3667) · 1dac981a
      Peter Eastman authored
      * Use PocketFFT instead of FFTW
      
      * Minor cleanup
      
      * Use PocketFFT instead of fftpack for reference platform
      
      * Remove FFTW as a dependency
      
      * Converted a test case to use PocketFFT
      
      * Fixed an incorrect comment
      1dac981a