ferrotorch-gpu 0.5.1

CUDA GPU backend for ferrotorch
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
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
//! GPU-accelerated FlashAttention via a custom PTX kernel with shared memory.
//!
//! Computes `softmax(Q @ K^T / sqrt(d)) @ V` without materializing the full
//! N x N attention matrix, keeping peak memory at O(N) instead of O(N^2).
//!
//! # Algorithm
//!
//! Each CUDA thread handles one query position.  The thread loads its query
//! vector into registers, then iterates over key/value tiles that are
//! cooperatively loaded into shared memory by the entire thread block.
//! Within each tile the thread computes dot products against the shared K
//! rows, updates the online softmax statistics (running max `m` and running
//! sum `l`), and accumulates the weighted V contribution into a register-
//! resident output vector.
//!
//! After all tiles are processed the thread writes the final output row to
//! global memory.
//!
//! # Shared memory layout
//!
//! The kernel uses `TILE_K` rows of shared memory for K and V tiles.  With
//! `TILE_K = 32` and head dimensions up to 128, the shared memory budget is:
//!
//! ```text
//! 2 * TILE_K * d_max * sizeof(f32) = 2 * 32 * 128 * 4 = 32 KiB
//! ```
//!
//! This fits comfortably in the 48 KiB default shared-memory limit on all
//! architectures from sm_52 upwards.
//!
//! # CPU fallback
//!
//! When the `cuda` feature is disabled, [`gpu_flash_attention_f32`] returns
//! `GpuError::NoCudaFeature`.

use crate::buffer::CudaBuffer;
use crate::device::GpuDevice;
use crate::error::{GpuError, GpuResult};

// ---------------------------------------------------------------------------
// Constants
// ---------------------------------------------------------------------------

/// Number of key/value rows loaded into shared memory per tile.
///
/// 32 is a good default: it keeps shared memory usage modest while giving
/// enough work per tile to amortize the `bar.sync` cost.
const TILE_K: usize = 32;

/// Maximum head dimension supported by the kernel.
///
/// The kernel unrolls its inner dot-product loop at compile time up to this
/// limit.  128 covers the vast majority of transformer architectures (GPT-2
/// uses 64, LLaMA uses 128).
const D_MAX: usize = 128;

// ---------------------------------------------------------------------------
// PTX kernel
// ---------------------------------------------------------------------------

/// PTX kernel for FlashAttention.
///
/// Each thread computes the attention output for ONE query position.  The
/// entire thread block cooperatively loads K/V tiles into shared memory;
/// each thread then reads from shared memory to compute dot products and
/// accumulate the online-softmax output.
///
/// **Shared memory layout** (all f32):
///
/// ```text
/// [0 .. TILE_K * d)        — K tile  [TILE_K, d]
/// [TILE_K * d .. 2*TILE_K*d + TILE_K * d_v)  — actually:
///   offset TILE_K*d          — V tile  [TILE_K, d_v]
/// ```
///
/// The kernel declares shared memory dynamically via the launch config's
/// `shared_mem_bytes` field rather than static `.shared` to support
/// variable `d` / `d_v` at runtime.
///
/// **Register budget per thread** (approximate):
///
/// - `q_reg[D_MAX]` — query vector (up to 128 floats)
/// - `o_reg[D_MAX]` — accumulator for output (up to 128 floats)
/// - `m`, `l` — online softmax scalars
/// - A handful of index / temp registers
///
/// For d=64 this is ~130 floats per thread = 520 bytes, well within the
/// register file budget even at 256 threads/block.
#[cfg(feature = "cuda")]
const FLASH_ATTENTION_PTX: &str = "\
.version 7.0
.target sm_52
.address_size 64

// Dynamic shared memory declared externally -- size set at launch.
.extern .shared .align 4 .b8 smem[];

