Csl stencil set global coeffs
csl_stencil_set_global_coeffs
GenerateCoeffAPICalls
dataclass
Bases: RewritePattern
Generates calls to the stencil_comms API to set coefficients.
The API currently supports only f32 coeffs.
Source code in xdsl/transforms/csl_stencil_set_global_coeffs.py
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | |
__init__() -> None
match_and_rewrite(op: csl_wrapper.ModuleOp, rewriter: PatternRewriter)
Source code in xdsl/transforms/csl_stencil_set_global_coeffs.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | |
CslStencilSetGlobalCoeffs
dataclass
Bases: ModulePass
Generates a single coeff api call - only works if all csl_stencil.apply ops use the same coeffs.
csl_stencil.apply ops must be in a main csl.func inside a module wrapper.
Source code in xdsl/transforms/csl_stencil_set_global_coeffs.py
174 175 176 177 178 179 180 181 182 183 184 185 186 187 | |
name = 'csl-stencil-set-global-coeffs'
class-attribute
instance-attribute
__init__() -> None
apply(ctx: Context, op: ModuleOp) -> None
Source code in xdsl/transforms/csl_stencil_set_global_coeffs.py
183 184 185 186 187 | |
get_dir_and_distance(offset: stencil.IndexAttr | tuple[int, ...]) -> tuple[csl.Direction, int]
Given an access op, return the distance and direction, assuming as access to a neighbour (not self) in a star-shape pattern
Source code in xdsl/transforms/csl_stencil_set_global_coeffs.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | |
get_dir_and_distance_ops(op: csl_stencil.AccessOp) -> tuple[csl.DirectionOp, arith.ConstantOp]
Given an access op, return the distance and direction ops, assuming as access to a neighbour (not self) in a star-shape pattern
Source code in xdsl/transforms/csl_stencil_set_global_coeffs.py
48 49 50 51 52 53 54 55 56 | |
get_coeff_api_ops(op: csl_stencil.ApplyOp, wrapper: csl_wrapper.ModuleOp)
Source code in xdsl/transforms/csl_stencil_set_global_coeffs.py
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | |