Skip to content
Snippets Groups Projects
  1. Apr 10, 2018
    • Martin Bauer's avatar
      PEP8 naming · 3bcfac93
      Martin Bauer authored
      3bcfac93
    • Martin Bauer's avatar
      pystencils: Assignment instead of sympy.Eq · 9f071fdd
      Martin Bauer authored
      - Previously sympy.Eq was used to represent assignments. However Eq
        represents equality not assignment. This means that sometimes sympy
        "simplified" an equation like a = a  to True,
      -> replaced sp.Eq by pystencils.Assignment everywhere
      - renamed EquationCollection to AssignmentCollection
      9f071fdd
  2. 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
  3. Feb 08, 2018
    • Jan Hönig's avatar
      presentation rrze · 4e5faf85
      Jan Hönig authored
      4e5faf85
    • Martin Bauer's avatar
      lbmpy phasefield · 9cf1ac28
      Martin Bauer authored
      - step class for LB phasefield generic enough to work with 3-phase and
        N-phase models
      - cahn hilliard can either be solved by LBM or by finite differences
      - 3 phase model can be solved with rho phase or without
      9cf1ac28
  4. Jan 12, 2018
  5. Jan 11, 2018
    • Martin Bauer's avatar
      pystencils cleanup · c598dc78
      Martin Bauer authored
      - single function to create kernel for specified target
      - data type creation from string - reuse numpy functionality
      - bugfixes in dot display
      c598dc78
  6. Dec 03, 2017
  7. Oct 17, 2017
  8. Oct 11, 2017
  9. Oct 10, 2017
  10. Oct 09, 2017
    • Martin Bauer's avatar
      Vectorization & Type system overhaul · ea847bc5
      Martin Bauer authored
      - first vectorization tests are running
      - type system: use memoized getTypeOfExpression
      - casts are done using sp.Function('cast')
      - C backend adapted for vectorization support
      - AST nodes can required optional headers
      ea847bc5
  11. Sep 20, 2017
  12. Aug 01, 2017
  13. Jul 26, 2017
  14. Jul 21, 2017
  15. Jul 07, 2017
  16. Apr 06, 2017
  17. Mar 24, 2017
    • Martin Bauer's avatar
      Conditional AST Node & advanced CUDA indexing · ff641ec9
      Martin Bauer authored
      - abstraction layer for selecting CUDA block and grid sizes
        - line based (was implemented before)
        - block based (new, more flexible)
      -  new conditional (if/else) ast node, which is necessary for indexing schemes (guarding if)
      ff641ec9
  18. Mar 20, 2017
  19. Mar 19, 2017
  20. Mar 16, 2017
  21. Mar 14, 2017
    • Martin Bauer's avatar
      pystencils: fields can now contain structs · ec3faf51
      Martin Bauer authored
      - this extension is necessary for more generic boundary treatment
      - cells can now be structs, i.e. contain different data types
      - instead of having numeric index dimensions, one can use the index per cell to adress struct elements
      ec3faf51
  22. Mar 13, 2017
    • Martin Bauer's avatar
      pystencils: Cleaned up type system · c8b455fe
      Martin Bauer authored
      - use data type class consistently instead of strings (in TypedSymbol, Field and jit module)
      - new datatype class is based on numpy types with additional specifier information (const and restrict)
      - translation between data type class and other modules (numpy, ctypes)
      c8b455fe
    • Jan Hoenig's avatar
      backup · 2d654ff4
      Jan Hoenig authored
      2d654ff4
  23. Mar 10, 2017
  24. Mar 02, 2017
  25. Mar 01, 2017
    • Martin Bauer's avatar
      pystencils: cpujit · dd17cd30
      Martin Bauer authored
      - windows support
      - automatic caching and creation of shared library with all generated kernels
      - restrict keyword and function prefixes are preprocessor macros now -> easier to generate one code for linux, cuda, windows
      dd17cd30
  26. Feb 23, 2017
  27. Feb 13, 2017
    • Michael Kuron's avatar
      Python 2.7 compatibility · cb05590d
      Michael Kuron authored and Martin Bauer's avatar Martin Bauer committed
      This commit makes the Python code backwards compatible down to Python 2.7. Previously it would only run on Python 3.5 and up.
      
      Problems fixed included:
      - `time.perf_counter()` doesn't exist
      - all classes need to be new-style
      - `functools.lru_cache` doesn't exist
      - only the last argument to a function call can be `*`-expanded
      - the `nonlocal` keyword doesn't exist
      - metaclasses are used with a different syntax
      - `yield from` doesn't exist
      - `tempdir.TemporaryDirectory` doesn't exist
      - iterators need a `next()` method
      cb05590d
  28. Feb 09, 2017
  29. Dec 16, 2016
  30. Dec 15, 2016
  31. Dec 08, 2016