- 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
-
- 16 Feb, 2018 1 commit
-
-
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
-
- 11 Dec, 2017 1 commit
-
-
Martin Bauer authored
-
- 03 Dec, 2017 1 commit
-
-
Martin Bauer authored
- loop cutting - simplification of conditionals inside loop
-
- 17 Oct, 2017 1 commit
-
-
Martin Bauer authored
-
- 10 Oct, 2017 1 commit
-
-
Martin Bauer authored
-
- 11 Aug, 2017 1 commit
-
-
Martin Bauer authored
-
- 04 Aug, 2017 1 commit
-
-
Martin Bauer authored
-
- 01 Jul, 2017 1 commit
-
-
Martin Bauer authored
-
- 11 Jun, 2017 1 commit
-
-
Martin Bauer authored
-
- 09 Jun, 2017 2 commits
-
-
Martin Bauer authored
-
Martin Bauer authored
-
- 15 Apr, 2017 1 commit
-
-
Martin Bauer authored
-
- 23 Feb, 2017 1 commit
-
-
Martin Bauer authored
- due to unordered containers the same method could produce different but functionally equivalent code - this behaviour is bad for caching -> switched to ordered containers
-
- 13 Feb, 2017 1 commit
-
-
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
-