Skip to content
Snippets Groups Projects
  1. Feb 27, 2020
  2. Feb 22, 2020
  3. Feb 21, 2020
  4. Feb 20, 2020
  5. Feb 13, 2020
  6. Feb 07, 2020
  7. Jan 31, 2020
  8. Jan 29, 2020
  9. Sep 30, 2019
  10. Sep 27, 2019
  11. Aug 15, 2019
  12. Aug 12, 2019
  13. Aug 01, 2019
  14. Jul 29, 2019
  15. Jul 26, 2019
    • Martin Bauer's avatar
      [API] New interface for lattice model generation · 569cc1d8
      Martin Bauer authored
      - previously a LatticeBoltzmannMethod object was required to generate
        a lattice model for waLBerla
      - problem: output fields, smagorinsky, entropic additions are only done
        when coverting the method to a collision rule
      - the new interface now takes a collision rule instead of a LB method
      
      to adapt your app have a look at example usage in
      walberla/tests/lbm/codegen
      569cc1d8
  16. Jul 23, 2019
  17. Jul 11, 2019
  18. May 15, 2019
  19. May 09, 2019
  20. May 05, 2019
  21. May 03, 2019
  22. Apr 28, 2019
  23. Apr 24, 2019
    • Martin Bauer's avatar
      Improvements for GPU code generation · 5aa0445f
      Martin Bauer authored
      - turned on restrict keyword by default (makes large difference on GPUs)
      - smarter block indexing: changing block size depending on domain size
        Example: previously there where (1,1,1) blocks when requested
        block size was (64, 1, 1) and domain size (1, 512, 512), now the
        block size is changed automatically to (1, 64, 1) in this case
      - added __lauch_bounds__ to kernels to allow better optimizations from
        the CUDA compiler
      5aa0445f
  24. Apr 18, 2019