Skip to content
Snippets Groups Projects
  1. May 05, 2019
  2. May 03, 2019
  3. Apr 28, 2019
  4. 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
  5. Apr 18, 2019
  6. Mar 21, 2019
  7. Mar 07, 2019
  8. Feb 26, 2019
    • Martin Bauer's avatar
      Random number generation support for pystencils · 4169807c
      Martin Bauer authored
      - counter-based philox RNG: counter/key is filled with cell coordinate
        and optional external parameters like block position and time step
      - works on CPU and GPU - on CPU only for non-vectorized versions
      
      - introduced more flexible "CustomCodeNode" that can inject
        backend-specific hand-written code
      4169807c
  9. Feb 18, 2019
  10. Jan 28, 2019
  11. Jan 24, 2019
  12. Jan 23, 2019
    • Martin Bauer's avatar
      waLBerla codegeneration improved · 5e6fe078
      Martin Bauer authored
      - removed warnings from generated code
      - made generated code string deterministic, generating the same twice
        gives binary equally files now
      5e6fe078
  13. Nov 14, 2018
    • Martin Bauer's avatar
      Pass field information (shape,stride) as single elements instead of arr · 9d8a7264
      Martin Bauer authored
      - small (length < 5) arrays with shape and stride information had to be
        memcpy'd to the GPU before every kernel call
      - instead of passing the information as arrays, the single elements are
        passed
      - leads to more function arguments, but simplifies GPU kernel calls
      
      -> changes in all backends required
      9d8a7264
  14. Nov 13, 2018
  15. Oct 29, 2018
  16. Oct 25, 2018
  17. Oct 23, 2018
  18. Oct 18, 2018
  19. Oct 16, 2018
  20. Jul 05, 2018
  21. Jul 03, 2018
    • Martin Bauer's avatar
      Sparse (List) LBM refactoring · e79e848e
      Martin Bauer authored
      - separate lbmpy module
      - code generation for walberla
      - isolated code to generate a listlbm update rule from collision rule
      e79e848e
  22. May 28, 2018
  23. Apr 27, 2018
  24. Apr 24, 2018
  25. Apr 10, 2018
  26. Mar 29, 2018
  27. Mar 27, 2018
  28. Mar 22, 2018
  29. Feb 16, 2018
    • Martin Bauer's avatar
      Boundary handling for Finite Differences · 32c9595d
      Martin Bauer authored
      - splitted existing LBM boundary handling into two parts:
          -> generic part , that is used for FD as well and moved it to pystencils
          -> LBM specific part - remained in lbmpy
      
      - bugfixes
      32c9595d
  30. Feb 06, 2018
    • Martin Bauer's avatar
      LB creation functions: more flexibility · dbf7b6c6
      Martin Bauer authored
      - now an lbMethod or updateRule can be passed in directly
      - made method/update rule/ast function independent i.e. no function
        uses the same parameters as on of the others
      dbf7b6c6