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
//! Flash Attention forward plan, sm_89 (Ada Lovelace) specialization
//! (Phase 10 Milestone 10.3).
//!
//! Sibling of [`FlashSdpaPlan`](super::FlashSdpaPlan) (sm_80 baseline /
//! Milestone 6.6). Same algorithm (Tri Dao 2022 tiled fused online-softmax
//! SDPA), same descriptor + args shape — callers swap by changing the
//! plan type. The math is bit-for-bit equivalent to the baseline (modulo
//! identical float-order in the FMA inner loops); what's different is
//! the *data-movement strategy*:
//!
//! - **`cp.async.cg.shared.global` double-buffered K/V loads.** While the
//!   current K-tile's GEMM runs, the next K/V tile is prefetched into a
//!   second SMEM stage via `__pipeline_memcpy_async`. Hides global-memory
//!   latency behind compute instead of stalling the warp on each
//!   `__syncthreads` after a load.
//! - **256 threads/block** (vs sm_80 baseline's 128). Ada's larger
//!   per-SM register file lets us run wider blocks without losing
//!   occupancy, which means fewer grid-stride iterations per tile pass.
//!
//! Dtype scope: **f16 + bf16 only**. f32 / f64 stay on the sm_80 baseline
//! plan — Ada's tensor cores don't help f32, and f64 is rare in
//! transformer inference.
//!
//! What this plan does *not* yet do (documented follow-ups in
//! [`baracuda_flash_sdpa_sm89.cuh`](../../../baracuda-kernels-sys/kernels/include/baracuda_flash_sdpa_sm89.cuh)):
//!
//! - `ldmatrix.sync.aligned.x4` warp-cooperative fragment loads.
//! - `nvcuda::wmma` m16n8k16 matmul fragments (would change float-order
//!   and need a separate tolerance budget).
//! - FP8 (E4M3 / E5M2) attention.
//!
//! Available only when the `sm89` cargo feature is enabled.

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;
use super::flash_sdpa::FLASH_SDPA_MAX_D;

/// Descriptor for an sm_89-specialized Flash Attention forward op.
///
/// Same shape as [`FlashSdpaDescriptor`](super::FlashSdpaDescriptor) so
/// callers can swap plans by changing the type parameter only.
#[derive(Copy, Clone, Debug)]
pub struct FlashSdpaSm89Descriptor {
    /// 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`). Trailblazer requires `d_v == 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 compute.
    pub is_causal: bool,
    /// Element type — must match the plan's type parameter and must be
    /// one of [`ElementKind::F16`] / [`ElementKind::Bf16`].
    pub element: ElementKind,
}

/// Args bundle. Identical layout to [`FlashSdpaArgs`](super::FlashSdpaArgs).
///
/// Phase 17.1: Q / K / V / Y accept arbitrary outer strides as long as
/// the innermost head_dim axis is stride=1. GQA broadcast is supported
/// via `k.stride[1] == 0` (or `v.stride[1] == 0`). `lse` stays contig
/// (BW path routes through the sm_80 baseline).
pub struct FlashSdpaSm89Args<'a, T: Element> {
    /// Query tensor — shape `[B, H, Q, D_k]`. Outer strides arbitrary;
    /// head_dim axis (`stride[3]`) must be 1.
    pub q: TensorRef<'a, T, 4>,
    /// Key tensor — shape `[B, H, K, D_k]`. Outer strides arbitrary;
    /// head_dim axis (`stride[3]`) must be 1. `stride[1] == 0` for GQA.
    pub k: TensorRef<'a, T, 4>,
    /// Value tensor — shape `[B, H, K, D_v]`. Outer strides arbitrary;
    /// head_dim axis (`stride[3]`) must be 1. `stride[1] == 0` for GQA.
    pub v: TensorRef<'a, T, 4>,
    /// Output tensor — shape `[B, H, Q, D_v]`. Outer strides arbitrary;
    /// head_dim axis (`stride[3]`) must be 1.
    pub y: TensorMut<'a, T, 4>,
    /// Saved log-sum-exp — shape `[B, H, Q]`, contiguous.
    pub lse: TensorMut<'a, T, 3>,
}

