- Jan 14, 2020
-
-
Martin Bauer authored
Make create_staggered_kernel work with OpenMP See merge request pycodegen/pystencils!123
-
Michael Kuron authored
-
Martin Bauer authored
Add DataHandling.add_arrays See merge request pycodegen/pystencils!120
-
Martin Bauer authored
Automatic Finite Volume and Volume-of-Fluid discretization See merge request pycodegen/pystencils!121
-
Michael Kuron authored
-
Stephan Seitz authored
-
- Jan 13, 2020
-
-
Stephan Seitz authored
-
Stephan Seitz authored
This adds a function for lazy people who want to write ```python dh = create_data_handling((20, 30)) dh.add_arrays('x, y(9), z') ``` instead of ```python dh = create_data_handling((20, 30)) dh.add_array('x') dh.add_array('y', values_per_cell=9) dh.add_array('z') ``` because in most cases you want to use more than one array.
-
- Jan 10, 2020
-
-
Stephan Seitz authored
Opencl datahandling See merge request pycodegen/pystencils!119
-
Stephan Seitz authored
-
Stephan Seitz authored
-
Stephan Seitz authored
-
Stephan Seitz authored
this to your children or students)
-
Stephan Seitz authored
-
Stephan Seitz authored
-
Stephan Seitz authored
-
Stephan Seitz authored
-
Stephan Seitz authored
-
Stephan Seitz authored
-
Stephan Seitz authored
-
Stephan Seitz authored
PointerType should be rendered differently in OpenCL backend
-
Stephan Seitz authored
-
Stephan Seitz authored
-
Stephan Seitz authored
-
Stephan Seitz authored
-
- Jan 09, 2020
-
-
Martin Bauer authored
Allow functions for Field.coordinate_transform See merge request pycodegen/pystencils!118
-
Martin Bauer authored
-
- Jan 08, 2020
-
-
Stephan Seitz authored
-
- Jan 03, 2020
-
-
Stephan Seitz authored
-
- Dec 19, 2019
-
-
Martin Bauer authored
Fix AssignmentCollection.{free_symbols,bound_symbols,defined_symbols} for non-Assignments See merge request pycodegen/pystencils!114
-
Stephan Seitz authored
Add a star to correctly get atoms of InterpolatorAccess See merge request pycodegen/pystencils!115 -
Stephan Seitz authored
-
Stephan Seitz authored
-
- Dec 18, 2019
-
-
Martin Bauer authored
FiniteDifferenceStaggeredStencilDerivation must be applied to field access See merge request pycodegen/pystencils!109
-
Martin Bauer authored
Update AssignmentCollection.__repr__ See merge request pycodegen/pystencils!110
-
- Dec 17, 2019
-
-
Michael Kuron authored
-
Stephan Seitz authored
`Assignment Collection for y[0,0,0]` is usually not very helpful. New representation: ``` In [6]: forward_assignments = pystencils.AssignmentCollection({ ...: z[0, 0]: x[0, 0] * sympy.log(x[0, 0] * y[0, 0]), ...: y[0,0] : x[1,1] +1 ...: }) In [7]: forward_assignments Out[7]: AssignmentCollection: z_C, y_C <- f(x_C, x_NE) ```
-
Michael Kuron authored
otherwise the index gets lost
-
Martin Bauer authored
AssignmentCollection.__bool__ See merge request pycodegen/pystencils!108
-
Martin Bauer authored
Allow `CUSTOM_FIELD`s to have a different size in transformations.py See merge request pycodegen/pystencils!107
-