baracuda-kernels 0.0.1-alpha.68

Unified ML op facade for the baracuda CUDA ecosystem. Exposes every primitive an ML framework would expect (union of PyTorch torch.* + nn.functional and JAX lax.* / numpy ops) through a single Plan-based Rust surface, internally dispatching to baracuda-cutlass, the baracuda-* NVIDIA-library wrappers, or bespoke baracuda-kernels-sys 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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
//! Naive Scaled Dot-Product Attention (SDPA) forward plan.
//!
//! Computes the standard PyTorch
//! `F.scaled_dot_product_attention` baseline that materializes the full
//! attention matrix:
//!
//! ```text
//! scores = (Q @ K^T) * scale + mask (optional) + causal-mask (optional)
//! attn   = row-softmax(scores)
//! y      = attn @ V
//! ```
//!
//! Shape conventions (all rank-4, contiguous, row-major):
//!
//! | tensor | shape                         |
//! |--------|-------------------------------|
//! | `Q`    | `[B, H, Q, D_k]`              |
//! | `K`    | `[B, H, K, D_k]`              |
//! | `V`    | `[B, H, K, D_v]`              |
//! | `mask` | `[B, H, Q, K]` (optional)     |
//! | `attn` | `[B, H, Q, K]` (saved for BW) |
//! | `y`    | `[B, H, Q, D_v]`              |
//!
//! `attn` is both the FW workspace for the scores intermediate **and**
//! the saved softmax output the BW plan consumes — no separate scratch
//! buffer is needed.
//!
//! Flash attention / FA-2 / KV-cache / paged attention are deferred to
//! future milestones; this trailblazer materializes the full
//! `[B, H, Q, K]` attention matrix.
//!
//! Wired today: `{f32, f16, bf16, f64}`. Dropout is not wired in this
//! trailblazer.

use core::ffi::c_void;
use core::marker::PhantomData;

use baracuda_cutlass::{Error, Result};
use baracuda_driver::Stream;
use baracuda_kernels_types::{
    ArchSku, AttentionKind, BackendKind, Element, ElementKind, KernelSku, MathPrecision,
    OpCategory, PlanPreference, PrecisionGuarantee, TensorMut, TensorRef, Workspace,
};

use super::map_status;

/// Descriptor for a naive SDPA forward op.
///
/// `d_k` and `d_v` may differ — V's head dimension can be larger or
/// smaller than Q/K's. All extents are `i32` to match the kernel ABI.
#[derive(Copy, Clone, Debug)]
pub struct SdpaDescriptor {
    /// Batch size (`B`).
    pub batch_size: i32,
    /// Number of attention heads (`H`).
    pub num_heads: i32,
    /// Query sequence length (`Q`).
    pub query_len: i32,
    /// Key / value sequence length (`K`).
    pub key_len: i32,
    /// Head dimension of Q and K (`D_k`).
    pub d_k: i32,
    /// Head dimension of V (`D_v`). May differ from `d_k`.
    pub d_v: i32,
    /// Score scaling factor — typically `1.0 / sqrt(d_k)`.
    pub scale: f32,
    /// Apply upper-triangular causal mask inside the scores kernel.
    pub is_causal: bool,
    /// Whether `mask` will be supplied at launch time.
    pub has_mask: bool,
    /// Element type — must match the plan's type parameter.
    pub element: ElementKind,
}

/// Args bundle for a SDPA forward launch.
pub struct SdpaArgs<'a, T: Element> {
    /// Query tensor — shape `[B, H, Q, D_k]`, contiguous.
    pub q: TensorRef<'a, T, 4>,
    /// Key tensor — shape `[B, H, K, D_k]`, contiguous.
    pub k: TensorRef<'a, T, 4>,
    /// Value tensor — shape `[B, H, K, D_v]`, contiguous.
    pub v: TensorRef<'a, T, 4>,
    /// Optional pre-softmax mask — shape `[B, H, Q, K]`, contiguous.
    /// Must be `Some(_)` iff the descriptor's `has_mask == true`.
    pub mask: Option<TensorRef<'a, T, 4>>,
    /// Output tensor — shape `[B, H, Q, D_v]`, contiguous.
    pub y: TensorMut<'a, T, 4>,
    /// Saved softmax output — shape `[B, H, Q, K]`, contiguous. The
    /// FW launcher uses this buffer first as the raw-scores intermediate
    /// and then overwrites it in-place with the softmax output. BW
    /// consumes the same tensor.
    pub attn: TensorMut<'a, T, 4>,
}

/// Naive scaled-dot-product attention forward plan.
///
/// **Formula**: `y = softmax((Q · K^T) · scale [+ mask]) · V`, with the
/// optional upper-triangular causal mask applied inside the scores
/// kernel.
///
/// **When to use**: any SDPA pass where `d_k != d_v`, where you need an
/// explicit additive mask, or where you want the saved softmax matrix
/// available for downstream consumption. Pair with
/// [`SdpaBackwardPlan`] for autograd. Prefer [`super::FlashSdpaPlan`]
/// when memory is tight (the naive plan materializes the full
/// `[B, H, Q, K]` attention matrix).
///
/// **Dtypes**: `f32`, `f64`, `f16`, `bf16`. Half-precision uses an
/// `f32` accumulator. Score / out matmuls use a per-cell IMAD-style
/// inner loop (no Tensor Cores in the trailblazer).
///
/// **Shape limits**: all tensors must be contiguous, row-major, rank-4.
/// `d_k` and `d_v` are independent. Three sub-kernels are launched
/// behind one symbol per dtype.
///
/// **Workspace**: zero — the `attn` arg doubles as raw-scores scratch
/// and saved softmax output.
///
/// **Precision guarantee**: deterministic; bit-stable on the same
/// hardware. No atomicAdd anywhere.
pub struct SdpaPlan<T: Element> {
    desc: SdpaDescriptor,
    sku: KernelSku,
    _marker: PhantomData<T>,
}