.visible .entry flash_attention_kernel(
    .param .u64 Q_ptr,          // [N_q, d]    row-major
    .param .u64 K_ptr,          // [N_k, d]    row-major
    .param .u64 V_ptr,          // [N_k, d_v]  row-major
    .param .u64 O_ptr,          // [N_q, d_v]  output, row-major
    .param .u32 N_q,            // number of query positions
    .param .u32 N_k,            // number of key positions
    .param .u32 d_param,        // head dimension (query/key)
    .param .u32 d_v_param,      // value dimension
    .param .f32 scale,          // 1 / sqrt(d)
    .param .u32 causal,         // 0 or 1
    .param .u32 tile_k          // tile size for K/V (TILE_K)
) {
    // ---------------------------------------------------------------
    // Register declarations
    // ---------------------------------------------------------------
    // All registers declared at top level (no nested .reg -- some PTX JITs choke on scoped regs)
    .reg .u32 %ltid, %bid, %bdim, %gid;
    .reg .u32 %nq, %nk, %d, %dv, %caus, %tk;
    .reg .f32 %sc;
    .reg .u64 %Q, %K, %V, %O;
    .reg .u32 %t0, %t1, %t2, %t3;
    .reg .u64 %addr, %off64, %smem_base;
    .reg .f32 %fval, %fval2, %dot, %m_reg, %l_reg, %m_new, %l_new;
    .reg .f32 %corr, %p_val, %tile_sum, %rescale_old, %rescale_new;
    .reg .f32 %neg_inf, %zero, %one;
    .reg .pred %p_oob, %p_causal, %p_masked, %p_lnew_pos, %p_kloop, %p_dloop;
    .reg .pred %p_causal_en, %p_tile_done, %p_load_valid;
    // Zero-output loop
    .reg .u32 %zi;
    .reg .u64 %zaddr;
    // Tile loop
    .reg .u32 %k_start, %k_end, %bk;
    // K-load loop
    .reg .u32 %total_k, %li;
    .reg .u64 %ld_src, %ld_dst;
    .reg .f32 %ld_val;
    // V-load loop
    .reg .u32 %total_v, %vi, %v_smem_off;
    // Key/dim loops
    .reg .u32 %ki, %di, %k_abs;
    .reg .f32 %q_val, %k_val, %s_val, %v_val, %o_val;
    .reg .f32 %tile_max;
    .reg .pred %p_ki_done, %p_di_done, %p_masked_elem;
    // exp computation
    .reg .f32 %log2e, %arg_corr, %arg_p;
    // output update
    .reg .u32 %ovi, %v_smem_off_reg;
    .reg .f32 %o_cur;
    .reg .u64 %o_addr, %v_addr;

    // ---------------------------------------------------------------
    // Load parameters
    // ---------------------------------------------------------------
    ld.param.u64 %Q,     [Q_ptr];
    ld.param.u64 %K,     [K_ptr];
    ld.param.u64 %V,     [V_ptr];
    ld.param.u64 %O,     [O_ptr];
    ld.param.u32 %nq,    [N_q];
    ld.param.u32 %nk,    [N_k];
    ld.param.u32 %d,     [d_param];
    ld.param.u32 %dv,    [d_v_param];
    ld.param.f32 %sc,    [scale];
    ld.param.u32 %caus,  [causal];
    ld.param.u32 %tk,    [tile_k];

    // ---------------------------------------------------------------
    // Global thread ID = query index
    // ---------------------------------------------------------------
    mov.u32 %bid, %ctaid.x;
    mov.u32 %bdim, %ntid.x;
    mov.u32 %ltid, %tid.x;
    mad.lo.u32 %gid, %bid, %bdim, %ltid;

    // Out-of-bounds guard -- threads beyond N_q do nothing (but still
    // participate in shared-memory loads and barriers).
    setp.ge.u32 %p_oob, %gid, %nq;

    // Is causal masking enabled?
    setp.ne.u32 %p_causal_en, %caus, 0;

    // Constants.
    mov.f32 %neg_inf, 0fFF7FFFFF;    // -3.4028235e+38 (negative max float)
    mov.f32 %zero,    0f00000000;
    mov.f32 %one,     0f3F800000;     // 1.0

    // ---------------------------------------------------------------
    // Shared-memory base address
    // ---------------------------------------------------------------
    mov.u64 %smem_base, smem;

    // ---------------------------------------------------------------
    // Initialize online-softmax state: m = -inf, l = 0
    // ---------------------------------------------------------------
    mov.f32 %m_reg, %neg_inf;
    mov.f32 %l_reg, %zero;

    // ---------------------------------------------------------------
    // Load this thread's query vector Q[gid, :] into the output area
    // of global memory -- we will use O_ptr as our accumulator
    // (initialized to zero) and only read Q from global memory.
    // Actually: we keep O in global memory and update in-place per tile.
    //
    // Strategy: For each tile we do the full online softmax update
    // directly reading Q from global mem (coalesced), K/V from smem.
    // O is written back to global mem after all tiles.
    //
    // But first: zero the output region for this query.
    // ---------------------------------------------------------------

    // Zero output O[gid, 0..d_v] if in-bounds.
    @%p_oob bra SKIP_ZERO_OUTPUT;
        mov.u32 %zi, 0;
ZERO_LOOP:
        setp.ge.u32 %p_dloop, %zi, %dv;
        @%p_dloop bra ZERO_DONE;

        // addr = O + (gid * d_v + zi) * 4
        mad.lo.u32 %t0, %gid, %dv, %zi;
        cvt.u64.u32 %off64, %t0;
        shl.b64 %off64, %off64, 2;
        add.u64 %zaddr, %O, %off64;
        st.global.f32 [%zaddr], %zero;

        add.u32 %zi, %zi, 1;
        bra ZERO_LOOP;
ZERO_DONE:
SKIP_ZERO_OUTPUT:

    // ---------------------------------------------------------------
    // Tile loop: iterate over K/V in chunks of tile_k
    // ---------------------------------------------------------------
        mov.u32 %k_start, 0;

TILE_LOOP:
        setp.ge.u32 %p_tile_done, %k_start, %nk;
        @%p_tile_done bra TILE_LOOP_END;

        // k_end = min(k_start + tile_k, N_k)
        add.u32 %k_end, %k_start, %tk;
        min.u32 %k_end, %k_end, %nk;
        sub.u32 %bk, %k_end, %k_start;

        // -----------------------------------------------------------
        // Cooperative load: K tile into smem[0 .. bk * d]
        // Each thread loads ceil(bk * d / blockDim.x) elements.
        // -----------------------------------------------------------
        mul.lo.u32 %total_k, %bk, %d;
            mov.u32 %li, %ltid;
LOAD_K_LOOP:
            setp.ge.u32 %p_load_valid, %li, %total_k;
            @%p_load_valid bra LOAD_K_DONE;

            mad.lo.u32 %t0, %k_start, %d, %li;
            cvt.u64.u32 %off64, %t0;
            shl.b64 %off64, %off64, 2;
            add.u64 %ld_src, %K, %off64;
            ld.global.f32 %ld_val, [%ld_src];

            cvt.u64.u32 %off64, %li;
            shl.b64 %off64, %off64, 2;
            add.u64 %ld_dst, %smem_base, %off64;
            st.shared.f32 [%ld_dst], %ld_val;

            add.u32 %li, %li, %bdim;
            bra LOAD_K_LOOP;
LOAD_K_DONE:

        // -----------------------------------------------------------
        // Cooperative load: V tile into smem[bk*d .. bk*d + bk*d_v]
        // -----------------------------------------------------------
            mul.lo.u32 %total_v, %bk, %dv;
            mul.lo.u32 %v_smem_off, %tk, %d;

            mov.u32 %vi, %ltid;
LOAD_V_LOOP:
            setp.ge.u32 %p_load_valid, %vi, %total_v;
            @%p_load_valid bra LOAD_V_DONE;

            mad.lo.u32 %t0, %k_start, %dv, %vi;
            cvt.u64.u32 %off64, %t0;
            shl.b64 %off64, %off64, 2;
            add.u64 %ld_src, %V, %off64;
            ld.global.f32 %ld_val, [%ld_src];

            add.u32 %t1, %v_smem_off, %vi;
            cvt.u64.u32 %off64, %t1;
            shl.b64 %off64, %off64, 2;
            add.u64 %ld_dst, %smem_base, %off64;
            st.shared.f32 [%ld_dst], %ld_val;

            add.u32 %vi, %vi, %bdim;
            bra LOAD_V_LOOP;
LOAD_V_DONE:

        // Barrier: ensure all K/V data is in shared memory.
        bar.sync 0;

        // -----------------------------------------------------------
        // Per-thread: compute attention for this tile
        // -----------------------------------------------------------
        @%p_oob bra SKIP_COMPUTE;

            mov.u32 %ki, 0;
KEY_LOOP:
            setp.ge.u32 %p_ki_done, %ki, %bk;
            @%p_ki_done bra KEY_LOOP_END;

            // Absolute key index for causal check.
            add.u32 %k_abs, %k_start, %ki;

            // Compute dot product: sum over d dimensions.
            mov.f32 %dot, %zero;
            mov.u32 %di, 0;
DOT_LOOP:
            setp.ge.u32 %p_di_done, %di, %d;
            @%p_di_done bra DOT_DONE;

            // q_val = Q[gid * d + di]
            mad.lo.u32 %t0, %gid, %d, %di;
            cvt.u64.u32 %off64, %t0;
            shl.b64 %off64, %off64, 2;
            add.u64 %addr, %Q, %off64;
            ld.global.f32 %q_val, [%addr];

            // k_val = smem[ki * d + di]  (K tile in shared memory)
            mad.lo.u32 %t0, %ki, %d, %di;
            cvt.u64.u32 %off64, %t0;
            shl.b64 %off64, %off64, 2;
            add.u64 %addr, %smem_base, %off64;
            ld.shared.f32 %k_val, [%addr];

            fma.rn.f32 %dot, %q_val, %k_val, %dot;

            add.u32 %di, %di, 1;
            bra DOT_LOOP;
DOT_DONE:
            // s_val = dot * scale
            mul.f32 %s_val, %dot, %sc;

            // Causal mask: if causal and k_abs > gid, set s = -inf.
            @!%p_causal_en bra SKIP_CAUSAL_MASK;
            setp.gt.u32 %p_masked_elem, %k_abs, %gid;
            @%p_masked_elem mov.f32 %s_val, %neg_inf;
SKIP_CAUSAL_MASK:

            // Online softmax update.
            // m_new = max(m_reg, s_val)
            max.f32 %m_new, %m_reg, %s_val;

            // Compute corr = exp(m_old - m_new) and p = exp(s - m_new)
            // using ex2.approx (2^x) with log2(e) conversion.
            mov.f32 %log2e, 0f3FB8AA3B;    // log2(e) = 1.4426950408889634

                // corr = exp(m_reg - m_new) = 2^((m_reg - m_new) * log2e)
                sub.f32 %arg_corr, %m_reg, %m_new;
                mul.f32 %arg_corr, %arg_corr, %log2e;
                ex2.approx.f32 %corr, %arg_corr;

                // p = exp(s_val - m_new) = 2^((s_val - m_new) * log2e)
                sub.f32 %arg_p, %s_val, %m_new;
                mul.f32 %arg_p, %arg_p, %log2e;
                ex2.approx.f32 %p_val, %arg_p;

            // l_new = corr * l_reg + p_val
            fma.rn.f32 %l_new, %corr, %l_reg, %p_val;

            // Update output: O[gid, dv_i] = (corr * l_reg / l_new) * O[gid, dv_i]
            //                              + (p_val / l_new) * V_tile[ki, dv_i]
            //
            // rescale_old = corr * l_reg / l_new
            // rescale_new = p_val / l_new
            // Special case: if l_new == 0 skip (all scores were -inf).
            setp.gt.f32 %p_lnew_pos, %l_new, %zero;
            @!%p_lnew_pos bra SKIP_OUTPUT_UPDATE;

            mul.f32 %rescale_old, %corr, %l_reg;
            div.approx.f32 %rescale_old, %rescale_old, %l_new;
            div.approx.f32 %rescale_new, %p_val, %l_new;

            // Loop over d_v to update output.
                mul.lo.u32 %v_smem_off_reg, %tk, %d;

                mov.u32 %ovi, 0;
OV_LOOP:
                setp.ge.u32 %p_di_done, %ovi, %dv;
                @%p_di_done bra OV_DONE;

                mad.lo.u32 %t0, %gid, %dv, %ovi;
                cvt.u64.u32 %off64, %t0;
                shl.b64 %off64, %off64, 2;
                add.u64 %o_addr, %O, %off64;
                ld.global.f32 %o_cur, [%o_addr];

                mad.lo.u32 %t0, %ki, %dv, %ovi;
                add.u32 %t0, %t0, %v_smem_off_reg;
                cvt.u64.u32 %off64, %t0;
                shl.b64 %off64, %off64, 2;
                add.u64 %v_addr, %smem_base, %off64;
                ld.shared.f32 %v_val, [%v_addr];

                mul.f32 %o_cur, %rescale_old, %o_cur;
                fma.rn.f32 %o_cur, %rescale_new, %v_val, %o_cur;

                st.global.f32 [%o_addr], %o_cur;

                add.u32 %ovi, %ovi, 1;
                bra OV_LOOP;
OV_DONE:

SKIP_OUTPUT_UPDATE:
            mov.f32 %m_reg, %m_new;
            mov.f32 %l_reg, %l_new;

            add.u32 %ki, %ki, 1;
            bra KEY_LOOP;
KEY_LOOP_END:
SKIP_COMPUTE:

        bar.sync 0;

        add.u32 %k_start, %k_start, %tk;
        bra TILE_LOOP;
TILE_LOOP_END:

    ret;
}
";

