This MR introduces reductions to pystencils for scalar data types and thus covers #55.
sympyextensions
module: AddReductionAssignment, SubReductionAssignment, MulReductionAssignment, MinReductionAssignment, MaxReductionAssignmentThese can be used as follows:
import pystencils as ps
r = ps.TypedSymbol("r", "double")
x, y = ps.fields(f"x, y: double[3D]", layout="fzyx")
assign_dot_prod = ps.AddReductionAssignment(r, x.center() * y.center())
reduction_assignment
or reduction_assignment_from_str
functions:from pystencils.sympyextensions import reduction_assignment, reduction_assignment_from_str
from pystencils.sympyextensions.reduction import ReductionOp
assign_dot_prod = reduction_assignment(r, ReductionOp.Add, x.center() * y.center())
assign_dot_prod = reduction_assignment_from_str(r, "+", x.center() * y.center())
ReductionAssignment
nodesPsVecHorizontal
vectorization node for conducting a binary operation between a scalar symbol and an extraction of a vector value (obtained by performing a reduction within a vector lane)ReductionInfo
holding essential information about a reduction (i.e. reduction operation, initial value and the write-back pointer for exporting the reduction result) and create corresponding lookup table for symbols in KernelCreationContext
NumericLimitsFunctions
for initializing neutral elements for reductions making use of min/max operationsPlatform.select_function
such that it either returns an PsExpression
that replaces the function call or returns a PsExpression | tuple[tuple[PsStructuralNode, ...], PsAstNode]
holding a PsAstNode
that replaces the function call and tuple of structural nodes that are added before the replacement. The structural nodes allow adding preparatory code for the replacement, as needed for the warp-level reductions for GPU platformsReductionFunctions.WriteBackToPtr
function that is replaced with platform-dependent code in Platform.select_function