1. 28 Jan, 2021 1 commit
  2. 06 Jan, 2021 1 commit
  3. 28 Dec, 2020 1 commit
  4. 27 Dec, 2020 1 commit
  5. 23 Dec, 2020 1 commit
  6. 22 Dec, 2020 1 commit
    • informatorius's avatar
      Update IntegrationUtilities.cpp (#2891) · f29d6cc5
      informatorius authored
      * Update IntegrationUtilities.cpp
      
      * Use pinned buffer and for context download
      * use template to reduce duplicate code
      
      * Remove template and only add PinnedBuffer for minor performance improvement
      
      * Use pinned buffer for minor performance improvement
      
      Co-authored-by: xxx <yyy>
      f29d6cc5
  7. 12 Dec, 2020 1 commit
  8. 10 Dec, 2020 2 commits
  9. 25 Nov, 2020 1 commit
  10. 02 Nov, 2020 1 commit
    • bdenhollander's avatar
      Fix 4GB memory check (#2909) · 83dcb4e2
      bdenhollander authored
      4*(1<<30) evaluates to 0 so the check returns true on 2GB cards. Test runs fine on 2GB cards but requires over 4GB of system memory.
      83dcb4e2
  11. 08 Oct, 2020 1 commit
  12. 25 Sep, 2020 1 commit
  13. 24 Sep, 2020 1 commit
  14. 16 Sep, 2020 1 commit
  15. 10 Sep, 2020 1 commit
  16. 03 Sep, 2020 2 commits
  17. 02 Sep, 2020 1 commit
  18. 28 Aug, 2020 1 commit
  19. 20 Aug, 2020 1 commit
  20. 18 Aug, 2020 1 commit
  21. 29 Jul, 2020 1 commit
  22. 28 Jul, 2020 1 commit
  23. 13 Jul, 2020 2 commits
  24. 01 Jul, 2020 1 commit
  25. 24 Jun, 2020 3 commits
  26. 15 Jun, 2020 1 commit
  27. 09 Jun, 2020 1 commit
  28. 02 Jun, 2020 1 commit
  29. 01 Jun, 2020 2 commits
  30. 29 May, 2020 1 commit
  31. 27 May, 2020 1 commit
  32. 25 May, 2020 1 commit
  33. 22 May, 2020 2 commits
    • Thomas Trummer's avatar
      Fix invalid call to __host__ function in computeBondedForces · 62f7a04c
      Thomas Trummer authored
      Explicitly cast the second parameter to the type of the first one so the compiler can pick an overload that is supported in device code (fixes error: calling a __host__ function("fmin<float, int, (int)0> ") from a __global__ function("computeBondedForces") is not allowed).
      62f7a04c
    • Thomas Trummer's avatar
      Removed name of variadic argument list · f0ac4661
      Thomas Trummer authored
      Naming the argument list of a variadic macro is a GNU extension which is not supported by msvc. Since CUDA uses the system preprocessor this will fail to build kernels on Windows (fixes error C2010: '.': unexpected in macro parameter list).
      f0ac4661