impl<T: Element> SdpaPlan<T> {
    /// Pick a kernel.
    pub fn select(_stream: &Stream, desc: &SdpaDescriptor, _pref: PlanPreference) -> Result<Self> {
        if desc.element != T::KIND {
            return Err(Error::Unsupported(
                "baracuda-kernels::SdpaPlan: descriptor element != T",
            ));
        }
        if desc.batch_size < 0
            || desc.num_heads < 0
            || desc.query_len < 0
            || desc.key_len < 0
            || desc.d_k < 0
            || desc.d_v < 0
        {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::SdpaPlan: extents must be non-negative",
            ));
        }
        if !desc.scale.is_finite() {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::SdpaPlan: scale must be finite",
            ));
        }
        let dtype_in_scope = matches!(
            T::KIND,
            ElementKind::F32 | ElementKind::F16 | ElementKind::Bf16 | ElementKind::F64
        );
        if !dtype_in_scope {
            return Err(Error::Unsupported(
                "baracuda-kernels::SdpaPlan: wired today: `{f32, f16, bf16, f64}`",
            ));
        }

        let precision_guarantee = PrecisionGuarantee {
            math_precision: MathPrecision::F32,
            accumulator: ElementKind::F32,
            // No atomic ops anywhere; per-cell deterministic.
            bit_stable_on_same_hardware: true,
            deterministic: true,
        };
        let sku = KernelSku {
            category: OpCategory::Attention,
            op: AttentionKind::Sdpa as u16,
            element: T::KIND,
            aux_element: None,
            layout: None,
            epilogue: None,
            arch: ArchSku::Sm80,
            backend: BackendKind::Bespoke,
            precision_guarantee,
        };
        Ok(Self {
            desc: *desc,
            sku,
            _marker: PhantomData,
        })
    }

    /// Validate args against the descriptor.
    pub fn can_implement(&self, args: &SdpaArgs<'_, T>) -> Result<()> {
        let shape_q = [
            self.desc.batch_size,
            self.desc.num_heads,
            self.desc.query_len,
            self.desc.d_k,
        ];
        let shape_k = [
            self.desc.batch_size,
            self.desc.num_heads,
            self.desc.key_len,
            self.desc.d_k,
        ];
        let shape_v = [
            self.desc.batch_size,
            self.desc.num_heads,
            self.desc.key_len,
            self.desc.d_v,
        ];
        let shape_attn = [
            self.desc.batch_size,
            self.desc.num_heads,
            self.desc.query_len,
            self.desc.key_len,
        ];
        let shape_y = [
            self.desc.batch_size,
            self.desc.num_heads,
            self.desc.query_len,
            self.desc.d_v,
        ];
        if args.q.shape != shape_q {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::SdpaPlan: Q shape mismatch",
            ));
        }
        if args.k.shape != shape_k {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::SdpaPlan: K shape mismatch",
            ));
        }
        if args.v.shape != shape_v {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::SdpaPlan: V shape mismatch",
            ));
        }
        if args.attn.shape != shape_attn {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::SdpaPlan: attn shape mismatch",
            ));
        }
        if args.y.shape != shape_y {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::SdpaPlan: y shape mismatch",
            ));
        }
        // Phase 14.4: attn must remain contig (it's both raw-scores
        // scratch and saved-softmax storage that the in-place row-
        // softmax kernel writes to). For Q / K / V / Y we allow
        // arbitrary outer strides as long as the innermost head_dim
        // axis is stride=1.
        if !args.attn.is_contiguous() {
            return Err(Error::Unsupported(
                "baracuda-kernels::SdpaPlan: attn must be contiguous",
            ));
        }
        if args.q.stride[3] != 1 {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::SdpaPlan: Q head_dim axis (stride[3]) must be 1",
            ));
        }
        if args.k.stride[3] != 1 {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::SdpaPlan: K head_dim axis (stride[3]) must be 1",
            ));
        }
        if args.v.stride[3] != 1 {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::SdpaPlan: V head_dim axis (stride[3]) must be 1",
            ));
        }
        if args.y.stride[3] != 1 {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::SdpaPlan: y head_dim axis (stride[3]) must be 1",
            ));
        }
        match (&args.mask, self.desc.has_mask) {
            (Some(m), true) => {
                if m.shape != shape_attn {
                    return Err(Error::InvalidProblem(
                        "baracuda-kernels::SdpaPlan: mask shape must be [B, H, Q, K]",
                    ));
                }
                if !m.is_contiguous() {
                    return Err(Error::Unsupported(
                        "baracuda-kernels::SdpaPlan: mask must be contiguous",
                    ));
                }
                let mn = m.numel();
                if (m.data.len() as i64) < mn {
                    return Err(Error::BufferTooSmall {
                        needed: mn as usize,
                        got: m.data.len(),
                    });
                }
            }
            (None, false) => {}
            (Some(_), false) | (None, true) => {
                return Err(Error::InvalidProblem(
                    "baracuda-kernels::SdpaPlan: mask presence must match descriptor's has_mask",
                ));
            }
        }
        // Buffer-size check: only meaningful for contig tensors (strided
        // views may legitimately point into a larger backing buffer).
        let attn_n = args.attn.numel();
        let y_n = args.y.numel();
        if (args.attn.data.len() as i64) < attn_n {
            return Err(Error::BufferTooSmall {
                needed: attn_n as usize,
                got: args.attn.data.len(),
            });
        }
        if args.q.is_contiguous() && (args.q.data.len() as i64) < args.q.numel() {
            return Err(Error::BufferTooSmall {
                needed: args.q.numel() as usize,
                got: args.q.data.len(),
            });
        }
        if args.k.is_contiguous() && (args.k.data.len() as i64) < args.k.numel() {
            return Err(Error::BufferTooSmall {
                needed: args.k.numel() as usize,
                got: args.k.data.len(),
            });
        }
        if args.v.is_contiguous() && (args.v.data.len() as i64) < args.v.numel() {
            return Err(Error::BufferTooSmall {
                needed: args.v.numel() as usize,
                got: args.v.data.len(),
            });
        }
        if args.y.is_contiguous() && (args.y.data.len() as i64) < y_n {
            return Err(Error::BufferTooSmall {
                needed: y_n as usize,
                got: args.y.data.len(),
            });
        }
        Ok(())
    }

    /// Workspace size in bytes — zero (the `attn` arg doubles as
    /// scratch).
    #[inline]
    pub fn workspace_size(&self) -> usize {
        0
    }

    /// SKU identity.
    #[inline]
    pub fn sku(&self) -> KernelSku {
        self.sku
    }

    /// Numerical guarantees.
    #[inline]
    pub fn precision_guarantee(&self) -> PrecisionGuarantee {
        self.sku.precision_guarantee
    }

    /// Launch all three sub-kernels (scores / row-softmax / out) in
    /// pipeline on the supplied stream.
    ///
    /// Phase 14.4: dispatches between the contig fast path and the
    /// strided sibling FFI. The strided path supports GQA broadcast
    /// via `stride_k[1] == 0` or `stride_v[1] == 0` (kernel reads the
    /// same K/V row for every Q-head in the group).
    pub fn run(
        &self,
        stream: &Stream,
        _workspace: Workspace<'_>,
        args: SdpaArgs<'_, T>,
    ) -> Result<()> {
        self.can_implement(&args)?;
        if args.attn.numel() == 0 || args.y.numel() == 0 {
            return Ok(());
        }
        let stream_ptr = stream.as_raw() as *mut c_void;
        let q_ptr = args.q.data.as_raw().0 as *const c_void;
        let k_ptr = args.k.data.as_raw().0 as *const c_void;
        let v_ptr = args.v.data.as_raw().0 as *const c_void;
        let mask_ptr = match &args.mask {
            Some(m) => m.data.as_raw().0 as *const c_void,
            None => core::ptr::null::<c_void>(),
        };
        let has_mask_flag = if self.desc.has_mask { 1 } else { 0 };
        let is_causal_flag = if self.desc.is_causal { 1 } else { 0 };
        let attn_ptr = args.attn.data.as_raw().0 as *mut c_void;
        let y_ptr = args.y.data.as_raw().0 as *mut c_void;

        let contig = args.q.is_contiguous()
            && args.k.is_contiguous()
            && args.v.is_contiguous()
            && args.y.is_contiguous();

        let status = unsafe {
            if contig {
                match T::KIND {
                    ElementKind::F32 => baracuda_kernels_sys::baracuda_kernels_sdpa_f32_run(
                        self.desc.batch_size,
                        self.desc.num_heads,
                        self.desc.query_len,
                        self.desc.key_len,
                        self.desc.d_k,
                        self.desc.d_v,
                        self.desc.scale,
                        is_causal_flag,
                        has_mask_flag,
                        q_ptr,
                        k_ptr,
                        v_ptr,
                        mask_ptr,
                        attn_ptr,
                        y_ptr,
                        core::ptr::null_mut(),
                        0,
                        stream_ptr,
                    ),
                    ElementKind::F16 => baracuda_kernels_sys::baracuda_kernels_sdpa_f16_run(
                        self.desc.batch_size,
                        self.desc.num_heads,
                        self.desc.query_len,
                        self.desc.key_len,
                        self.desc.d_k,
                        self.desc.d_v,
                        self.desc.scale,
                        is_causal_flag,
                        has_mask_flag,
                        q_ptr,
                        k_ptr,
                        v_ptr,
                        mask_ptr,
                        attn_ptr,
                        y_ptr,
                        core::ptr::null_mut(),
                        0,
                        stream_ptr,
                    ),
                    ElementKind::Bf16 => baracuda_kernels_sys::baracuda_kernels_sdpa_bf16_run(
                        self.desc.batch_size,
                        self.desc.num_heads,
                        self.desc.query_len,
                        self.desc.key_len,
                        self.desc.d_k,
                        self.desc.d_v,
                        self.desc.scale,
                        is_causal_flag,
                        has_mask_flag,
                        q_ptr,
                        k_ptr,
                        v_ptr,
                        mask_ptr,
                        attn_ptr,
                        y_ptr,
                        core::ptr::null_mut(),
                        0,
                        stream_ptr,
                    ),
                    ElementKind::F64 => baracuda_kernels_sys::baracuda_kernels_sdpa_f64_run(
                        self.desc.batch_size,
                        self.desc.num_heads,
                        self.desc.query_len,
                        self.desc.key_len,
                        self.desc.d_k,
                        self.desc.d_v,
                        self.desc.scale,
                        is_causal_flag,
                        has_mask_flag,
                        q_ptr,
                        k_ptr,
                        v_ptr,
                        mask_ptr,
                        attn_ptr,
                        y_ptr,
                        core::ptr::null_mut(),
                        0,
                        stream_ptr,
                    ),
                    _ => {
                        return Err(Error::Unsupported(
                            "baracuda-kernels::SdpaPlan::run reached an unimplemented dtype",
                        ));
                    }
                }
            } else {
                // Strided sibling. Build per-tensor outer-dim stride
                // arrays (length 3, one per outer dim: batch, heads,
                // seq). head_dim axis is implicitly stride=1.
                let stride_q: [i64; 3] =
                    [args.q.stride[0], args.q.stride[1], args.q.stride[2]];
                let stride_k: [i64; 3] =
                    [args.k.stride[0], args.k.stride[1], args.k.stride[2]];
                let stride_v: [i64; 3] =
                    [args.v.stride[0], args.v.stride[1], args.v.stride[2]];
                let stride_y: [i64; 3] =
                    [args.y.stride[0], args.y.stride[1], args.y.stride[2]];
                // mask is always contig at the plan layer; the strided
                // FFI ignores stride_mask but we pass a valid pointer
                // (its strides) to keep the contract simple.
                let stride_mask_zero: [i64; 4] = [0, 0, 0, 0];
                let stride_mask_ptr: *const i64 = if self.desc.has_mask {
                    if let Some(ref m) = args.mask {
                        m.stride.as_ptr()
                    } else {
                        stride_mask_zero.as_ptr()
                    }
                } else {
                    core::ptr::null()
                };
                match T::KIND {
                    ElementKind::F32 => baracuda_kernels_sys::baracuda_kernels_sdpa_f32_strided_run(
                        self.desc.batch_size,
                        self.desc.num_heads,
                        self.desc.query_len,
                        self.desc.key_len,
                        self.desc.d_k,
                        self.desc.d_v,
                        stride_q.as_ptr(),
                        stride_k.as_ptr(),
                        stride_v.as_ptr(),
                        stride_mask_ptr,
                        stride_y.as_ptr(),
                        self.desc.scale,
                        is_causal_flag,
                        has_mask_flag,
                        q_ptr,
                        k_ptr,
                        v_ptr,
                        mask_ptr,
                        attn_ptr,
                        y_ptr,
                        core::ptr::null_mut(),
                        0,
                        stream_ptr,
                    ),
                    ElementKind::F16 => baracuda_kernels_sys::baracuda_kernels_sdpa_f16_strided_run(
                        self.desc.batch_size,
                        self.desc.num_heads,
                        self.desc.query_len,
                        self.desc.key_len,
                        self.desc.d_k,
                        self.desc.d_v,
                        stride_q.as_ptr(),
                        stride_k.as_ptr(),
                        stride_v.as_ptr(),
                        stride_mask_ptr,
                        stride_y.as_ptr(),
                        self.desc.scale,
                        is_causal_flag,
                        has_mask_flag,
                        q_ptr,
                        k_ptr,
                        v_ptr,
                        mask_ptr,
                        attn_ptr,
                        y_ptr,
                        core::ptr::null_mut(),
                        0,
                        stream_ptr,
                    ),
                    ElementKind::Bf16 => baracuda_kernels_sys::baracuda_kernels_sdpa_bf16_strided_run(
                        self.desc.batch_size,
                        self.desc.num_heads,
                        self.desc.query_len,
                        self.desc.key_len,
                        self.desc.d_k,
                        self.desc.d_v,
                        stride_q.as_ptr(),
                        stride_k.as_ptr(),
                        stride_v.as_ptr(),
                        stride_mask_ptr,
                        stride_y.as_ptr(),
                        self.desc.scale,
                        is_causal_flag,
                        has_mask_flag,
                        q_ptr,
                        k_ptr,
                        v_ptr,
                        mask_ptr,
                        attn_ptr,
                        y_ptr,
                        core::ptr::null_mut(),
                        0,
                        stream_ptr,
                    ),
                    ElementKind::F64 => baracuda_kernels_sys::baracuda_kernels_sdpa_f64_strided_run(
                        self.desc.batch_size,
                        self.desc.num_heads,
                        self.desc.query_len,
                        self.desc.key_len,
                        self.desc.d_k,
                        self.desc.d_v,
                        stride_q.as_ptr(),
                        stride_k.as_ptr(),
                        stride_v.as_ptr(),
                        stride_mask_ptr,
                        stride_y.as_ptr(),
                        self.desc.scale,
                        is_causal_flag,
                        has_mask_flag,
                        q_ptr,
                        k_ptr,
                        v_ptr,
                        mask_ptr,
                        attn_ptr,
                        y_ptr,
                        core::ptr::null_mut(),
                        0,
                        stream_ptr,
                    ),
                    _ => {
                        return Err(Error::Unsupported(
                            "baracuda-kernels::SdpaPlan::run reached an unimplemented dtype",
                        ));
                    }
                }
            }
        };
        map_status(status)
    }
}