- 23 Feb, 2020 1 commit
-
-
Stephan Seitz authored
-
- 21 Feb, 2020 1 commit
-
-
Christoph Rettinger authored
-
- 17 Jan, 2020 1 commit
-
-
Stephan Seitz authored
```python def to_gpu(gpu_version, cpu_version): gpu_version = gpu_version.boundary_object_to_index_list cpu_version = cpu_version.boundary_object_to_index_list > if isinstance(self.data_handling, ParallelDataHandling): E TypeError: isinstance() arg 2 must be a type or tuple of types ../pystencils/pystencils/boundaries/boundaryhandling.py:102: TypeError ``` None is not a type! ParallelDataHandling is None if `waLBerla` is not installed
-
- 16 Jan, 2020 2 commits
-
-
Martin Bauer authored
-
Martin Bauer authored
-
- 10 Jan, 2020 2 commits
-
-
Stephan Seitz authored
-
Stephan Seitz authored
this to your children or students)
-
- 11 Jul, 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
-
- 26 Feb, 2019 1 commit
-
-
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
-
- 01 Feb, 2019 1 commit
-
-
Martin Bauer authored
-
- 30 Jan, 2019 1 commit
-
-
Martin Bauer authored
boundary conditions can specify how the index list should be built: - list coordinates of domain or boundary cells (previous always inner) - list all links or only the first link
-
- 14 Nov, 2018 2 commits
-
-
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
-
- 13 Nov, 2018 1 commit
-
-
- 15 Jun, 2018 1 commit
-
-
Martin Bauer authored
- new time loop caches all kernel functions with their argument dict -> inner loop just calls C functions with cached kwargs
-
- 14 Jun, 2018 1 commit
-
-
Martin Bauer authored
- not generic enough - does not work if there a multiple blocks
-
- 13 Jun, 2018 1 commit
-
-
Martin Bauer authored
-
- 07 Jun, 2018 1 commit
-
-
Martin Bauer authored
-
- 30 Apr, 2018 1 commit
-
-
Martin Bauer authored
-
- 27 Apr, 2018 2 commits
-
-
Martin Bauer authored
-
Martin Bauer authored
-
- 18 Apr, 2018 2 commits
-
-
Martin Bauer authored
- flags can be force when setting boundaries, this is helpful for: - setting up quantities (e.g. relaxation rate..) dependent on current flag configuration - bit operation fix when pickling: function has to have the same name as the python object
-
Martin Bauer authored
- boundaries with same name have not been displayed correctly
-
- 13 Apr, 2018 1 commit
-
-
Martin Bauer authored
- removed warnings - added flake8 as CI target
-
- 12 Apr, 2018 1 commit
-
-
Martin Bauer authored
-
- 10 Apr, 2018 5 commits
-
-
Martin Bauer authored
-
Martin Bauer authored
-
Martin Bauer authored
- test run again - notebooks not yet
-
Martin Bauer authored
-
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
-
- 05 Mar, 2018 1 commit
-
-
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
-
- 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
-