// ---------------------------------------------------------------------------
// Rust wrapper
// ---------------------------------------------------------------------------

/// Compute FlashAttention on the GPU.
///
/// `softmax(Q @ K^T / sqrt(d)) @ V` — memory-efficient, O(N) peak memory.
///
/// # Arguments
///
/// - `query` -- GPU buffer `[batch_heads, N_q, d]` flattened row-major.
/// - `key`   -- GPU buffer `[batch_heads, N_k, d]` flattened row-major.
/// - `value` -- GPU buffer `[batch_heads, N_k, d_v]` flattened row-major.
/// - `n_q`   -- number of query positions.
/// - `n_k`   -- number of key positions.
/// - `d`     -- head dimension (query/key).
/// - `d_v`   -- value dimension.
/// - `batch_heads` -- `B * H`, the number of independent attention heads.
/// - `scale` -- typically `1.0 / sqrt(d)`.
/// - `causal` -- enable causal (lower-triangular) masking.
/// - `device` -- the GPU device owning all buffers.
///
/// # Returns
///
/// GPU buffer of shape `[batch_heads, N_q, d_v]` flattened row-major.
///
/// # Errors
///
/// - [`GpuError::ShapeMismatch`] if buffer lengths are inconsistent.
/// - [`GpuError::DeviceMismatch`] if buffers are on different devices.
/// - [`GpuError::Driver`] on CUDA runtime errors.
#[allow(clippy::too_many_arguments)]
#[cfg(feature = "cuda")]
pub fn gpu_flash_attention_f32(
    query: &CudaBuffer<f32>,
    key: &CudaBuffer<f32>,
    value: &CudaBuffer<f32>,
    n_q: usize,
    n_k: usize,
    d: usize,
    d_v: usize,
    batch_heads: usize,
    scale: f32,
    causal: bool,
    device: &GpuDevice,
) -> GpuResult<CudaBuffer<f32>> {
    use cudarc::driver::PushKernelArg;

    // --- Validate shapes ---------------------------------------------------

    if d > D_MAX {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention",
            expected: vec![D_MAX],
            got: vec![d],
        });
    }

    if d_v > D_MAX {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention",
            expected: vec![D_MAX],
            got: vec![d_v],
        });
    }

    // Validate shared memory requirement fits in 48 KiB.
    // smem = (TILE_K * d + TILE_K * d_v) * sizeof(f32)
    let smem_required = (TILE_K * d + TILE_K * d_v) * std::mem::size_of::<f32>();
    const SMEM_LIMIT: usize = 48 * 1024; // 48 KiB
    if smem_required > SMEM_LIMIT {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention",
            expected: vec![SMEM_LIMIT],
            got: vec![smem_required],
        });
    }

    let expected_q = batch_heads * n_q * d;
    if query.len() != expected_q {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention",
            expected: vec![batch_heads, n_q, d],
            got: vec![query.len()],
        });
    }

    let expected_k = batch_heads * n_k * d;
    if key.len() != expected_k {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention",
            expected: vec![batch_heads, n_k, d],
            got: vec![key.len()],
        });
    }

    let expected_v = batch_heads * n_k * d_v;
    if value.len() != expected_v {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention",
            expected: vec![batch_heads, n_k, d_v],
            got: vec![value.len()],
        });
    }

    // --- Validate devices --------------------------------------------------

    if query.device_ordinal() != device.ordinal() {
        return Err(GpuError::DeviceMismatch {
            expected: device.ordinal(),
            got: query.device_ordinal(),
        });
    }
    if key.device_ordinal() != device.ordinal() {
        return Err(GpuError::DeviceMismatch {
            expected: device.ordinal(),
            got: key.device_ordinal(),
        });
    }
    if value.device_ordinal() != device.ordinal() {
        return Err(GpuError::DeviceMismatch {
            expected: device.ordinal(),
            got: value.device_ordinal(),
        });
    }

    // --- Handle degenerate cases -------------------------------------------

    let total_out = batch_heads * n_q * d_v;
    if batch_heads == 0 || n_q == 0 || d_v == 0 {
        return crate::transfer::alloc_zeros_f32(0, device);
    }

    // --- Allocate output ---------------------------------------------------

    let mut output = crate::transfer::alloc_zeros_f32(total_out, device)?;

    // --- Load PTX module (cached after first compilation) -----------------

    let ctx = device.context();
    let stream = device.stream();

    let kernel_fn = crate::module_cache::get_or_compile(
        ctx,
        FLASH_ATTENTION_PTX,
        "flash_attention_kernel",
        device.ordinal() as u32,
    )?;

    // --- Compute shared memory requirement ---------------------------------
    //
    // smem = (TILE_K * d + TILE_K * d_v) * sizeof(f32)

    let smem_bytes = (TILE_K * d + TILE_K * d_v) * std::mem::size_of::<f32>();

    // --- Launch config -----------------------------------------------------
    //
    // One thread per query position.  256 threads per block is a reasonable
    // default that balances occupancy and register pressure.

    const BLOCK: u32 = 256;

    if n_q > u32::MAX as usize {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention",
            expected: vec![u32::MAX as usize],
            got: vec![n_q],
        });
    }
    let grid_x = ((n_q as u32).saturating_add(BLOCK - 1)) / BLOCK;

    let cfg = cudarc::driver::LaunchConfig {
        grid_dim: (grid_x.max(1), 1, 1),
        block_dim: (BLOCK, 1, 1),
        shared_mem_bytes: smem_bytes as u32,
    };

    // --- Per-head launch ---------------------------------------------------

    let n_q_u32 = n_q as u32;
    let n_k_u32 = n_k as u32;
    let d_u32 = d as u32;
    let d_v_u32 = d_v as u32;
    let causal_u32: u32 = if causal { 1 } else { 0 };
    let tile_k_u32 = TILE_K as u32;

    for bh in 0..batch_heads {
        // Compute offsets into the flattened buffers for this head.
        let q_offset = bh * n_q * d;
        let k_offset = bh * n_k * d;
        let v_offset = bh * n_k * d_v;
        let o_offset = bh * n_q * d_v;

        // Create sub-slices that point to this head's data.
        let q_view = query.inner().slice(q_offset..q_offset + n_q * d);
        let k_view = key.inner().slice(k_offset..k_offset + n_k * d);
        let v_view = value.inner().slice(v_offset..v_offset + n_k * d_v);
        let mut o_view = output.inner_mut().slice_mut(o_offset..o_offset + n_q * d_v);

        // SAFETY: The kernel reads from Q, K, V sub-slices and writes to O
        // sub-slice.  All buffers are device-resident with sufficient length.
        // The grid covers N_q threads; out-of-range threads are guarded.
        // Shared memory is sized to hold TILE_K * (d + d_v) floats.
        unsafe {
            stream
                .launch_builder(&kernel_fn)
                .arg(&q_view)
                .arg(&k_view)
                .arg(&v_view)
                .arg(&mut o_view)
                .arg(&n_q_u32)
                .arg(&n_k_u32)
                .arg(&d_u32)
                .arg(&d_v_u32)
                .arg(&scale)
                .arg(&causal_u32)
                .arg(&tile_k_u32)
                .launch(cfg)?;
        }
    }

    Ok(output)
}

