- 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 1 commit
-
-
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
-
- 10 Apr, 2018 6 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
- switched to google style docstrings - removed dead code - started to annotate types
-
- 31 Jan, 2018 2 commits
-
-
Martin Bauer authored
-
Martin Bauer authored
-
- 11 Jan, 2018 1 commit
-
-
Martin Bauer authored
- single function to create kernel for specified target - data type creation from string - reuse numpy functionality - bugfixes in dot display
-
- 03 Dec, 2017 2 commits
-
-
Martin Bauer authored
-
Martin Bauer authored
- loop cutting - simplification of conditionals inside loop
-
- 24 Oct, 2017 1 commit
-
-
Jan Hönig authored
Testcases test_mu_equivalence, test_phi_equivalence are passing.
-
- 11 Oct, 2017 1 commit
-
-
Jan Hönig authored
Added LLVM: CodePrinter and a compiler Updated data_types Added tests Added jupyter notebooks Fixed bugs Restructured transformation functions
-