- 30 Nov, 2019 1 commit
-
-
Michael Kuron authored
move_constants_before_loop needed to be changed to move already-existing variables up if necesesary and to preserve constness when renaming variables
-
- 11 Oct, 2019 2 commits
-
-
Stephan Seitz authored
-
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
-
- 01 Oct, 2019 2 commits
-
-
-
Martin Bauer authored
-
- 30 Sep, 2019 1 commit
-
-
Stephan Seitz authored
This removed some checks like `ctr1 <= 0` from my kernels
-
- 27 Sep, 2019 1 commit
-
-
Stephan Seitz authored
-
- 25 Sep, 2019 1 commit
-
-
- 24 Sep, 2019 2 commits
-
-
Stephan Seitz authored
-
Stephan Seitz authored
-
- 23 Sep, 2019 2 commits
-
-
Stephan Seitz authored
There is now a superior implementation in pystencils_autodiff. This is actually a AST Node for wrapper code. pystencils_autodiff has now a AST printer for framework integration code. So framework AST nodes are now there and kernel AST nodes remain here.
-
Stephan Seitz authored
-
- 19 Aug, 2019 1 commit
-
-
Stephan Seitz authored
Sum and Product have a indexing variable which is a Atom but not a free symbol
-
- 15 Aug, 2019 2 commits
-
-
Stephan Seitz authored
-
Stephan Seitz authored
-
- 05 Aug, 2019 1 commit
-
-
Stephan Seitz authored
This commit avoid dependency of core pystencils on jinja2. However this could make the printing of some AST-nodes less elegant.
-
- 18 Jul, 2019 1 commit
-
-
- rename header Field.h is not a unique name in waLBerla context - add PyStencilsField.h - bindings were lacking data type
-
- 15 Jul, 2019 1 commit
-
-
Stephan Seitz authored
-
- 11 Jul, 2019 2 commits
-
-
Martin Bauer authored
-
Martin Bauer authored
- backend, target and compile are now normal members of the KernelFunction node and populated in constructor
-
- 10 Jul, 2019 2 commits
-
-
Stephan Seitz authored
-
Stephan Seitz authored
DestructuringBindingsForFieldClass defines all field-related variables in its subordinated block. However, it leaves a TypedSymbol of type 'Field' for each field undefined. By that trick we can generate kernels that accept structs as kernelparameters. Either to include a pystencils specific Field struct of the following definition: ```cpp template<DTYPE_T, DIMENSION> struct Field { DTYPE_T* data; std::array<DTYPE_T, DIMENSION> shape; std::array<DTYPE_T, DIMENSION> stride; } or to be able to destructure user defined types like `pybind11::array`, `at::Tensor`, `tensorflow::Tensor` ```
-
- 12 Jun, 2019 1 commit
-
-
Martin Bauer authored
Block.subs method tried to be too smart: a = field[..] b = a + b was "simplified" incorrectly to b = field[...] + b
-
- 03 May, 2019 1 commit
-
-
Martin Bauer authored
-
- 01 Apr, 2019 2 commits
-
-
Martin Bauer authored
-
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
-
- 15 Mar, 2019 1 commit
-
-
Martin Bauer authored
-
- 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
-
- 13 May, 2018 1 commit
-
-
Martin Bauer authored
- support aligned load/stores - nontemporal stores - aligned memory allocation for arrays and temporary buffers
-
- 11 May, 2018 1 commit
-
-
Martin Bauer authored
- vectorization for loops with ranges that are not a multiple of vector width - vectorization for variable sized loops if special transformation replace_inner_stride_with_one is run
-
- 30 Apr, 2018 1 commit
-
-
Martin Bauer authored
-
- 27 Apr, 2018 1 commit
-
-
Martin Bauer authored
-
- 18 Apr, 2018 3 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
- new kernel creation function for kernels that write to staggered fields - simplification of conditionals with integers uses ISL library now via islpy bindings
-
Martin Bauer authored
-
- 13 Apr, 2018 1 commit
-
-
Martin Bauer authored
- removed warnings - added flake8 as CI target
-