/// Stub -- always returns [`GpuError::NoCudaFeature`].
#[cfg(not(feature = "cuda"))]
pub fn gpu_flash_attention_f32(
    _query: &CudaBuffer<f32>,
    _key: &CudaBuffer<f32>,
    _value: &CudaBuffer<f32>,
    _n_q: usize,
    _n_k: usize,
    _d: usize,
    _d_v: usize,
    _batch_heads: usize,
    _scale: f32,
    _causal: bool,
    _device: &GpuDevice,
) -> GpuResult<CudaBuffer<f32>> {
    Err(GpuError::NoCudaFeature)
}

// ---------------------------------------------------------------------------
// FlashAttention f64 PTX kernel (P5)
// ---------------------------------------------------------------------------

/// PTX kernel for FlashAttention in f64.
///
/// Mirrors the f32 kernel structure but uses:
/// - 8-byte shared memory alignment + double the byte stride for loads/stores;
/// - polynomial 2^x expansion (no `ex2.approx.f64` exists in PTX);
/// - `div.rn.f64` instead of `div.approx.f32`;
/// - f64 bit patterns for -inf / 0 / 1 / log2(e).
///
/// All comments are ASCII to stay safe through the cudarc PTX JIT (Batch 4
/// established that non-ASCII characters in PTX comments cause the JIT to
/// reject the module).
#[cfg(feature = "cuda")]
const FLASH_ATTENTION_F64_PTX: &str = "\
.version 7.0
.target sm_60
.address_size 64

// Dynamic shared memory declared externally -- size set at launch.
.extern .shared .align 8 .b8 smem[];

