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
#![allow(unsafe_code)]
#![allow(trivial_casts)]
#![allow(clippy::borrow_as_ptr)]
#![allow(clippy::ref_as_ptr)]
#[cfg(feature = "cuda")]
use std::collections::HashMap;
#[cfg(feature = "cuda")]
use std::sync::{Mutex, OnceLock};
#[cfg(feature = "cuda")]
use trueno_gpu::driver::{CublasHandle, CudaContext, CudaModule, CudaStream};
#[cfg(feature = "cuda")]
use trueno_gpu::kernels::{
Batched4DGemmKernel, BatchedRopeBackwardKernel, BatchedSoftmaxKernel,
BatchedToInterleavedKernel, BatchedTransposeKernel, BatchedVectorizedRmsNormKernel,
ElementwiseMulKernel, FusedSwigluKernel, GemmKernel, InterleavedToBatchedKernel, Kernel,
Nf4GemmKernel, Nf4GemmTransposeKernel, ResidualAddKernel, ScaleKernel, SiluKernel,
};
use crate::autograd::cuda_tensor::{CudaTensorError, Result};
/// Cached compiled CUDA modules for forward kernels
#[cfg(feature = "cuda")]
pub(super) static FORWARD_KERNEL_CACHE: OnceLock<Mutex<ForwardKernelCache>> = OnceLock::new();
/// Cache for compiled forward kernel modules
///
/// Stores the device's SM target (e.g. "sm_89") detected at init time.
/// All PTX must be emitted for this target before compilation.
///
/// # Contract: F-PTX-001 (Target Parity)
///
/// PTX `.target` directive MUST match the device compute capability.
/// The cache validates this at compile time and rejects mismatched PTX.
#[cfg(feature = "cuda")]
pub(super) struct ForwardKernelCache {
ctx: std::sync::Arc<CudaContext>,
modules: HashMap<String, CudaModule>,
/// Device SM target string (e.g. "sm_89" for RTX 4090)
sm_target: String,
/// cuBLAS handle (ALB-075): forward=tensor cores, backward=SIMD (ALB-076/trueno#170)
cublas: Option<CublasHandle>,
}
#[cfg(feature = "cuda")]
impl ForwardKernelCache {
pub(super) fn new(ctx: std::sync::Arc<CudaContext>) -> Self {
// Detect device compute capability at construction time.
// Falls back to sm_70 if detection fails (should never happen
// since we already have a valid CudaContext).
let sm_target = ctx.sm_target().unwrap_or_else(|_| "sm_70".to_string());
// entrenar#318: Forward uses TF32 tensor cores (~41x faster than SIMD on sm_89).
// ALB-076: TF32 is safe for forward (NoTrans/NoTrans). Backward uses SIMD handle.
let cublas = match CublasHandle::new_with_tensor_cores(&ctx) {
Ok(handle) => {
eprintln!("[CUDA] cuBLAS initialized — forward TF32 tensor cores (41x vs SIMD)");
Some(handle)
}
Err(e) => {
eprintln!("[CUDA] cuBLAS not available ({e:?}), using PTX GEMMs");
None
}
};
eprintln!("[CUDA] Kernel cache initialized for target: {sm_target}");
Self { ctx, modules: HashMap::new(), sm_target, cublas }
}
/// Get a reference to the cuBLAS handle, if available.
pub(super) fn cublas(&self) -> Option<&CublasHandle> {
self.cublas.as_ref()
}
/// Bind cuBLAS to a stream for the current training step.
pub(super) fn set_cublas_stream(&self, stream: &CudaStream) -> Result<()> {
if let Some(ref handle) = self.cublas {
handle.set_stream(stream).map_err(|e| {
CudaTensorError::KernelError(format!("cuBLAS set_stream failed: {e:?}"))
})?;
}
Ok(())
}
/// Get the device SM target for PTX emission.
///
/// Consumers MUST use this to emit PTX via `kernel.emit_ptx_for_target(cache.sm_target())`.
pub(super) fn sm_target(&self) -> &str {
&self.sm_target
}
/// Look up a previously compiled module by key (KAIZEN-058).
///
/// Returns `Some` if the module is already cached (post-pre-warm: always).
/// Callers should use this before generating PTX to avoid unnecessary
/// multi-KB String allocations (~1000 per training step).
pub(super) fn get_cached(&mut self, name: &str) -> Option<&mut CudaModule> {
self.modules.get_mut(name)
}
/// Compile PTX and cache the resulting module.
///
/// # Contract: F-PTX-001 (Target Parity)
///
/// Validates that the PTX `.target` directive matches the device's compute
/// capability. Rejects PTX compiled for the wrong architecture.
pub(super) fn get_or_compile(&mut self, name: &str, ptx: &str) -> Result<&mut CudaModule> {
use std::collections::hash_map::Entry;
// F-PTX-001: Validate PTX target matches device
if let Some(target_line) = ptx.lines().find(|l| l.starts_with(".target ")) {
let ptx_target = target_line.trim().trim_start_matches(".target ");
if ptx_target != self.sm_target {
return Err(CudaTensorError::KernelError(format!(
"F-PTX-001 violated: PTX target '{ptx_target}' != device target '{}'. \
Use kernel.emit_ptx_for_target(\"{}\") instead of emit_ptx().",
self.sm_target, self.sm_target
)));
}
}
match self.modules.entry(name.to_string()) {
Entry::Occupied(e) => Ok(e.into_mut()),
Entry::Vacant(e) => {
// trueno#200: Use from_ptx_direct on Blackwell
let (major, _) = self.ctx.compute_capability().map_err(|e| {
CudaTensorError::KernelError(format!("compute_capability: {e:?}"))
})?;
let module = if major >= 12 {
CudaModule::from_ptx_direct(&self.ctx, ptx)
} else {
CudaModule::from_ptx(&self.ctx, ptx)
}
.map_err(|err| {
CudaTensorError::KernelError(format!("Failed to compile {name}: {err:?}"))
})?;
Ok(e.insert(module))
}
}
}
/// Pre-warm all kernels needed for transformer forward pass.
///
/// # Contract: C-PREWARM-001 (JIT Before Payload)
///
/// - **Precondition**: Kernel cache initialized, GPU VRAM mostly free (no blocks uploaded yet)
/// - **Postcondition**: All forward-pass PTX modules JIT-compiled and cached
/// - **Invariant**: Subsequent `get_or_compile()` calls for these keys hit cache (zero JIT)
///
/// CUDA's `cuModuleLoadDataEx` JIT compiler needs device memory for compilation.
/// If called after uploading 36 transformer blocks (~22 GB), the near-OOM state causes
/// `CUDA_ERROR_ILLEGAL_ADDRESS` during JIT (trueno#107). Pre-warming compiles all PTX
/// while VRAM is free, avoiding this failure mode entirely.
pub(super) fn pre_warm_for_model(
&mut self,
hidden_size: usize,
intermediate_size: usize,
num_heads: usize,
num_kv_heads: usize,
head_dim: usize,
max_seq_len: usize,
) -> Result<()> {
let s = max_seq_len as u32;
let h = hidden_size as u32;
let q_dim = (num_heads * head_dim) as u32; // Q/O projection dim (may differ from h)
let kv_h = (num_kv_heads * head_dim) as u32;
let i = intermediate_size as u32;
let nh = num_heads as u32;
let _nkv = num_kv_heads as u32;
let hd = head_dim as u32;
let sh = s * h; // seq_len * hidden_size
let si = s * i; // seq_len * intermediate_size
let mut count = 0u32;
let target = self.sm_target.clone();
// Helper: generate PTX and compile
macro_rules! warm {
($key:expr, $kernel:expr) => {{
let ptx = $kernel.emit_ptx_for_target(&target);
self.get_or_compile("silu_forward", &ptx)?;
count += 1;
}};
}
// 1. RMSNorm (batched: single launch for all rows via grid.y)
// ALB-076: Use BatchedVectorizedRmsNormKernel instead of per-row RmsNormKernel
warm!(format!("batched_rmsnorm_fwd_{h}"), BatchedVectorizedRmsNormKernel::new(h, 1));
// 2. GEMM: Q/O projections (S, H, H)
warm!(format!("gemm_forward_{s}_{h}_{h}"), GemmKernel::naive(s, h, h));
// 3. GEMM: K/V projections (S, H, kv_hidden)
if kv_h != h {
warm!(format!("gemm_forward_{s}_{h}_{kv_h}"), GemmKernel::naive(s, kv_h, h));
}
// 4. GEMM: gate/up projections (S, H, I)
warm!(format!("gemm_forward_{s}_{h}_{i}"), GemmKernel::naive(s, i, h));
// 5. GEMM: down projection (S, I, H)
warm!(format!("gemm_forward_{s}_{i}_{h}"), GemmKernel::naive(s, h, i));
// 6. Fused SwiGLU
warm!("fused_swiglu_forward".to_string(), FusedSwigluKernel::new(si));
// 7. Residual add (seq * hidden)
warm!("residual_add_forward".to_string(), ResidualAddKernel::new(sh));
// 8. Interleaved-to-batched (dimension-independent: one module handles all dims)
warm!("interleaved_to_batched".to_string(), InterleavedToBatchedKernel::new(s, nh, hd));
// 9. Batched transpose (dimension-independent: one module handles all dims)
warm!("batched_transpose".to_string(), BatchedTransposeKernel::new(nh, s, hd));
// 10. Batched 4D GEMM: Q@K^T (1, NH, S, S, HD)
warm!(
format!("batched_4d_gemm_1_{nh}_{s}_{s}_{hd}"),
Batched4DGemmKernel::new(1, nh, s, s, hd)
);
// 11. Scale: attention scores (NH * S * S)
let score_n = nh * s * s;
warm!("scale_forward".to_string(), ScaleKernel::new(score_n));
// 12. Batched softmax (dimension-independent: one module handles all dims)
let softmax_rows = nh * s;
warm!("batched_softmax_forward".to_string(), BatchedSoftmaxKernel::new(softmax_rows, s));
// 13. Batched 4D GEMM: attn@V (1, NH, S, HD, S)
warm!(
format!("batched_4d_gemm_1_{nh}_{s}_{hd}_{s}"),
Batched4DGemmKernel::new(1, nh, s, hd, s)
);
// 13b. Batched 4D GEMM: attention backward grad_V^T (1, NH, HD, S, S)
warm!(
format!("batched_4d_gemm_1_{nh}_{hd}_{s}_{s}"),
Batched4DGemmKernel::new(1, nh, hd, s, s)
);
// 14. Batched-to-interleaved (dimension-independent: one module handles all dims)
warm!("batched_to_interleaved".to_string(), BatchedToInterleavedKernel::new(s, nh, hd));
// 15. Element-wise multiply (used in FFN backward for SwiGLU gate * up)
warm!("elementwise_mul_forward".to_string(), ElementwiseMulKernel::new(si));
// 16. SiLU forward activation (standalone, used in LoRA FFN path)
warm!("silu_forward".to_string(), SiluKernel::new(si));
// 17-20. NF4 quantized GEMM variants (trueno#108: QLoRA support)
// Same 4 GEMM shapes but with Nf4GemmKernel instead of GemmKernel.
// Only compiled if K is divisible by 64 (NF4 block size).
if h.is_multiple_of(64) {
// NF4 cache keys exclude M (seq_len) — PTX is shape-independent
// (m/n/k are runtime params). Including M causes cache misses when
// actual seq_len != max_seq_len, triggering on-demand JIT that fails
// after GPU memory is loaded (trueno#184).
//
// Attention projections use q_dim (= num_heads * head_dim) which may
// differ from hidden_size (e.g. Qwen3-4B: h=2560, q_dim=4096).
// Q proj: input[S,h] @ W_q[h, q_dim] — key {h}_{q_dim}
warm!(format!("nf4_gemm_forward_{h}_{q_dim}"), Nf4GemmKernel::new(s, q_dim, h));
// O proj: input[S,q_dim] @ W_o[q_dim, h] — key {q_dim}_{h}
if q_dim != h {
warm!(format!("nf4_gemm_forward_{q_dim}_{h}"), Nf4GemmKernel::new(s, h, q_dim));
}
if kv_h != h && kv_h != q_dim && kv_h.is_multiple_of(64) {
warm!(format!("nf4_gemm_forward_{h}_{kv_h}"), Nf4GemmKernel::new(s, kv_h, h));
}
if i.is_multiple_of(64) {
warm!(format!("nf4_gemm_forward_{h}_{i}"), Nf4GemmKernel::new(s, i, h));
warm!(format!("nf4_gemm_forward_{i}_{h}"), Nf4GemmKernel::new(s, h, i));
}
}
// PMAT-475: Fused NF4 Gate+Up GEMM for FFN (shared input load).
if h.is_multiple_of(64) && i.is_multiple_of(64) {
use trueno_gpu::kernels::FusedNf4GateUpGemmKernel;
warm!(format!("fused_nf4_gate_up_{h}_{i}"), FusedNf4GateUpGemmKernel::new(s, i, h));
}
// PMAT-478: Fused K+V GEMM for GQA attention (reuses Gate+Up kernel).
if h.is_multiple_of(64) && kv_h.is_multiple_of(64) && kv_h != i {
use trueno_gpu::kernels::FusedNf4GateUpGemmKernel;
warm!(
format!("fused_nf4_gate_up_{h}_{kv_h}"),
FusedNf4GateUpGemmKernel::new(s, kv_h, h)
);
}
// 19-22. NF4 transposed GEMM for QLoRA backward (ENT-153).
// C[M×K] = A[M×N] @ B[K×N]^T — gradient propagation through frozen NF4 layers.
if h.is_multiple_of(64) {
// Q proj backward: grad[S,q_dim] @ W_q[h, q_dim]^T → [S,h]
warm!(
format!("nf4_gemm_transpose_{q_dim}_{h}"),
Nf4GemmTransposeKernel::new(s, q_dim, h)
);
// O proj backward: grad[S,h] @ W_o[q_dim, h]^T → [S,q_dim]
if q_dim != h {
warm!(
format!("nf4_gemm_transpose_{h}_{q_dim}"),
Nf4GemmTransposeKernel::new(s, h, q_dim)
);
}
if kv_h != h && kv_h != q_dim && kv_h.is_multiple_of(64) {
// K/V proj backward: grad[S,kv_h] @ W_k[h, kv_h]^T → [S,h]
warm!(
format!("nf4_gemm_transpose_{kv_h}_{h}"),
Nf4GemmTransposeKernel::new(s, kv_h, h)
);
}
if i.is_multiple_of(64) {
// Gate/Up backward: grad[S,I] @ W_gate[h,I]^T → [S,h]
warm!(format!("nf4_gemm_transpose_{i}_{h}"), Nf4GemmTransposeKernel::new(s, i, h));
// Down backward: grad[S,h] @ W_down[I,h]^T → [S,I]
warm!(format!("nf4_gemm_transpose_{h}_{i}"), Nf4GemmTransposeKernel::new(s, h, i));
}
}
eprintln!("[CUDA] Pre-warmed {count} forward kernels (JIT compiled before block upload)");
Ok(())
}
/// Pre-warm LoRA backward GEMM kernels for QLoRA training (ENT-153).
///
/// The LoRA backward uses regular fp32 GEMMs for:
/// - Forward LoRA: x @ A → [S, R], inter @ B → [S, proj_dim]
/// - Backward A: x^T @ grad_inter → grad_A [H, R]
/// - Backward B: inter^T @ grad_proj → grad_B [R, proj_dim]
/// - Backward input: grad_proj @ B^T → [S, R], then [S, R] @ A^T → [S, H]
///
/// These shapes are small (rank << hidden_size) but must still be JIT-compiled.
pub(super) fn pre_warm_lora_backward(
&mut self,
hidden_size: usize,
q_dim: usize,
kv_hidden_size: usize,
max_seq_len: usize,
lora_rank: usize,
) -> Result<()> {
if lora_rank == 0 {
return Ok(());
}
let s = max_seq_len as u32;
let h = hidden_size as u32;
let r = lora_rank as u32;
let qd = q_dim as u32;
let kv = kv_hidden_size as u32;
let mut count = 0u32;
let target = self.sm_target.clone();
macro_rules! warm {
($key:expr, $kernel:expr) => {{
let ptx = $kernel.emit_ptx_for_target(&target);
self.get_or_compile(&$key, &ptx)?;
count += 1;
}};
}
// LoRA forward GEMMs (also needed in backward for activation checkpointing)
// x[S,H] @ A[H,R] → [S,R]
warm!(format!("gemm_forward_{s}_{h}_{r}"), GemmKernel::naive(s, r, h));
// inter[S,R] @ B[R,qd] → [S,qd]
warm!(format!("gemm_forward_{s}_{r}_{qd}"), GemmKernel::naive(s, qd, r));
// inter[S,R] @ B[R,kv] → [S,kv]
if kv != qd {
warm!(format!("gemm_forward_{s}_{r}_{kv}"), GemmKernel::naive(s, kv, r));
}
// LoRA backward GEMMs (gemm_backward_a and gemm_backward_b use regular GEMM shapes)
// grad_B = inter^T[R,S] @ grad_proj[S,qd] → [R,qd]
// This is a GEMM with M=R, N=qd, K=S
warm!(format!("gemm_forward_{r}_{s}_{qd}"), GemmKernel::naive(r, qd, s));
if kv != qd {
warm!(format!("gemm_forward_{r}_{s}_{kv}"), GemmKernel::naive(r, kv, s));
}
// grad_li = grad_proj[S,qd] @ B^T[qd,R] → [S,R]
// This is effectively GEMM with M=S, N=R, K=qd
warm!(format!("gemm_forward_{s}_{qd}_{r}"), GemmKernel::naive(s, r, qd));
if kv != qd {
warm!(format!("gemm_forward_{s}_{kv}_{r}"), GemmKernel::naive(s, r, kv));
}
// grad_A = x^T[H,S] @ grad_li[S,R] → [H,R]
warm!(format!("gemm_forward_{h}_{s}_{r}"), GemmKernel::naive(h, r, s));
// grad_input += grad_li[S,R] @ A^T[R,H] → [S,H]
warm!(format!("gemm_forward_{s}_{r}_{h}"), GemmKernel::naive(s, h, r));
eprintln!("[CUDA] Pre-warmed {count} LoRA backward kernels");
Ok(())
}
}
/// Initialize forward kernel cache with CUDA context
#[cfg(feature = "cuda")]
pub fn init_forward_kernel_cache(ctx: std::sync::Arc<CudaContext>) -> Result<()> {
FORWARD_KERNEL_CACHE.get_or_init(|| Mutex::new(ForwardKernelCache::new(ctx)));
Ok(())
}
/// Pre-allocate cuBLAS workspace for CUDA graph capture (PMAT-063).
#[cfg(feature = "cuda")]
pub fn set_cublas_workspace(ptr: u64, size: usize) -> Result<()> {
let c = FORWARD_KERNEL_CACHE.get().ok_or(CudaTensorError::DeviceNotInitialized)?;
let c = c.lock().map_err(|_| CudaTensorError::KernelError("lock".into()))?;
if let Some(h) = c.cublas() {
h.set_workspace(ptr, size).map_err(|e| CudaTensorError::KernelError(format!("{e}")))?;
}
Ok(())
}
/// Bind cuBLAS handle to a stream (ALB-075).
#[cfg(feature = "cuda")]
pub fn set_forward_cublas_stream(stream: &CudaStream) -> Result<()> {
let cache = FORWARD_KERNEL_CACHE.get().ok_or(CudaTensorError::DeviceNotInitialized)?;
let cache = cache.lock().map_err(|_err| {
CudaTensorError::KernelError("Failed to acquire kernel cache lock".to_string())
})?;
cache.set_cublas_stream(stream)
}
/// Pre-warm forward kernels (C-PREWARM-001: JIT before block upload).
#[cfg(feature = "cuda")]
pub fn pre_warm_forward_kernels(
hidden_size: usize,
intermediate_size: usize,
num_heads: usize,
num_kv_heads: usize,
head_dim: usize,
max_seq_len: usize,
) -> Result<()> {
// trueno#200: Pre-warm backward kernels too (Blackwell JIT crash workaround)
pre_warm_backward_kernels_in_forward_cache(num_heads, num_kv_heads, head_dim, max_seq_len)?;
let cache = FORWARD_KERNEL_CACHE.get().ok_or(CudaTensorError::DeviceNotInitialized)?;
let mut cache = cache.lock().map_err(|_err| {
CudaTensorError::KernelError("Failed to acquire kernel cache lock".to_string())
})?;
cache.pre_warm_for_model(
hidden_size,
intermediate_size,
num_heads,
num_kv_heads,
head_dim,
max_seq_len,
)
}
/// Pre-warm backward kernels in forward cache (trueno#200 Blackwell).
///
/// CONTRACT: All backward kernels must be compiled before GPU work starts.
/// On Blackwell (sm_121), cuModuleLoadData fails during active GPU computation.
#[cfg(feature = "cuda")]
fn pre_warm_backward_kernels_in_forward_cache(
num_heads: usize,
_num_kv_heads: usize,
head_dim: usize,
max_seq_len: usize,
) -> Result<()> {
let cache = FORWARD_KERNEL_CACHE.get().ok_or(CudaTensorError::DeviceNotInitialized)?;
let mut cache = cache.lock().map_err(|_err| {
CudaTensorError::KernelError("Failed to acquire kernel cache lock".to_string())
})?;
let target = cache.sm_target.clone();
let _nh = num_heads as u32;
let _hd = head_dim as u32;
let _s = max_seq_len as u32;
macro_rules! warm {
($key:expr, $kernel:expr) => {{
let ptx = $kernel.emit_ptx_for_target(&target);
cache.get_or_compile(&$key, &ptx)?;
}};
}
// Batched RoPE backward — missing from pre_warm_for_model, causes
// CUDA context poisoning on Blackwell when compiled during backward pass.
// Need BOTH num_heads AND num_kv_heads variants (GQA uses different head count for K/V).
let nh = num_heads as u32;
let nkv = _num_kv_heads as u32;
let hd = head_dim as u32;
let s = max_seq_len as u32;
warm!(
format!("batched_rope_bwd_{nh}_{hd}"),
BatchedRopeBackwardKernel::new(nh, hd, s, 1_000_000.0)
);
if nkv != nh {
warm!(
format!("batched_rope_bwd_{nkv}_{hd}"),
BatchedRopeBackwardKernel::new(nkv, hd, s, 1_000_000.0)
);
}
eprintln!(" ✓ Backward rope kernel pre-warmed in forward cache");
Ok(())
}
/// Pre-warm LoRA backward GEMM kernels for QLoRA training (ENT-153).
///
/// Must be called BEFORE uploading transformer blocks. Compiles the
/// small-matrix GEMMs needed for LoRA gradient computation.
#[cfg(feature = "cuda")]
pub fn pre_warm_lora_backward_kernels(
hidden_size: usize,
q_dim: usize,
kv_hidden_size: usize,
max_seq_len: usize,
lora_rank: usize,
) -> Result<()> {
let cache = FORWARD_KERNEL_CACHE.get().ok_or(CudaTensorError::DeviceNotInitialized)?;
let mut cache = cache.lock().map_err(|_err| {
CudaTensorError::KernelError("Failed to acquire kernel cache lock".to_string())
})?;
cache.pre_warm_lora_backward(hidden_size, q_dim, kv_hidden_size, max_seq_len, lora_rank)
}