/// Flash Attention forward plan, sm_89 specialization.
pub struct FlashSdpaSm89Plan<T: Element> {
    desc: FlashSdpaSm89Descriptor,
    sku: KernelSku,
    _marker: PhantomData<T>,
}

impl<T: Element> FlashSdpaSm89Plan<T> {
    /// Pick a kernel. Rejects anything other than f16 / bf16 — callers
    /// wanting f32 / f64 should use the baseline
    /// [`FlashSdpaPlan`](super::FlashSdpaPlan) instead.
    pub fn select(
        _stream: &Stream,
        desc: &FlashSdpaSm89Descriptor,
        _pref: PlanPreference,
    ) -> Result<Self> {
        if desc.element != T::KIND {
            return Err(Error::Unsupported(
                "baracuda-kernels::FlashSdpaSm89Plan: 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::FlashSdpaSm89Plan: extents must be non-negative",
            ));
        }
        if !desc.scale.is_finite() {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::FlashSdpaSm89Plan: scale must be finite",
            ));
        }
        if desc.d_k != desc.d_v {
            return Err(Error::Unsupported(
                "baracuda-kernels::FlashSdpaSm89Plan: trailblazer requires d_k == d_v",
            ));
        }
        if desc.d_k > FLASH_SDPA_MAX_D {
            return Err(Error::Unsupported(
                "baracuda-kernels::FlashSdpaSm89Plan: d_k must be ≤ 128",
            ));
        }
        let dtype_in_scope = matches!(T::KIND, ElementKind::F16 | ElementKind::Bf16);
        if !dtype_in_scope {
            return Err(Error::Unsupported(
                "baracuda-kernels::FlashSdpaSm89Plan: f16 / bf16 only — use FlashSdpaPlan for f32 / f64",
            ));
        }

        let precision_guarantee = PrecisionGuarantee {
            math_precision: MathPrecision::F32,
            accumulator: ElementKind::F32,
            // One block per (b, h, q_block); each output cell is written
            // by exactly one block. No atomicAdd anywhere.
            bit_stable_on_same_hardware: true,
            deterministic: true,
        };
        let sku = KernelSku {
            category: OpCategory::Attention,
            op: AttentionKind::FlashAttention as u16,
            element: T::KIND,
            aux_element: None,
            layout: None,
            epilogue: None,
            arch: ArchSku::Sm89,
            backend: BackendKind::Bespoke,
            precision_guarantee,
        };
        Ok(Self {
            desc: *desc,
            sku,
            _marker: PhantomData,
        })
    }

    /// Validate args against the descriptor.
    pub fn can_implement(&self, args: &FlashSdpaSm89Args<'_, 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_y = [
            self.desc.batch_size,
            self.desc.num_heads,
            self.desc.query_len,
            self.desc.d_v,
        ];
        let shape_lse = [
            self.desc.batch_size,
            self.desc.num_heads,
            self.desc.query_len,
        ];
        if args.q.shape != shape_q {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::FlashSdpaSm89Plan: Q shape mismatch",
            ));
        }
        if args.k.shape != shape_k {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::FlashSdpaSm89Plan: K shape mismatch",
            ));
        }
        if args.v.shape != shape_v {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::FlashSdpaSm89Plan: V shape mismatch",
            ));
        }
        if args.y.shape != shape_y {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::FlashSdpaSm89Plan: y shape mismatch",
            ));
        }
        if args.lse.shape != shape_lse {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::FlashSdpaSm89Plan: lse shape must be [B, H, Q]",
            ));
        }
        // Phase 17.1: relax contig requirement on Q / K / V / Y — the
        // strided sibling kernel propagates per-tensor strides into the
        // `cp.async` tile loads. `lse` stays contig (BW path routes
        // through sm_80 baseline which has its own LSE handling). The
        // SMEM tile layout assumes contiguous head_dim, so the innermost
        // axis must remain stride=1 on all four tensors.
        if !args.lse.is_contiguous() {
            return Err(Error::Unsupported(
                "baracuda-kernels::FlashSdpaSm89Plan: lse must be contiguous \
                 (BW path routes through sm_80 baseline)",
            ));
        }
        if args.q.stride[3] != 1 {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::FlashSdpaSm89Plan: Q head_dim axis (stride[3]) must be 1",
            ));
        }
        if args.k.stride[3] != 1 {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::FlashSdpaSm89Plan: K head_dim axis (stride[3]) must be 1",
            ));
        }
        if args.v.stride[3] != 1 {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::FlashSdpaSm89Plan: V head_dim axis (stride[3]) must be 1",
            ));
        }
        if args.y.stride[3] != 1 {
            return Err(Error::InvalidProblem(
                "baracuda-kernels::FlashSdpaSm89Plan: y head_dim axis (stride[3]) must be 1",
            ));
        }
        // Buffer-size check: only meaningful for contig tensors (strided
        // views may legitimately point into a larger backing buffer).
        let l_n = args.lse.numel();
        if (args.lse.data.len() as i64) < l_n {
            return Err(Error::BufferTooSmall {
                needed: l_n as usize,
                got: args.lse.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) < args.y.numel() {
            return Err(Error::BufferTooSmall {
                needed: args.y.numel() as usize,
                got: args.y.data.len(),
            });
        }
        Ok(())
    }

    /// Workspace size in bytes — zero (the `lse` arg carries the only
    /// FW-saved state, same as the sm_80 baseline).
    #[inline]
    pub fn workspace_size(&self) -> usize {
        0
    }

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

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

    /// Launch the sm_89 fused FW kernel on the supplied stream.
    ///
    /// Phase 17.1: dispatches between the contig fast path and the
    /// strided sibling FFI. The strided path supports GQA broadcast
    /// via `k.stride[1] == 0` or `v.stride[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: FlashSdpaSm89Args<'_, T>,
    ) -> Result<()> {
        self.can_implement(&args)?;
        if 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 y_ptr = args.y.data.as_raw().0 as *mut c_void;
        let lse_ptr = args.lse.data.as_raw().0 as *mut c_void;
        let is_causal_flag = if self.desc.is_causal { 1 } else { 0 };

        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::F16 => {
                        baracuda_kernels_sys::baracuda_kernels_flash_sdpa_sm89_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,
                            q_ptr,
                            k_ptr,
                            v_ptr,
                            y_ptr,
                            lse_ptr,
                            core::ptr::null_mut(),
                            0,
                            stream_ptr,
                        )
                    }
                    ElementKind::Bf16 => {
                        baracuda_kernels_sys::baracuda_kernels_flash_sdpa_sm89_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,
                            q_ptr,
                            k_ptr,
                            v_ptr,
                            y_ptr,
                            lse_ptr,
                            core::ptr::null_mut(),
                            0,
                            stream_ptr,
                        )
                    }
                    _ => {
                        return Err(Error::Unsupported(
                            "baracuda-kernels::FlashSdpaSm89Plan::run reached an unsupported \
                             dtype (f16 / bf16 only — use FlashSdpaPlan for f32 / f64)",
                        ));
                    }
                }
            } else {
                // Strided sibling. Per-tensor outer-dim stride arrays
                // (length 3, one per outer dim: batch, heads, seq).
                // The 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]];
                match T::KIND {
                    ElementKind::F16 => {
                        baracuda_kernels_sys::baracuda_kernels_flash_sdpa_sm89_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_y.as_ptr(),
                            self.desc.scale,
                            is_causal_flag,
                            q_ptr,
                            k_ptr,
                            v_ptr,
                            y_ptr,
                            lse_ptr,
                            core::ptr::null_mut(),
                            0,
                            stream_ptr,
                        )
                    }
                    ElementKind::Bf16 => {
                        baracuda_kernels_sys::baracuda_kernels_flash_sdpa_sm89_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_y.as_ptr(),
                            self.desc.scale,
                            is_causal_flag,
                            q_ptr,
                            k_ptr,
                            v_ptr,
                            y_ptr,
                            lse_ptr,
                            core::ptr::null_mut(),
                            0,
                            stream_ptr,
                        )
                    }
                    _ => {
                        return Err(Error::Unsupported(
                            "baracuda-kernels::FlashSdpaSm89Plan::run reached an unsupported \
                             dtype (f16 / bf16 only — use FlashSdpaPlan for f32 / f64)",
                        ));
                    }
                }
            }
        };
        map_status(status)
    }
}