Skip to content
Snippets Groups Projects
  1. Nov 14, 2018
    • Martin Bauer's avatar
      Pass field information (shape,stride) as single elements instead of arr · 7a94740d
      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
      7a94740d
  2. Nov 13, 2018
  3. Jun 15, 2018
  4. Jun 14, 2018
  5. Jun 13, 2018
  6. Jun 07, 2018
  7. Apr 30, 2018
  8. Apr 27, 2018
  9. Apr 18, 2018
  10. Apr 13, 2018
  11. Apr 12, 2018
  12. Apr 10, 2018
  13. Mar 05, 2018
    • Martin Bauer's avatar
      Boundary conditions · fd68e34d
      Martin Bauer authored
      - in-kernel Neumann boundaries
      - flag-interface for boundary handling makes one flag field multiple
        boundary handlings possible
      - generator: support for bitwise logical operators
      fd68e34d
  14. Feb 16, 2018
    • Martin Bauer's avatar
      Boundary handling for Finite Differences · ffcf6991
      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
      ffcf6991