- 27 Mar, 2022 1 commit
-
-
Markus Holzer authored
-
- 16 Mar, 2022 1 commit
-
-
- 19 Nov, 2021 1 commit
-
-
- 29 Jan, 2021 1 commit
-
-
- 19 Dec, 2020 1 commit
-
-
- 05 Oct, 2020 1 commit
-
-
- 09 Aug, 2020 1 commit
-
-
Markus Holzer authored
-
- 07 Aug, 2020 1 commit
-
-
Markus Holzer authored
-
- 14 Jun, 2020 1 commit
-
-
Markus Holzer authored
-
- 16 Jan, 2020 1 commit
-
-
Martin Bauer authored
-
- 11 Oct, 2019 1 commit
-
-
Martin Bauer authored
- bugfix: loop counter of vectorized loop now correctly stored as SIMD vector with entries i, i+1, i+2, ... - basis for in-kernel boundary handling
-
- 08 Aug, 2019 1 commit
-
-
Martin Bauer authored
- allow AST nodes in assignment collection to e.g. put RNG nodes in LB method
-
- 11 Jul, 2019 1 commit
-
-
Martin Bauer authored
-
- 03 May, 2019 1 commit
-
-
Martin Bauer authored
-
- 24 Apr, 2019 1 commit
-
-
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
-
- 16 Apr, 2019 1 commit
-
-
Martin Bauer authored
see https://github.com/sympy/sympy/issues/16662
-
- 15 Apr, 2019 1 commit
-
-
Martin Bauer authored
- replace_density_and_velocity simplification produced terms like 0 * omega, because sympy's auto-eval is turned off - sympys CSE routine can apparently only handle evaluated terms - solution: evaluate multiplications with zero (i.e. replace them by 0)
-
- 02 Apr, 2019 1 commit
-
-
Martin Bauer authored
-
- 28 Mar, 2019 1 commit
-
-
Martin Bauer authored
-
- 21 Mar, 2019 1 commit
-
-
Martin Bauer authored
This restructuring allows for easier separation of modules into separate repositories later. Also, now pip install with repo url can be used. The setup.py files have also been updated to correctly reference each other. Module versions are not extracted from git state
-
- 18 Mar, 2019 2 commits
-
-
Martin Bauer authored
- all branches are added up
-
-
- 18 Feb, 2019 1 commit
-
-
Martin Bauer authored
-
- 14 Nov, 2018 3 commits
-
-
Martin Bauer authored
- was not used consistently before - symbol names are expected to be valid C identifiers - for complicated field names, the latex_name of field should be used
-
Martin Bauer authored
-
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
-
- 26 Oct, 2018 1 commit
-
-
Martin Bauer authored
-
- 05 Sep, 2018 3 commits
-
-
Martin Bauer authored
-
Martin Bauer authored
-
Martin Bauer authored
-
- 07 Jun, 2018 1 commit
-
-
Martin Bauer authored
-
- 27 Apr, 2018 1 commit
-
-
Martin Bauer authored
- uses ast instead of text-based editing - can handle Piecewise defined functions - new decorator for simplified usage
-
- 13 Apr, 2018 1 commit
-
-
Martin Bauer authored
- removed warnings - added flake8 as CI target
-
- 11 Apr, 2018 1 commit
-
-
Martin Bauer authored
-
- 10 Apr, 2018 5 commits
-
-
Martin Bauer authored
-
Martin Bauer authored
- test run again - notebooks not yet
-
Martin Bauer authored
-
Martin Bauer authored
- assignment collection - sympyextensions
-
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
-
- 28 Mar, 2018 1 commit
-
-
Martin Bauer authored
- shortened the longest running tests, moved some configurations to longrun
-