.visible .entry flash_attention_f64_kernel(
    .param .u64 Q_ptr,
    .param .u64 K_ptr,
    .param .u64 V_ptr,
    .param .u64 O_ptr,
    .param .u32 N_q,
    .param .u32 N_k,
    .param .u32 d_param,
    .param .u32 d_v_param,
    .param .f64 scale,
    .param .u32 causal,
    .param .u32 tile_k
) {
    .reg .u32 %ltid, %bid, %bdim, %gid;
    .reg .u32 %nq, %nk, %d, %dv, %caus, %tk;
    .reg .f64 %sc;
    .reg .u64 %Q, %K, %V, %O;
    .reg .u32 %t0, %t1;
    .reg .u64 %addr, %off64, %smem_base;
    .reg .f64 %dot, %m_reg, %l_reg, %m_new, %l_new;
    .reg .f64 %corr, %p_val, %rescale_old, %rescale_new;
    .reg .f64 %neg_inf, %zero, %one;
    .reg .pred %p_oob, %p_lnew_pos, %p_dloop;
    .reg .pred %p_causal_en, %p_tile_done, %p_load_valid;
    .reg .u32 %zi;
    .reg .u64 %zaddr;
    .reg .u32 %k_start, %k_end, %bk;
    .reg .u32 %total_k, %li;
    .reg .u64 %ld_src, %ld_dst;
    .reg .f64 %ld_val;
    .reg .u32 %total_v, %vi, %v_smem_off;
    .reg .u32 %ki, %di, %k_abs;
    .reg .f64 %q_val, %k_val, %s_val, %v_val;
    .reg .pred %p_ki_done, %p_di_done, %p_masked_elem;
    // poly-exp scratch
    .reg .f64 %arg_corr, %arg_p, %ex_in;
    .reg .f64 %e_nf, %e_r, %e_p, %e_half, %e_one;
    .reg .s32 %e_ni;
    .reg .s64 %e_ni64, %e_bits;
    .reg .pred %p_underflow_corr, %p_underflow_p;
    .reg .u32 %ovi, %v_smem_off_reg;
    .reg .f64 %o_cur;
    .reg .u64 %o_addr, %v_addr;

    ld.param.u64 %Q,     [Q_ptr];
    ld.param.u64 %K,     [K_ptr];
    ld.param.u64 %V,     [V_ptr];
    ld.param.u64 %O,     [O_ptr];
    ld.param.u32 %nq,    [N_q];
    ld.param.u32 %nk,    [N_k];
    ld.param.u32 %d,     [d_param];
    ld.param.u32 %dv,    [d_v_param];
    ld.param.f64 %sc,    [scale];
    ld.param.u32 %caus,  [causal];
    ld.param.u32 %tk,    [tile_k];

    mov.u32 %bid, %ctaid.x;
    mov.u32 %bdim, %ntid.x;
    mov.u32 %ltid, %tid.x;
    mad.lo.u32 %gid, %bid, %bdim, %ltid;

    setp.ge.u32 %p_oob, %gid, %nq;
    setp.ne.u32 %p_causal_en, %caus, 0;

    // Constants in f64 bit patterns.
    mov.f64 %neg_inf, 0dFFF0000000000000;     // -inf
    mov.f64 %zero,    0d0000000000000000;     // 0.0
    mov.f64 %one,     0d3FF0000000000000;     // 1.0

    mov.u64 %smem_base, smem;

    mov.f64 %m_reg, %neg_inf;
    mov.f64 %l_reg, %zero;

    // Zero output O[gid, 0..d_v] if in-bounds.
    @%p_oob bra SKIP_ZERO_OUTPUT;
        mov.u32 %zi, 0;
ZERO_LOOP:
        setp.ge.u32 %p_dloop, %zi, %dv;
        @%p_dloop bra ZERO_DONE;

        mad.lo.u32 %t0, %gid, %dv, %zi;
        cvt.u64.u32 %off64, %t0;
        shl.b64 %off64, %off64, 3;
        add.u64 %zaddr, %O, %off64;
        st.global.f64 [%zaddr], %zero;

        add.u32 %zi, %zi, 1;
        bra ZERO_LOOP;
ZERO_DONE:
SKIP_ZERO_OUTPUT:

        mov.u32 %k_start, 0;
TILE_LOOP:
        setp.ge.u32 %p_tile_done, %k_start, %nk;
        @%p_tile_done bra TILE_LOOP_END;

        add.u32 %k_end, %k_start, %tk;
        min.u32 %k_end, %k_end, %nk;
        sub.u32 %bk, %k_end, %k_start;

        // Cooperative load: K tile into smem[0 .. bk*d] (8-byte stride).
        mul.lo.u32 %total_k, %bk, %d;
            mov.u32 %li, %ltid;
LOAD_K_LOOP:
            setp.ge.u32 %p_load_valid, %li, %total_k;
            @%p_load_valid bra LOAD_K_DONE;

            mad.lo.u32 %t0, %k_start, %d, %li;
            cvt.u64.u32 %off64, %t0;
            shl.b64 %off64, %off64, 3;
            add.u64 %ld_src, %K, %off64;
            ld.global.f64 %ld_val, [%ld_src];

            cvt.u64.u32 %off64, %li;
            shl.b64 %off64, %off64, 3;
            add.u64 %ld_dst, %smem_base, %off64;
            st.shared.f64 [%ld_dst], %ld_val;

            add.u32 %li, %li, %bdim;
            bra LOAD_K_LOOP;
LOAD_K_DONE:

            mul.lo.u32 %total_v, %bk, %dv;
            mul.lo.u32 %v_smem_off, %tk, %d;

            mov.u32 %vi, %ltid;
LOAD_V_LOOP:
            setp.ge.u32 %p_load_valid, %vi, %total_v;
            @%p_load_valid bra LOAD_V_DONE;

            mad.lo.u32 %t0, %k_start, %dv, %vi;
            cvt.u64.u32 %off64, %t0;
            shl.b64 %off64, %off64, 3;
            add.u64 %ld_src, %V, %off64;
            ld.global.f64 %ld_val, [%ld_src];

            add.u32 %t1, %v_smem_off, %vi;
            cvt.u64.u32 %off64, %t1;
            shl.b64 %off64, %off64, 3;
            add.u64 %ld_dst, %smem_base, %off64;
            st.shared.f64 [%ld_dst], %ld_val;

            add.u32 %vi, %vi, %bdim;
            bra LOAD_V_LOOP;
LOAD_V_DONE:

        bar.sync 0;

        @%p_oob bra SKIP_COMPUTE;

            mov.u32 %ki, 0;
KEY_LOOP:
            setp.ge.u32 %p_ki_done, %ki, %bk;
            @%p_ki_done bra KEY_LOOP_END;

            add.u32 %k_abs, %k_start, %ki;

            // Dot product over d.
            mov.f64 %dot, %zero;
            mov.u32 %di, 0;
DOT_LOOP:
            setp.ge.u32 %p_di_done, %di, %d;
            @%p_di_done bra DOT_DONE;

            mad.lo.u32 %t0, %gid, %d, %di;
            cvt.u64.u32 %off64, %t0;
            shl.b64 %off64, %off64, 3;
            add.u64 %addr, %Q, %off64;
            ld.global.f64 %q_val, [%addr];

            mad.lo.u32 %t0, %ki, %d, %di;
            cvt.u64.u32 %off64, %t0;
            shl.b64 %off64, %off64, 3;
            add.u64 %addr, %smem_base, %off64;
            ld.shared.f64 %k_val, [%addr];

            fma.rn.f64 %dot, %q_val, %k_val, %dot;

            add.u32 %di, %di, 1;
            bra DOT_LOOP;
DOT_DONE:
            mul.f64 %s_val, %dot, %sc;

            // Causal mask: if causal and k_abs > gid, set s = -inf.
            @!%p_causal_en bra SKIP_CAUSAL_MASK;
            setp.gt.u32 %p_masked_elem, %k_abs, %gid;
            @%p_masked_elem mov.f64 %s_val, %neg_inf;
SKIP_CAUSAL_MASK:

            // Online softmax update.
            max.f64 %m_new, %m_reg, %s_val;

            // corr = exp(m_reg - m_new). Use polynomial 2^x with underflow
            // guard: if (m_reg - m_new) <= -inf return 0.
            sub.f64 %arg_corr, %m_reg, %m_new;
            setp.le.f64 %p_underflow_corr, %arg_corr, %neg_inf;
            @%p_underflow_corr bra CORR_UNDERFLOW;
            mov.f64 %ex_in, %arg_corr;
            mov.f64 %e_one, 0d3FF0000000000000;
            mov.f64 %e_half, 0d3FE0000000000000;
            // Multiply by log2(e) = 1.4426950408889634
            mul.f64 %e_nf, %ex_in, 0d3FF71547652B82FE;
            cvt.rni.f64.f64 %e_nf, %e_nf;
            cvt.rni.s32.f64 %e_ni, %e_nf;
            // Reduce r = ex_in - n*ln2  (split as Cody-Waite)
            fma.rn.f64 %e_r, %e_nf, 0dBFE62E42FEFA3800, %ex_in;
            fma.rn.f64 %e_r, %e_nf, 0dBD2EF35793C76730, %e_r;
            // Polynomial: ~ 1 + r + r^2/2 + ... up through r^11.
            mov.f64 %e_p, 0d3E5AE64567F544E4;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3E927E4FB7789F5C;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3EC71DE3A556C734;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3EFA01A01A01A01A;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3F2A01A01A01A01A;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3F56C16C16C16C17;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3F81111111111111;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3FA5555555555555;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3FC5555555555555;
            fma.rn.f64 %e_p, %e_p, %e_r, %e_half;
            fma.rn.f64 %e_p, %e_p, %e_r, %e_one;
            fma.rn.f64 %corr, %e_p, %e_r, %e_one;
            // Multiply by 2^n via bit-pattern.
            cvt.s64.s32 %e_ni64, %e_ni;
            add.s64 %e_ni64, %e_ni64, 1023;
            shl.b64 %e_bits, %e_ni64, 52;
            mov.b64 %e_nf, %e_bits;
            mul.f64 %corr, %corr, %e_nf;
            bra CORR_DONE;
CORR_UNDERFLOW:
            mov.f64 %corr, %zero;
CORR_DONE:

            // p = exp(s_val - m_new), same polynomial.
            sub.f64 %arg_p, %s_val, %m_new;
            setp.le.f64 %p_underflow_p, %arg_p, %neg_inf;
            @%p_underflow_p bra P_UNDERFLOW;
            mov.f64 %ex_in, %arg_p;
            mov.f64 %e_one, 0d3FF0000000000000;
            mov.f64 %e_half, 0d3FE0000000000000;
            mul.f64 %e_nf, %ex_in, 0d3FF71547652B82FE;
            cvt.rni.f64.f64 %e_nf, %e_nf;
            cvt.rni.s32.f64 %e_ni, %e_nf;
            fma.rn.f64 %e_r, %e_nf, 0dBFE62E42FEFA3800, %ex_in;
            fma.rn.f64 %e_r, %e_nf, 0dBD2EF35793C76730, %e_r;
            mov.f64 %e_p, 0d3E5AE64567F544E4;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3E927E4FB7789F5C;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3EC71DE3A556C734;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3EFA01A01A01A01A;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3F2A01A01A01A01A;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3F56C16C16C16C17;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3F81111111111111;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3FA5555555555555;
            fma.rn.f64 %e_p, %e_p, %e_r, 0d3FC5555555555555;
            fma.rn.f64 %e_p, %e_p, %e_r, %e_half;
            fma.rn.f64 %e_p, %e_p, %e_r, %e_one;
            fma.rn.f64 %p_val, %e_p, %e_r, %e_one;
            cvt.s64.s32 %e_ni64, %e_ni;
            add.s64 %e_ni64, %e_ni64, 1023;
            shl.b64 %e_bits, %e_ni64, 52;
            mov.b64 %e_nf, %e_bits;
            mul.f64 %p_val, %p_val, %e_nf;
            bra P_DONE;
P_UNDERFLOW:
            mov.f64 %p_val, %zero;
P_DONE:

            // l_new = corr * l_reg + p_val.
            fma.rn.f64 %l_new, %corr, %l_reg, %p_val;

            setp.gt.f64 %p_lnew_pos, %l_new, %zero;
            @!%p_lnew_pos bra SKIP_OUTPUT_UPDATE;

            mul.f64 %rescale_old, %corr, %l_reg;
            div.rn.f64 %rescale_old, %rescale_old, %l_new;
            div.rn.f64 %rescale_new, %p_val, %l_new;

                mul.lo.u32 %v_smem_off_reg, %tk, %d;

                mov.u32 %ovi, 0;
OV_LOOP:
                setp.ge.u32 %p_di_done, %ovi, %dv;
                @%p_di_done bra OV_DONE;

                mad.lo.u32 %t0, %gid, %dv, %ovi;
                cvt.u64.u32 %off64, %t0;
                shl.b64 %off64, %off64, 3;
                add.u64 %o_addr, %O, %off64;
                ld.global.f64 %o_cur, [%o_addr];

                mad.lo.u32 %t0, %ki, %dv, %ovi;
                add.u32 %t0, %t0, %v_smem_off_reg;
                cvt.u64.u32 %off64, %t0;
                shl.b64 %off64, %off64, 3;
                add.u64 %v_addr, %smem_base, %off64;
                ld.shared.f64 %v_val, [%v_addr];

                mul.f64 %o_cur, %rescale_old, %o_cur;
                fma.rn.f64 %o_cur, %rescale_new, %v_val, %o_cur;

                st.global.f64 [%o_addr], %o_cur;

                add.u32 %ovi, %ovi, 1;
                bra OV_LOOP;
OV_DONE:

SKIP_OUTPUT_UPDATE:
            mov.f64 %m_reg, %m_new;
            mov.f64 %l_reg, %l_new;

            add.u32 %ki, %ki, 1;
            bra KEY_LOOP;
KEY_LOOP_END:
SKIP_COMPUTE:

        bar.sync 0;

        add.u32 %k_start, %k_start, %tk;
        bra TILE_LOOP;
TILE_LOOP_END:

    ret;
}
";

