Skip to content
Snippets Groups Projects
  1. Jul 13, 2021
  2. Jul 07, 2021
  3. Jun 29, 2021
  4. Jun 16, 2021
  5. Jun 15, 2021
  6. May 15, 2021
  7. May 05, 2021
  8. Apr 30, 2021
  9. Apr 12, 2021
  10. Mar 30, 2021
  11. Mar 29, 2021
  12. Mar 24, 2021
  13. Mar 03, 2021
  14. Feb 26, 2021
  15. Feb 22, 2021
  16. Feb 12, 2021
  17. Dec 29, 2020
  18. Dec 18, 2020
  19. Dec 17, 2020
  20. Dec 10, 2020
  21. Dec 09, 2020
  22. Dec 08, 2020
  23. Nov 22, 2020
  24. Oct 09, 2020
    • Stephan Seitz's avatar
      Bugfix: call cudaFree before resize of gpuVectors_ · 3559579d
      Stephan Seitz authored
      How could this have been working until now?
      We should not call `cudaFree` on uninitialized memory.
      
      We have to free the old pointers before resize. This also prevents
      memory leakage in case the vector gets shrinked.
      
      Apparently the previous code relied on the fact that `resize` somehow
      initialized the memory to null pointers or that `cudaFree` just ignores
      pointers it didn't allocate.
      3559579d
  25. Sep 29, 2020
  26. Jul 20, 2020
  27. Jul 18, 2020
  28. Jul 17, 2020
  29. Jul 14, 2020
    • Sebastian Eibl's avatar
      OpenMP support is now switchable within the generation script · a8129903
      Sebastian Eibl authored
      Since MSVC only has beta support for OpenMP 2.0 firstprivate
      cannot be used for these compilers. However, firstprivate
      is necessary for a reasonably safe implementation of OpenMP
      in MESA-PD. The solution is to move OpenMP support to the
      generator and disable OpenMP for the checked in version.
      The waLBerla OpenMP guards are removed as they are no longer
      needed. It is now assumed that if MESA-PD is generated with
      OpenMP support it is about to be used. If OpenMP is disabled
      with CMake warnings will pop up about undefined pragmas.
      a8129903
    • Sebastian Eibl's avatar
      d3b8cb3e
  30. Jul 10, 2020
  31. Jul 06, 2020
  32. Jul 01, 2020
  33. Jun 30, 2020
  34. Jun 29, 2020
    • Sebastian Eibl's avatar
      partial revert of 274e09cd · bf7ffbc0
      Sebastian Eibl authored
      274e09cd introduced a skip of the generation if the target file is not
      present. While this might hint a wrong target directory it also prevents the
      generation of new files. Since the provided mesa_pd.py script asks to
      confirm the target directory anyway, this skip is removed.
      bf7ffbc0