singe-kernel 0.1.0-alpha.4

Reusable CPU and GPU kernels.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
46
47
48
49
50
51
52
53
54
55
56
57
58
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
114
115
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
// @generated by cargo xtask gen-cutile-dtype-kernels
// Do not edit generated entries by hand.

#[cutile::module]
mod kernels {
    use cutile::core::*;
    pub fn binary_store<const OP: i32, const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        let lhs_tile: Tile<f32, { [B] }> = load_tile_like(lhs, out);
        let rhs_tile: Tile<f32, { [B] }> = load_tile_like(rhs, out);
        let value = if OP == 0 {
            lhs_tile + rhs_tile
        } else if OP == 1 {
            lhs_tile - rhs_tile
        } else if OP == 2 {
            lhs_tile * rhs_tile
        } else if OP == 3 {
            lhs_tile / rhs_tile
        } else if OP == 4 {
            maxf(lhs_tile, rhs_tile, nan::Enabled, ftz::Disabled)
        } else if OP == 5 {
            minf(lhs_tile, rhs_tile, nan::Enabled, ftz::Disabled)
        } else if OP == 6 {
            atan2(lhs_tile, rhs_tile)
        } else if OP == 7 {
            lhs_tile - floor(lhs_tile / rhs_tile) * rhs_tile
        } else if OP == 8 {
            pow(lhs_tile, rhs_tile)
        } else if OP == 9 {
            sqrt(
                lhs_tile * lhs_tile + rhs_tile * rhs_tile,
                rounding::NearestEven,
                ftz::Disabled,
            )
        } else if OP == 10 {
            let diff = lhs_tile - rhs_tile;
            diff * diff
        } else if OP == 11 {
            let max = maxf(lhs_tile, rhs_tile, nan::Enabled, ftz::Disabled);
            let neg_inf = constant(f32::NEG_INFINITY, out.shape());
            let both_neg_inf = cmpf(lhs_tile, neg_inf, predicate::Equal, cmp_ordering::Ordered)
                & cmpf(rhs_tile, neg_inf, predicate::Equal, cmp_ordering::Ordered);
            let value = max + log(exp(lhs_tile - max) + exp(rhs_tile - max));
            select(both_neg_inf, neg_inf, value)
        } else if OP == 12 {
            let zero = constant(0.0f32, out.shape());
            let zero_lhs = cmpf(lhs_tile, zero, predicate::Equal, cmp_ordering::Ordered);
            select(zero_lhs, zero, lhs_tile * log(rhs_tile))
        } else {
            lhs_tile
        };
        out.store(value);
    }
    pub fn cmp_store<const OP: i32, const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        let lhs_tile: Tile<f32, { [B] }> = load_tile_like(lhs, out);
        let rhs_tile: Tile<f32, { [B] }> = load_tile_like(rhs, out);
        let one = constant(1.0f32, out.shape());
        let zero = constant(0.0f32, out.shape());
        let mask = if OP == 0 {
            cmpf(lhs_tile, rhs_tile, predicate::Equal, cmp_ordering::Ordered)
        } else if OP == 1 {
            cmpf(
                lhs_tile,
                rhs_tile,
                predicate::NotEqual,
                cmp_ordering::Unordered,
            )
        } else if OP == 2 {
            cmpf(
                lhs_tile,
                rhs_tile,
                predicate::LessThan,
                cmp_ordering::Ordered,
            )
        } else if OP == 3 {
            cmpf(
                lhs_tile,
                rhs_tile,
                predicate::LessThanOrEqual,
                cmp_ordering::Ordered,
            )
        } else if OP == 4 {
            cmpf(
                lhs_tile,
                rhs_tile,
                predicate::GreaterThan,
                cmp_ordering::Ordered,
            )
        } else {
            cmpf(
                lhs_tile,
                rhs_tile,
                predicate::GreaterThanOrEqual,
                cmp_ordering::Ordered,
            )
        };
        out.store(select(mask, one, zero));
    }
    pub fn cmp_bool_store<const OP: i32, const B: i32>(
        out: &mut Tensor<u8, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        let lhs_tile: Tile<f32, { [B] }> = load_tile_like(lhs, out);
        let rhs_tile: Tile<f32, { [B] }> = load_tile_like(rhs, out);
        let one = constant(1u8, out.shape());
        let zero = constant(0u8, out.shape());
        let mask = if OP == 0 {
            cmpf(lhs_tile, rhs_tile, predicate::Equal, cmp_ordering::Ordered)
        } else if OP == 1 {
            cmpf(
                lhs_tile,
                rhs_tile,
                predicate::NotEqual,
                cmp_ordering::Unordered,
            )
        } else if OP == 2 {
            cmpf(
                lhs_tile,
                rhs_tile,
                predicate::LessThan,
                cmp_ordering::Ordered,
            )
        } else if OP == 3 {
            cmpf(
                lhs_tile,
                rhs_tile,
                predicate::LessThanOrEqual,
                cmp_ordering::Ordered,
            )
        } else if OP == 4 {
            cmpf(
                lhs_tile,
                rhs_tile,
                predicate::GreaterThan,
                cmp_ordering::Ordered,
            )
        } else {
            cmpf(
                lhs_tile,
                rhs_tile,
                predicate::GreaterThanOrEqual,
                cmp_ordering::Ordered,
            )
        };
        out.store(select(mask, one, zero));
    }
    #[cutile::entry()]
    pub fn add_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        binary_store::<0i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn sub_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        binary_store::<1i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn mul_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        binary_store::<2i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn div_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        binary_store::<3i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn pow_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        binary_store::<8i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn fma_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
        acc: &Tensor<f32, { [-1] }>,
    ) {
        let lhs_tile: Tile<f32, { [B] }> = load_tile_like(lhs, out);
        let rhs_tile: Tile<f32, { [B] }> = load_tile_like(rhs, out);
        let acc_tile: Tile<f32, { [B] }> = load_tile_like(acc, out);
        out.store(fma(
            lhs_tile,
            rhs_tile,
            acc_tile,
            rounding::NearestEven,
            ftz::Disabled,
        ));
    }
    #[cutile::entry()]
    pub fn maximum_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        binary_store::<4i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn minimum_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        binary_store::<5i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn atan2_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        binary_store::<6i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn modulo_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        binary_store::<7i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn hypot_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        binary_store::<9i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn squared_difference_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        binary_store::<10i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn logaddexp_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        binary_store::<11i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn xlogy_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        binary_store::<12i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn equal_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        cmp_store::<0i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn not_equal_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        cmp_store::<1i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn less_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        cmp_store::<2i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn less_equal_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        cmp_store::<3i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn greater_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        cmp_store::<4i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn greater_equal_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        cmp_store::<5i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn equal_bool_f32<const B: i32>(
        out: &mut Tensor<u8, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        cmp_bool_store::<0i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn not_equal_bool_f32<const B: i32>(
        out: &mut Tensor<u8, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        cmp_bool_store::<1i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn less_bool_f32<const B: i32>(
        out: &mut Tensor<u8, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        cmp_bool_store::<2i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn less_equal_bool_f32<const B: i32>(
        out: &mut Tensor<u8, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        cmp_bool_store::<3i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn greater_bool_f32<const B: i32>(
        out: &mut Tensor<u8, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        cmp_bool_store::<4i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn greater_equal_bool_f32<const B: i32>(
        out: &mut Tensor<u8, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
    ) {
        cmp_bool_store::<5i32, B>(out, lhs, rhs);
    }
    #[cutile::entry()]
    pub fn clamp_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        input: &Tensor<f32, { [-1] }>,
        min_value: f32,
        max_value: f32,
    ) {
        let x: Tile<f32, { [B] }> = load_tile_like(input, out);
        let min_value = broadcast_scalar(min_value, out.shape());
        let max_value = broadcast_scalar(max_value, out.shape());
        out.store(min_tile(max_tile(x, min_value), max_value));
    }
    #[cutile::entry()]
    pub fn lerp_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        lhs: &Tensor<f32, { [-1] }>,
        rhs: &Tensor<f32, { [-1] }>,
        scalar: f32,
    ) {
        let lhs_tile: Tile<f32, { [B] }> = load_tile_like(lhs, out);
        let rhs_tile: Tile<f32, { [B] }> = load_tile_like(rhs, out);
        let scalar = broadcast_scalar(scalar, out.shape());
        out.store(lhs_tile + scalar * (rhs_tile - lhs_tile));
    }
    #[cutile::entry()]
    pub fn where_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        condition: &Tensor<f32, { [-1] }>,
        x: &Tensor<f32, { [-1] }>,
        y: &Tensor<f32, { [-1] }>,
    ) {
        let condition_tile: Tile<f32, { [B] }> = load_tile_like(condition, out);
        let x_tile: Tile<f32, { [B] }> = load_tile_like(x, out);
        let y_tile: Tile<f32, { [B] }> = load_tile_like(y, out);
        let zero = constant(0.0f32, out.shape());
        let mask = cmpf(
            condition_tile,
            zero,
            predicate::NotEqual,
            cmp_ordering::Ordered,
        );
        out.store(select(mask, x_tile, y_tile));
    }
    #[cutile::entry()]
    pub fn where_bool_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        condition: &Tensor<u8, { [-1] }>,
        x: &Tensor<f32, { [-1] }>,
        y: &Tensor<f32, { [-1] }>,
    ) {
        let condition_tile: Tile<u8, { [B] }> = load_tile_like(condition, out);
        let x_tile: Tile<f32, { [B] }> = load_tile_like(x, out);
        let y_tile: Tile<f32, { [B] }> = load_tile_like(y, out);
        let zero = constant(0u8, out.shape());
        let mask = cmpi(condition_tile, zero, predicate::NotEqual);
        out.store(select(mask, x_tile, y_tile));
    }
    #[cutile::entry()]
    pub fn masked_fill_f32<const B: i32>(
        out: &mut Tensor<f32, { [B] }>,
        input: &Tensor<f32, { [-1] }>,
        mask: &Tensor<u8, { [-1] }>,
        value: f32,
    ) {
        let input_tile: Tile<f32, { [B] }> = load_tile_like(input, out);
        let mask_tile: Tile<u8, { [B] }> = load_tile_like(mask, out);
        let zero = constant(0u8, out.shape());
        let mask = cmpi(mask_tile, zero, predicate::NotEqual);
        let value = broadcast_scalar(value, out.shape());
        out.store(select(mask, value, input_tile));
    }
}
pub use kernels::*;