/// Compute FlashAttention on the GPU in f64.
///
/// `softmax(Q @ K^T * scale) @ V` with on-device tiled online softmax.
/// Mirrors the f32 wrapper but takes f64 buffers + scale.
#[allow(clippy::too_many_arguments)]
#[cfg(feature = "cuda")]
pub fn gpu_flash_attention_f64(
    query: &CudaBuffer<f64>,
    key: &CudaBuffer<f64>,
    value: &CudaBuffer<f64>,
    n_q: usize,
    n_k: usize,
    d: usize,
    d_v: usize,
    batch_heads: usize,
    scale: f64,
    causal: bool,
    device: &GpuDevice,
) -> GpuResult<CudaBuffer<f64>> {
    use cudarc::driver::PushKernelArg;

    if d > D_MAX {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention_f64",
            expected: vec![D_MAX],
            got: vec![d],
        });
    }
    if d_v > D_MAX {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention_f64",
            expected: vec![D_MAX],
            got: vec![d_v],
        });
    }

    // 8-byte elements -> twice the shared-memory footprint.
    let smem_required = (TILE_K * d + TILE_K * d_v) * std::mem::size_of::<f64>();
    const SMEM_LIMIT: usize = 48 * 1024;
    if smem_required > SMEM_LIMIT {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention_f64",
            expected: vec![SMEM_LIMIT],
            got: vec![smem_required],
        });
    }

    let expected_q = batch_heads * n_q * d;
    if query.len() != expected_q {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention_f64",
            expected: vec![batch_heads, n_q, d],
            got: vec![query.len()],
        });
    }
    let expected_k = batch_heads * n_k * d;
    if key.len() != expected_k {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention_f64",
            expected: vec![batch_heads, n_k, d],
            got: vec![key.len()],
        });
    }
    let expected_v = batch_heads * n_k * d_v;
    if value.len() != expected_v {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention_f64",
            expected: vec![batch_heads, n_k, d_v],
            got: vec![value.len()],
        });
    }

    if query.device_ordinal() != device.ordinal() {
        return Err(GpuError::DeviceMismatch {
            expected: device.ordinal(),
            got: query.device_ordinal(),
        });
    }
    if key.device_ordinal() != device.ordinal() {
        return Err(GpuError::DeviceMismatch {
            expected: device.ordinal(),
            got: key.device_ordinal(),
        });
    }
    if value.device_ordinal() != device.ordinal() {
        return Err(GpuError::DeviceMismatch {
            expected: device.ordinal(),
            got: value.device_ordinal(),
        });
    }

    let total_out = batch_heads * n_q * d_v;
    if batch_heads == 0 || n_q == 0 || d_v == 0 {
        return crate::transfer::alloc_zeros_f64(0, device);
    }

    let mut output = crate::transfer::alloc_zeros_f64(total_out, device)?;

    let ctx = device.context();
    let stream = device.stream();

    let kernel_fn = crate::module_cache::get_or_compile(
        ctx,
        FLASH_ATTENTION_F64_PTX,
        "flash_attention_f64_kernel",
        device.ordinal() as u32,
    )?;

    let smem_bytes = (TILE_K * d + TILE_K * d_v) * std::mem::size_of::<f64>();

    const BLOCK: u32 = 256;

    if n_q > u32::MAX as usize {
        return Err(GpuError::ShapeMismatch {
            op: "flash_attention_f64",
            expected: vec![u32::MAX as usize],
            got: vec![n_q],
        });
    }
    let grid_x = ((n_q as u32).saturating_add(BLOCK - 1)) / BLOCK;

    let cfg = cudarc::driver::LaunchConfig {
        grid_dim: (grid_x.max(1), 1, 1),
        block_dim: (BLOCK, 1, 1),
        shared_mem_bytes: smem_bytes as u32,
    };

    let n_q_u32 = n_q as u32;
    let n_k_u32 = n_k as u32;
    let d_u32 = d as u32;
    let d_v_u32 = d_v as u32;
    let causal_u32: u32 = if causal { 1 } else { 0 };
    let tile_k_u32 = TILE_K as u32;

    for bh in 0..batch_heads {
        let q_offset = bh * n_q * d;
        let k_offset = bh * n_k * d;
        let v_offset = bh * n_k * d_v;
        let o_offset = bh * n_q * d_v;

        let q_view = query.inner().slice(q_offset..q_offset + n_q * d);
        let k_view = key.inner().slice(k_offset..k_offset + n_k * d);
        let v_view = value.inner().slice(v_offset..v_offset + n_k * d_v);
        let mut o_view = output.inner_mut().slice_mut(o_offset..o_offset + n_q * d_v);

        // SAFETY: Same justification as `gpu_flash_attention_f32` -- all
        // sub-slices are device-resident with sufficient length, the
        // grid covers N_q threads with OOB guards, and shared memory is
        // sized to hold TILE_K * (d + d_v) f64 values.
        unsafe {
            stream
                .launch_builder(&kernel_fn)
                .arg(&q_view)
                .arg(&k_view)
                .arg(&v_view)
                .arg(&mut o_view)
                .arg(&n_q_u32)
                .arg(&n_k_u32)
                .arg(&d_u32)
                .arg(&d_v_u32)
                .arg(&scale)
                .arg(&causal_u32)
                .arg(&tile_k_u32)
                .launch(cfg)?;
        }
    }

    Ok(output)
}

