- Apr 10, 2018
-
-
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
-
- Feb 06, 2018
-
-
Martin Bauer authored
- now an lbMethod or updateRule can be passed in directly - made method/update rule/ast function independent i.e. no function uses the same parameters as on of the others
-
Martin Bauer authored
- 3 phase model works now with step sytem
-
Martin Bauer authored
-
Martin Bauer authored
- previously all objects where cached by id() - for waLBerla simulations in each time step a new np.array view is created from the waLBerla field. Each of these views has a different id -> caching did not work for waLBerla setups - changed hash for numpy arrays: instead of id, a tuple of (dataPtr, strides, shapes) is used as hash input
-
Martin Bauer authored
- scaling interface width eta instead of surface tensions tau to correct interface profile & surface tensions
-
- Jan 31, 2018
-
-
Martin Bauer authored
-
- Jan 19, 2018
-
-
Concept: Generate code involving the (un)packing of fields (from)to linear (1D) arrays, i.e. (de)serialization of the field values for buffered communication. A linear index is generated for the buffer, by inferring the strides and variables of the loops over fields in the AST. In the CPU, this information is obtained through the makeLoopOverDomain function, in pystencils/transformations/transformations.py. On CUDA, the strides of the fields (excluding buffers) are combined with the indexing variables to infer the indexing of the buffer. What is supported: - code generation for both CPU and GPU - (un)packing of fields with all the memory layouts supported by pystencils - (un)packing slices of fields (from)into the buffer - (un)packing subsets of cell values from the fields (from)into the buffer Limitations: - assumes that only one buffer and one field are being operated within each kernel, however multiple equations involving the buffer and the field are supported. - (un)packing multiple cell values (from)into the buffer is supported, however it is limited to the fields with indexDimensions=1. The same applies to (un)packing subset of cell values of each cell. Changes in this commit: - add the FieldType enumeration to pystencils/field.py, to mark fields of various types. This is replaces and is a generalization of the isIndexedField boolean flag of the Field class. For now, the types supported are: generic, indexed and buffer fields. - add the fieldType property to the Field class, which indicates the type of the field. Modifications were also performed to the member functions of the Field class to add this property. - add resolveBufferAccesses function, which replaces the fields marked as buffers with the actual field access in the AST traversal. Miscelaneous changes: - add blockDim and gridDim variables as CUDA indexing variables.
-
Martin Bauer authored
-
- Jan 18, 2018
-
-
Jan Hönig authored
Fixed demo_heat_equation notebook.
-
- Jan 11, 2018
-
-
Martin Bauer authored
- single function to create kernel for specified target - data type creation from string - reuse numpy functionality - bugfixes in dot display
-
- Dec 03, 2017
-
-
Martin Bauer authored
- loop cutting - simplification of conditionals inside loop
-
- Oct 26, 2017
-
-
Martin Bauer authored
-
- Oct 17, 2017
-
-
Jan Hönig authored
Fixed a severe bug. Renamed makePythonFunction of the llvm backend. Deleted code duplicity.
-
- Oct 10, 2017
-
-
Martin Bauer authored
- renaming because of clashes with types.py from other packages
-
Martin Bauer authored
- sympys piecewise defined functions are mapped to blend instructions - cast function is now a class - several bugfixes
-
- Oct 09, 2017
-
-
Martin Bauer authored
- first vectorization tests are running - type system: use memoized getTypeOfExpression - casts are done using sp.Function('cast') - C backend adapted for vectorization support - AST nodes can required optional headers
-
- Sep 26, 2017
-
-
Martin Bauer authored
- support for kernels that run over walberla ghost layers
-
Martin Bauer authored
- old method produced unused variables - old method was not deterministic in the output code i.e. ordering of the introduced constants - moveConstantsBeforeLoops transformation was also not deterministic
-
- Jul 07, 2017
-
-
Martin Bauer authored
-
- Jul 06, 2017
-
-
Martin Bauer authored
-
- Jul 01, 2017
-
-
Martin Bauer authored
- pystencils can create now a non-compilable kernel that can be analyzed by kerncraft
-
- Apr 24, 2017
-
-
Martin Bauer authored
-
- Apr 21, 2017
-
-
Martin Bauer authored
- periodic kernels not yet OpenMP parallel
-
- Apr 20, 2017
-
-
Martin Bauer authored
-
- Apr 15, 2017
-
-
Martin Bauer authored
-
- Apr 11, 2017
-
-
Martin Bauer authored
- cache relied on uniqueness of python id() - id may be reused if object is freed -> object must be held alive -> kernel keeps all it arguments it was ever called with, alive (problematic in terms of memory consumption)
-
- Mar 30, 2017
-
-
Martin Bauer authored
- VC 15 (2017) does not set an environment variable any more - fallback to filesystem search
-
- Mar 24, 2017
-
-
Martin Bauer authored
-
Martin Bauer authored
-
- Mar 16, 2017
-
-
Martin Bauer authored
-
- Mar 14, 2017
-
-
Martin Bauer authored
- this extension is necessary for more generic boundary treatment - cells can now be structs, i.e. contain different data types - instead of having numeric index dimensions, one can use the index per cell to adress struct elements
-
- Mar 13, 2017
-
-
Martin Bauer authored
- use data type class consistently instead of strings (in TypedSymbol, Field and jit module) - new datatype class is based on numpy types with additional specifier information (const and restrict) - translation between data type class and other modules (numpy, ctypes)
-
- Mar 05, 2017
-
-
Martin Bauer authored
- getShearRelaxationRate is a free function now -> works also with cumulant methods - better error message when calling kernels with wrong or too few parameters - entropic & incompressible is not working by default due to pdf shift -> added NotImplemented exception - new creation function for 'raw_mrt' where all relaxation rates can be independently specified - enhanced entropic creation funtion, supports omega output field now
-
- Mar 02, 2017
-
-
Martin Bauer authored
-
Martin Bauer authored
-
- Mar 01, 2017
-
-
Martin Bauer authored
- windows support - automatic caching and creation of shared library with all generated kernels - restrict keyword and function prefixes are preprocessor macros now -> easier to generate one code for linux, cuda, windows
-
- Feb 23, 2017
-
-
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
-
- Feb 21, 2017
-
-
Martin Bauer authored
-
Martin Bauer authored
-