"plugins/amoeba/platforms/hip/CMakeLists.txt" did not exist on "b7088b74013784d6bad5d5a27923974bfacdaaea"
  1. 24 Apr, 2014 1 commit
  2. 14 Apr, 2014 2 commits
  3. 12 Apr, 2014 2 commits
  4. 09 Apr, 2014 2 commits
  5. 05 Apr, 2014 1 commit
  6. 04 Apr, 2014 2 commits
  7. 02 Apr, 2014 1 commit
  8. 28 Mar, 2014 3 commits
  9. 27 Mar, 2014 9 commits
  10. 13 Mar, 2014 1 commit
  11. 12 Mar, 2014 2 commits
  12. 05 Mar, 2014 1 commit
  13. 26 Feb, 2014 1 commit
  14. 18 Feb, 2014 1 commit
  15. 06 Feb, 2014 1 commit
  16. 05 Feb, 2014 1 commit
    • Jason Swails's avatar
      In the generated C wrappers, instantiate std::string arguments from · fd1bb3d2
      Jason Swails authored
      'const char*' by passing it straight to the std::string constructor rather than
      through a reinterpret_cast.  This solves segfaults when trying to use the OpenMM
      C-API (which is auto-generated from the generate*Wrappers.py scripts) when used
      with gcc/g++.  clang and clang++ seem to accept this (perhaps why it was not
      caught before).
      
      After these changes, the OpenMM-Tinker binding works again with the current git
      version of OpenMM.
      fd1bb3d2
  17. 01 Feb, 2014 1 commit
  18. 31 Jan, 2014 4 commits
  19. 30 Jan, 2014 1 commit
  20. 28 Jan, 2014 3 commits
    • Jason Swails's avatar
      Convert 1/A to 1/nm · e8baa3be
      Jason Swails authored
      e8baa3be
    • Jason Swails's avatar
      Convert temperature from a quantity to float if it's a quantity. · 3872f39b
      Jason Swails authored
      Fix case when OBC2 GB model is used and the salt concentration is non-zero. When
      the salt concentration is non-zero, the customgbforces implementation has to be
      used (since the native kernel does not support salt concentrations).  However,
      since the native kernel runs ~2x faster on CUDA (and most likely far more
      efficiently on CPU and Reference, most likely), it is worth continuing to use
      the native kernel when possible.
      3872f39b
    • Jason Swails's avatar
      Update implicit solvent salt concentration/kappa handling. Now, if · 9519a9e9
      Jason Swails authored
      implicitSolventKappa is provided it will be used. Otherwise,
      implicitSolventSaltConc will be used to compute kappa from the solvent
      dielectric constant and simulation temperature.
      
      In order to provide a target temperature, an optional 'temperature' parameter
      had to be added to the function call. The docstring makes it clear that
      temperature is only used for the salt concentration -> debye length conversion.
      9519a9e9