/// Stub -- always returns [`GpuError::NoCudaFeature`].
#[cfg(not(feature = "cuda"))]
pub fn gpu_flash_attention_f64(
    _query: &CudaBuffer<f64>,
    _key: &CudaBuffer<f64>,
    _value: &CudaBuffer<f64>,
    _n_q: usize,
    _n_k: usize,
    _d: usize,
    _d_v: usize,
    _batch_heads: usize,
    _scale: f64,
    _causal: bool,
    _device: &GpuDevice,
) -> GpuResult<CudaBuffer<f64>> {
    Err(GpuError::NoCudaFeature)
}

// ---------------------------------------------------------------------------
// CPU reference (for testing)
// ---------------------------------------------------------------------------

/// Pure CPU FlashAttention reference using the online softmax trick.
///
/// Operates on a single head: Q `[N_q, d]`, K `[N_k, d]`, V `[N_k, d_v]`.
/// Returns output `[N_q, d_v]`.
#[cfg(test)]
#[allow(clippy::too_many_arguments)]
fn cpu_flash_attention_ref(
    q: &[f32],
    k: &[f32],
    v: &[f32],
    n_q: usize,
    n_k: usize,
    d: usize,
    d_v: usize,
    scale: f32,
    causal: bool,
) -> Vec<f32> {
    let neg_inf: f32 = -1e30;
    let mut output = vec![0.0f32; n_q * d_v];

    for qi in 0..n_q {
        let mut m: f32 = f32::NEG_INFINITY;
        let mut l: f32 = 0.0;

        for ki in 0..n_k {
            // Dot product.
            let mut dot = 0.0f32;
            for di in 0..d {
                dot += q[qi * d + di] * k[ki * d + di];
            }
            let s = dot * scale;

            // Causal mask.
            let s = if causal && ki > qi { neg_inf } else { s };

            // Online softmax update.
            let m_new = m.max(s);
            let corr = (m - m_new).exp();
            let p = (s - m_new).exp();
            let l_new = corr * l + p;

            if l_new > 0.0 {
                let rescale_old = corr * l / l_new;
                let rescale_new = p / l_new;

                for dv in 0..d_v {
                    output[qi * d_v + dv] =
                        rescale_old * output[qi * d_v + dv] + rescale_new * v[ki * d_v + dv];
                }
            }

            m = m_new;
            l = l_new;
        }
    }

    output
}

// ---------------------------------------------------------------------------
// Tests -- require a real CUDA GPU
// ---------------------------------------------------------------------------

#[cfg(test)]
#[cfg(feature = "cuda")]
mod tests {
    use super::*;
    use crate::device::GpuDevice;
    use crate::transfer::{cpu_to_gpu, gpu_to_cpu};

    /// Compare two f32 slices with relative + absolute tolerance.
    fn assert_close(got: &[f32], expected: &[f32], rtol: f32, atol: f32, label: &str) {
        assert_eq!(got.len(), expected.len(), "{label}: length mismatch");
        for (i, (&g, &e)) in got.iter().zip(expected.iter()).enumerate() {
            let tol = atol + rtol * e.abs();
            assert!(
                (g - e).abs() <= tol,
                "{label}: element {i}: got {g}, expected {e}, diff {}, tol {tol}",
                (g - e).abs(),
            );
        }
    }

    // -- Correctness vs CPU reference ----------------------------------------

    #[test]
    fn flash_attention_matches_cpu() {
        let dev = GpuDevice::new(0).expect("CUDA device 0");

        let batch_heads = 2;
        let n_q = 16;
        let n_k = 16;
        let d = 32;
        let d_v = 32;
        let scale = 1.0 / (d as f32).sqrt();

        // Deterministic pseudo-random data.
        let q_data: Vec<f32> = (0..batch_heads * n_q * d)
            .map(|i| ((i * 7 + 13) % 100) as f32 / 100.0 - 0.5)
            .collect();
        let k_data: Vec<f32> = (0..batch_heads * n_k * d)
            .map(|i| ((i * 11 + 3) % 100) as f32 / 100.0 - 0.5)
            .collect();
        let v_data: Vec<f32> = (0..batch_heads * n_k * d_v)
            .map(|i| ((i * 13 + 7) % 100) as f32 / 100.0 - 0.5)
            .collect();

        // CPU reference.
        let mut expected = Vec::with_capacity(batch_heads * n_q * d_v);
        for bh in 0..batch_heads {
            let q_slice = &q_data[bh * n_q * d..(bh + 1) * n_q * d];
            let k_slice = &k_data[bh * n_k * d..(bh + 1) * n_k * d];
            let v_slice = &v_data[bh * n_k * d_v..(bh + 1) * n_k * d_v];
            let out =
                cpu_flash_attention_ref(q_slice, k_slice, v_slice, n_q, n_k, d, d_v, scale, false);
            expected.extend_from_slice(&out);
        }

        // GPU.
        let q_gpu = cpu_to_gpu(&q_data, &dev).expect("q to gpu");
        let k_gpu = cpu_to_gpu(&k_data, &dev).expect("k to gpu");
        let v_gpu = cpu_to_gpu(&v_data, &dev).expect("v to gpu");

        let out_gpu = gpu_flash_attention_f32(
            &q_gpu,
            &k_gpu,
            &v_gpu,
            n_q,
            n_k,
            d,
            d_v,
            batch_heads,
            scale,
            false,
            &dev,
        )
        .expect("gpu_flash_attention_f32");

        assert_eq!(out_gpu.len(), batch_heads * n_q * d_v);

        let out_host = gpu_to_cpu(&out_gpu, &dev).expect("gpu_to_cpu");
        assert_close(
            &out_host,
            &expected,
            1e-2,
            1e-5,
            "flash_attention non-causal",
        );
    }

    #[test]
    fn flash_attention_causal() {
        let dev = GpuDevice::new(0).expect("CUDA device 0");

        let batch_heads = 1;
        let n = 32; // N_q == N_k for causal
        let d = 64;
        let d_v = 64;
        let scale = 1.0 / (d as f32).sqrt();

        let q_data: Vec<f32> = (0..batch_heads * n * d)
            .map(|i| ((i * 7 + 13) % 100) as f32 / 100.0 - 0.5)
            .collect();
        let k_data: Vec<f32> = (0..batch_heads * n * d)
            .map(|i| ((i * 11 + 3) % 100) as f32 / 100.0 - 0.5)
            .collect();
        let v_data: Vec<f32> = (0..batch_heads * n * d_v)
            .map(|i| ((i * 13 + 7) % 100) as f32 / 100.0 - 0.5)
            .collect();

        // CPU reference (causal).
        let expected =
            cpu_flash_attention_ref(&q_data, &k_data, &v_data, n, n, d, d_v, scale, true);

        // GPU.
        let q_gpu = cpu_to_gpu(&q_data, &dev).expect("q to gpu");
        let k_gpu = cpu_to_gpu(&k_data, &dev).expect("k to gpu");
        let v_gpu = cpu_to_gpu(&v_data, &dev).expect("v to gpu");

        let out_gpu = gpu_flash_attention_f32(
            &q_gpu,
            &k_gpu,
            &v_gpu,
            n,
            n,
            d,
            d_v,
            batch_heads,
            scale,
            true,
            &dev,
        )
        .expect("gpu_flash_attention_f32 causal");

        let out_host = gpu_to_cpu(&out_gpu, &dev).expect("gpu_to_cpu");
        assert_close(&out_host, &expected, 1e-2, 1e-5, "flash_attention causal");
    }

