"platforms/opencl/vscode:/vscode.git/clone" did not exist on "f2a9c2100e9b127f72c5f4d03c62972d731f9d4c"
  1. 12 Dec, 2020 1 commit
  2. 10 Dec, 2020 2 commits
  3. 25 Nov, 2020 1 commit
  4. 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
  5. 08 Oct, 2020 1 commit
  6. 25 Sep, 2020 1 commit
  7. 24 Sep, 2020 1 commit
  8. 16 Sep, 2020 1 commit
  9. 10 Sep, 2020 1 commit
  10. 03 Sep, 2020 2 commits
  11. 02 Sep, 2020 1 commit
  12. 28 Aug, 2020 1 commit
  13. 20 Aug, 2020 1 commit
  14. 18 Aug, 2020 1 commit
  15. 29 Jul, 2020 1 commit
  16. 28 Jul, 2020 1 commit
  17. 13 Jul, 2020 2 commits
  18. 01 Jul, 2020 1 commit
  19. 24 Jun, 2020 3 commits
  20. 15 Jun, 2020 1 commit
  21. 09 Jun, 2020 1 commit
  22. 02 Jun, 2020 1 commit
  23. 01 Jun, 2020 2 commits
  24. 29 May, 2020 1 commit
  25. 27 May, 2020 1 commit
  26. 25 May, 2020 1 commit
  27. 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
  28. 18 May, 2020 1 commit
  29. 06 May, 2020 1 commit
  30. 05 May, 2020 1 commit
  31. 04 May, 2020 1 commit
    • Andy Simmonett's avatar
      Nosé Hoover Middle scheme (#2600) · 5f374e1d
      Andy Simmonett authored
      * Convert Nose-Hoover into LF middle scheme by copying NH kernels
      
      * Rebrand VelocityVerletIntegrator as NoseHooverIntegrator
      
      * Consolidate NH tests
      
      * NoseHooverChainKernel begone
      
      * Make Windows builds happy
      
      * Add missing header for Windows build
      
      * Fix mistake in CommonKernels header
      
      * Add 6th Yoshida-Suzuki and make it the default
      5f374e1d
  32. 30 Apr, 2020 1 commit
    • dwtowner's avatar
      [WIP] CPU: Refactored code to be generic across vector CPU platforms. (#2661) · 91952b51
      dwtowner authored
      * CPU: Refactored code to be generic across vector CPU platforms.
      
      Ewald and non-Ewald interactions now share a common code base, templated on
      their interaction type.
      
      The vec4 and vec8 implementations have been replaced by a single generic implementation
      class which is templated on SIMD type. Currently works for SIMD4 and SIMD8 types, but
      can be extended in future to support other types (e.g., AVX-512).
      
      Modified runtime CPU support to lay groundwork for future SIMD types.
      
      Pulled out some vector utility functions (gather pair, reduce),
      and refactored the AVX CPU code to make use of them.
      
      * CPU: Fixed coding standards and incorrect header include.
      
      * CPU: Fixed code review comments from PR #2661
      
      * CPU: Fixed CI build issues.
      
      * CPU: Further CI fixes.
      
      * CPU: Fix for unit test failure on MacOS.
      
      Reverted optimised code to go back to a version which is thought to work
      on MacOS. The optimisation will be ...
      91952b51
  33. 14 Apr, 2020 1 commit