    #[test]
    fn flash_attention_causal_first_row_is_just_first_value() {
        // With causal masking, query position 0 can only attend to key 0.
        // So output[0, :] should equal V[0, :].
        let dev = GpuDevice::new(0).expect("CUDA device 0");

        let n = 8;
        let d = 16;
        let d_v = 16;
        let scale = 1.0 / (d as f32).sqrt();

        let q_data: Vec<f32> = (0..n * d).map(|i| (i as f32) * 0.01).collect();
        let k_data: Vec<f32> = (0..n * d).map(|i| (i as f32) * 0.02).collect();
        let v_data: Vec<f32> = (0..n * d_v).map(|i| (i as f32) * 0.1).collect();

        let q_gpu = cpu_to_gpu(&q_data, &dev).expect("q to gpu");
        let k_gpu = cpu_to_gpu(&k_data, &dev).expect("k to gpu");
        let v_gpu = cpu_to_gpu(&v_data, &dev).expect("v to gpu");

        let out_gpu =
            gpu_flash_attention_f32(&q_gpu, &k_gpu, &v_gpu, n, n, d, d_v, 1, scale, true, &dev)
                .expect("gpu_flash_attention_f32");

        let out_host = gpu_to_cpu(&out_gpu, &dev).expect("gpu_to_cpu");

        // First row of output should be V[0, :].
        let first_row = &out_host[..d_v];
        let v_first_row = &v_data[..d_v];
        assert_close(
            first_row,
            v_first_row,
            1e-3,
            1e-5,
            "causal first row == V[0,:]",
        );
    }

    #[test]
    fn flash_attention_output_shape() {
        let dev = GpuDevice::new(0).expect("CUDA device 0");

        let batch_heads = 4;
        let n_q = 10;
        let n_k = 20;
        let d = 32;
        let d_v = 48;
        let scale = 1.0 / (d as f32).sqrt();

        let q_data = vec![0.1f32; batch_heads * n_q * d];
        let k_data = vec![0.1f32; batch_heads * n_k * d];
        let v_data = vec![0.1f32; batch_heads * n_k * d_v];

        let q_gpu = cpu_to_gpu(&q_data, &dev).expect("q to gpu");
        let k_gpu = cpu_to_gpu(&k_data, &dev).expect("k to gpu");
        let v_gpu = cpu_to_gpu(&v_data, &dev).expect("v to gpu");

        let out_gpu = gpu_flash_attention_f32(
            &q_gpu,
            &k_gpu,
            &v_gpu,
            n_q,
            n_k,
            d,
            d_v,
            batch_heads,
            scale,
            false,
            &dev,
        )
        .expect("gpu_flash_attention_f32");

        assert_eq!(out_gpu.len(), batch_heads * n_q * d_v);
    }

    #[test]
    fn flash_attention_different_seq_lengths() {
        // N_q != N_k (non-causal).
        let dev = GpuDevice::new(0).expect("CUDA device 0");

        let batch_heads = 1;
        let n_q = 8;
        let n_k = 24;
        let d = 16;
        let d_v = 16;
        let scale = 1.0 / (d as f32).sqrt();

        let q_data: Vec<f32> = (0..n_q * d)
            .map(|i| ((i * 7 + 5) % 50) as f32 / 50.0 - 0.5)
            .collect();
        let k_data: Vec<f32> = (0..n_k * d)
            .map(|i| ((i * 11 + 3) % 50) as f32 / 50.0 - 0.5)
            .collect();
        let v_data: Vec<f32> = (0..n_k * d_v)
            .map(|i| ((i * 13 + 7) % 50) as f32 / 50.0 - 0.5)
            .collect();

        let expected =
            cpu_flash_attention_ref(&q_data, &k_data, &v_data, n_q, n_k, d, d_v, scale, false);

        let q_gpu = cpu_to_gpu(&q_data, &dev).expect("q to gpu");
        let k_gpu = cpu_to_gpu(&k_data, &dev).expect("k to gpu");
        let v_gpu = cpu_to_gpu(&v_data, &dev).expect("v to gpu");

        let out_gpu = gpu_flash_attention_f32(
            &q_gpu,
            &k_gpu,
            &v_gpu,
            n_q,
            n_k,
            d,
            d_v,
            batch_heads,
            scale,
            false,
            &dev,
        )
        .expect("gpu_flash_attention_f32");

        let out_host = gpu_to_cpu(&out_gpu, &dev).expect("gpu_to_cpu");
        assert_close(
            &out_host,
            &expected,
            1e-2,
            1e-5,
            "flash_attention diff seq lens",
        );
    }

    #[test]
    fn flash_attention_uniform_attention() {
        // All Q and K vectors are identical => uniform attention weights.
        // Output should be the mean of all V rows.
        let dev = GpuDevice::new(0).expect("CUDA device 0");

        let n_q = 4;
        let n_k = 4;
        let d = 8;
        let d_v = 8;
        let scale = 1.0 / (d as f32).sqrt();

        // Q = K = all ones => all dot products are equal => uniform softmax.
        let q_data = vec![1.0f32; n_q * d];
        let k_data = vec![1.0f32; n_k * d];
        // V rows: row i has all values = i+1.
        let mut v_data = vec![0.0f32; n_k * d_v];
        for i in 0..n_k {
            for j in 0..d_v {
                v_data[i * d_v + j] = (i + 1) as f32;
            }
        }

        // Expected: each output row = mean of V rows = (1+2+3+4)/4 = 2.5
        let expected = vec![2.5f32; n_q * d_v];

        let q_gpu = cpu_to_gpu(&q_data, &dev).expect("q to gpu");
        let k_gpu = cpu_to_gpu(&k_data, &dev).expect("k to gpu");
        let v_gpu = cpu_to_gpu(&v_data, &dev).expect("v to gpu");

        let out_gpu = gpu_flash_attention_f32(
            &q_gpu, &k_gpu, &v_gpu, n_q, n_k, d, d_v, 1, scale, false, &dev,
        )
        .expect("gpu_flash_attention_f32");

        let out_host = gpu_to_cpu(&out_gpu, &dev).expect("gpu_to_cpu");
        assert_close(&out_host, &expected, 1e-2, 1e-3, "uniform attention");
    }

    // -- Shape validation errors ---------------------------------------------

    #[test]
    fn flash_attention_query_length_mismatch() {
        let dev = GpuDevice::new(0).expect("CUDA device 0");

        let q_data = vec![0.0f32; 10]; // wrong length
        let k_data = vec![0.0f32; 4 * 8]; // B=1
        let v_data = vec![0.0f32; 4 * 8]; // B=1

        let q = cpu_to_gpu(&q_data, &dev).expect("q");
        let k = cpu_to_gpu(&k_data, &dev).expect("k");
        let v = cpu_to_gpu(&v_data, &dev).expect("v");

        let err = gpu_flash_attention_f32(&q, &k, &v, 4, 4, 8, 8, 1, 0.5, false, &dev).unwrap_err();
        match err {
            GpuError::ShapeMismatch {
                op: "flash_attention",
                ..
            } => {}
            other => panic!("unexpected error: {other}"),
        }
    }

    #[test]
    fn flash_attention_d_too_large() {
        let dev = GpuDevice::new(0).expect("CUDA device 0");

        // d = 256 > D_MAX = 128
        let q_data = vec![0.0f32; 2 * 256]; // B=1
        let k_data = vec![0.0f32; 2 * 256]; // B=1
        let v_data = vec![0.0f32; 2 * 64]; // B=1

        let q = cpu_to_gpu(&q_data, &dev).expect("q");
        let k = cpu_to_gpu(&k_data, &dev).expect("k");
        let v = cpu_to_gpu(&v_data, &dev).expect("v");

        let err =
            gpu_flash_attention_f32(&q, &k, &v, 2, 2, 256, 64, 1, 0.5, false, &dev).unwrap_err();
        match err {
            GpuError::ShapeMismatch {
                op: "flash_attention",
                ..
            } => {}
            other => panic!("unexpected error: {other}"),
        }
    }
}