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
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
//! Full inference pipeline: tokenize → embed → layers → lm_head → sample → decode.
//!
//! Prefill/decode contract: every token is forwarded exactly once and
//! enters the KV cache exactly once. Logits for the next token are
//! computed from the hidden state of the LAST forwarded token — the
//! decode loop forwards the freshly sampled token, never re-embeds the
//! prompt tail (v1 duplicated the last prompt token in the cache).
use crate::attention::{self, QwenAttnCfg};
use crate::inference;
use crate::kv_cache::KvCache;
use crate::linear_core::{
GdnCfg, GdnWeights, ShortConvCfg, ShortConvWeights, VmfPhaseCfg, VmfPhaseWeights, gdn_forward,
gdn_pair, short_conv_forward, short_conv_forward_batch, short_conv_pair, vmf_phase_forward,
vmf_phase_pair,
};
use crate::pool::Pool;
use crate::qtensor::QTensor;
use crate::sampler::{self, SamplerConfig, SamplerScratch, SplitMix64};
use crate::tokenizer::Tokenizer;
use cortiq_core::mask::TaskMask;
use cortiq_core::types::NormStyle;
pub static GLOBAL_USE_GPU: std::sync::atomic::AtomicBool =
std::sync::atomic::AtomicBool::new(false);
/// Reusable per-pipeline forward scratch: the four norm outputs the
/// decode paths recompute every layer (single: n1/p1; pair: all four).
/// Plain buffers, resized once — steady-state decode reuses them.
struct ForwardScratch {
n1: Vec<f32>,
n2: Vec<f32>,
p1: Vec<f32>,
p2: Vec<f32>,
}
impl ForwardScratch {
fn new(hidden: usize) -> Self {
Self {
n1: vec![0.0; hidden],
n2: vec![0.0; hidden],
p1: vec![0.0; hidden],
p2: vec![0.0; hidden],
}
}
}
/// Complete inference pipeline state.
pub struct Pipeline {
/// Arc: the server shares one tokenizer handle across request
/// handlers without borrowing a pipeline slot.
pub tokenizer: std::sync::Arc<Tokenizer>,
pub kv_cache: KvCache,
pub sampler_config: SamplerConfig,
pub weights: PipelineWeights,
pub hidden_size: usize,
pub intermediate_size: usize,
pub num_heads: usize,
pub num_kv_heads: usize,
pub head_dim: usize,
/// Total virtual layers (num_layers × num_loops for looped models).
pub num_layers: usize,
/// Physical layers in weights.layers (≤ num_layers for looped models).
pub physical_layers: usize,
/// Looped Transformer: apply final norm after each loop iteration.
pub loop_final_norm: bool,
pub vocab_size: usize,
pub rms_eps: f64,
pub rope_base: f32,
pub norm_style: NormStyle,
/// RoPE dims actually rotated (≤ head_dim; Qwen3.5 uses head_dim/4).
pub rotary_dim: usize,
/// Optional Q-head count override for each attention layer (Laguna).
pub attention_heads_per_layer: Option<Vec<usize>>,
/// Linear-core geometry (present when the model has linear layers).
pub vmf_cfg: Option<VmfPhaseCfg>,
/// GatedDeltaNet geometry (faithful vendor operator).
pub gdn_cfg: Option<GdnCfg>,
/// LFM2 short-convolution geometry (present when the model has
/// `ShortConv` mixer layers).
pub short_conv_cfg: Option<ShortConvCfg>,
/// Multi-token-prediction head (None = absent).
pub mtp: Option<MtpModule>,
/// Speculative decode via MTP (greedy only; `CMF_MTP=0` disables).
pub speculative: bool,
rng: SplitMix64,
sampler_scratch: SamplerScratch,
/// Precomputed RoPE inverse frequencies [head_dim/2]. Arc: the
/// forward path clones a handle to escape the &mut self borrow —
/// cloning the table itself was a per-forward allocation.
pub(crate) inv_freq: std::sync::Arc<Vec<f32>>,
/// Reusable norm buffers for the decode hot path (roadmap §3 P0:
/// steady-state forward should not heap-allocate). Disjoint field
/// from `weights`/`kv_cache`, so split borrows keep working.
ws: ForwardScratch,
/// Persistent worker pool (None = serial; see CMF_THREADS).
pool: Option<std::sync::Arc<Pool>>,
// ── Dynamic per-token skill routing (spec §9, claim 14/16) ──
/// Source model, retained so a skill switch can re-resolve the
/// touched layers' FFN tensors (Mapped = mmap pointers, cheap).
pub(crate) model: Option<std::sync::Arc<cortiq_core::CmfModel>>,
/// Masks present → weights are dequantized f32 (rebuild path).
pub(crate) dyn_force_f32: bool,
/// Per-skill FFN layers actually replaced (derived from tensors, not
/// the meta `layers` field — ru2 replaces down_proj in 0..23 while
/// its meta says [20..23]). None = skill touches non-FFN tensors →
/// ineligible for cheap dynamic switching (honest refusal).
pub(crate) dyn_skill_layers: Vec<Option<Vec<usize>>>,
/// Currently overlaid skill (index into model.header.skills); None =
/// backbone. Set at load time to the statically-overlaid skill so
/// `set_active_skill(None)` correctly reverts it (else a static
/// skill would silently persist — the union-diff assumes dyn_active
/// always mirrors the live overlay). Switched by `set_active_skill`.
pub(crate) dyn_active: Option<usize>,
/// Pipeline was loaded with a soft blend (materialized working
/// tensors, not a single skill index) → dynamic routing refuses:
/// there is no single index to revert the blend from.
pub(crate) dyn_blend_loaded: bool,
/// Layer whose post-residual hidden feeds the router φ (shared by
/// swarm skills). None = φ capture off.
pub(crate) dyn_phi_layer: Option<usize>,
/// EMA of φ at `dyn_phi_layer` over the decode window (on-policy).
dyn_phi_ema: Vec<f32>,
dyn_phi_seen: usize,
/// Hysteresis router driving per-token skill switches during decode
/// (None = static/no dynamic routing). Taken out during generation.
pub dyn_router: Option<crate::swarm::DynRouter>,
/// O(1) Nyström attention setting (CLI/env/header-hint resolved by
/// the caller; None = plain cache attention everywhere).
o1_cfg: Option<crate::nystrom::O1Cfg>,
/// Per-layer o1 flags derived from `o1_cfg` (Full layers only).
o1_flags: Vec<bool>,
/// Emit a structured per-token trace (B4 telemetry channel). Off by
/// default — the runtime is silent unless observation is requested.
trace: bool,
/// Confidence-calibration temperature (B1): reported Born mass is
/// softmax(logits / calib_temp). 1.0 = raw. Set from header.calibration.
calib_temp: f32,
/// Process-unique id keying this pipeline's device KV mirrors.
#[cfg_attr(not(target_os = "macos"), allow(dead_code))]
graph_kv_id: u64,
/// Decode asks the token graph to also run final-norm + lm_head on
/// the device (drops the separate per-op lm_head round trip).
#[cfg_attr(not(target_os = "macos"), allow(dead_code))]
graph_want_logits: bool,
/// Logits the graph produced for the token just forwarded (taken by
/// the decode loop; None = compute on the CPU path).
graph_logits: Option<Vec<f32>>,
/// Token embeddings are multiplied by this at input (Gemma: √hidden).
pub embed_multiplier: f32,
/// Attention score scale (1/√head_dim unless the arch overrides —
/// Gemma's query_pre_attn_scalar).
pub attn_scale: f32,
/// Sliding-window attention: (window, every-Nth-layer-is-global
/// pattern) — Gemma-3.
pub swa: Option<(usize, usize)>,
/// Explicit local/global schedule for architectures that cannot be
/// represented by Gemma's every-Nth-global convention.
pub sliding_layers: Option<Vec<bool>>,
/// RoPE table of the sliding (local) layers, when they use their
/// own base frequency (Gemma-3: 10k local vs 1M global).
pub inv_freq_local: Option<std::sync::Arc<Vec<f32>>>,
pub rotary_dim_local: Option<usize>,
pub rope_scale: f32,
pub rope_scale_local: f32,
/// Gemma-4: global layers run their own geometry — (head_dim,
/// num_kv_heads); sliding layers keep the base fields.
pub global_attn: Option<(usize, usize)>,
/// Gemma-4: the global layers' proportional RoPE table (len
/// global_head_dim/2, zero-padded tail = identity rotation).
pub inv_freq_global: Option<std::sync::Arc<Vec<f32>>>,
/// Scale-less RMS normalization of V heads before caching (Gemma-4).
pub attn_v_norm: bool,
/// Final-logit soft-capping C: logits = C·tanh(logits/C) (Gemma-4).
pub final_softcap: Option<f32>,
/// Compute per-token Born confidence (a full-vocab softmax each
/// token). On by default; `bench --core` turns it off to match
/// llama-bench's core timing.
confidence_on: bool,
}
#[cfg(target_os = "macos")]
impl Drop for Pipeline {
fn drop(&mut self) {
crate::gpu::kv_mirror_drop(self.graph_kv_id);
}
}
/// Model weights. Matrices are `QTensor` (owned f32 for small models
/// and tests — bit-identical to the historical paths — or quantized
/// bytes zero-copy from the CMF mmap for big models). 1-D norms are
/// always small and stay f32.
pub struct PipelineWeights {
/// Embedding table: [vocab_size, hidden_size]
pub embed_tokens: QTensor,
/// Per-layer weights
pub layers: Vec<LayerWeights>,
/// LM head: [vocab_size, hidden_size]
pub lm_head: QTensor,
/// Final norm: [hidden_size]
pub final_norm: Vec<f32>,
}
/// One transformer layer: shared norms + MLP, attention by kind.
pub struct LayerWeights {
pub input_norm: Vec<f32>,
/// The pre-FFN norm (`post_attention_layernorm` classically;
/// `pre_feedforward_layernorm` on Gemma-2/3 sandwich layers).
pub post_norm: Vec<f32>,
/// Gemma-2/3 sandwich: norm applied to the ATTENTION OUTPUT before
/// its residual add (`post_attention_layernorm` there).
pub attn_out_norm: Option<Vec<f32>>,
/// Gemma-4: the whole layer output is multiplied by this scalar.
pub layer_scale: Option<f32>,
/// Gemma-2/3 sandwich: norm applied to the FFN OUTPUT before its
/// residual add (`post_feedforward_layernorm`).
pub ffn_out_norm: Option<Vec<f32>>,
pub ffn: FfnKind,
pub attn: AttnKind,
}
/// FFN gate activation: SiLU (SwiGLU family) or tanh-GELU (Gemma's
/// GeGLU). A property of the model, carried on every FFN triple.
#[derive(Clone, Copy, PartialEq, Eq, Debug, Default)]
pub enum Act {
#[default]
Silu,
GeluTanh,
}
impl Act {
pub fn from_arch(name: &str) -> Self {
if name == "gelu_tanh" {
Self::GeluTanh
} else {
Self::Silu
}
}
#[inline]
pub fn apply(self, x: f32) -> f32 {
match self {
Self::Silu => inference::silu(x),
Self::GeluTanh => inference::gelu_tanh(x),
}
}
}
/// Dense gated triple — the FFN of a dense layer or of one expert.
pub struct DenseFfn {
pub gate_proj: QTensor,
pub up_proj: QTensor,
pub down_proj: QTensor,
/// Gate activation (SiLU default; Gemma: tanh-GELU).
pub act: Act,
}
/// FFN operator of a layer, decided by tensor presence at load time
/// (router `mlp.gate.weight` in the directory = MoE layer).
pub enum FfnKind {
Dense(DenseFfn),
/// Mixture-of-Experts (Qwen2-MoE / Qwen3-MoE): softmax over ALL
/// expert logits → top-k, optional renorm; experts stay quantized
/// in mmap — only the selected ones are touched per token.
Moe(MoeFfn),
}
pub struct MoeFfn {
/// Router `mlp.gate.weight` [num_experts, hidden].
pub router: QTensor,
pub experts: Vec<DenseFfn>,
pub top_k: usize,
pub norm_topk_prob: bool,
/// Router scores per-expert with a sigmoid (LFM2-MoE / DeepSeek-V3
/// `noaux_tc`) instead of a softmax over all experts (Qwen).
pub router_sigmoid: bool,
/// Per-expert selection bias `mlp.expert_bias` [num_experts]
/// (LFM2-MoE): added to the sigmoid scores for the top-k CHOICE only;
/// the gathered weights use the unbiased scores. None = no bias.
pub expert_bias: Option<Vec<f32>>,
/// Top-k weights are multiplied by this after the optional renorm
/// (LFM2-MoE `routed_scaling_factor`; 1.0 = off).
pub routed_scaling: f32,
/// Always-on shared expert. Qwen2-MoE carries an additional sigmoid
/// gate; Laguna adds the shared expert unconditionally (`None`).
pub shared: Option<(DenseFfn, Option<QTensor>)>,
/// Expert-selection counters (truncated Fisher B-field of claim 12:
/// routing frequency during calibration). Filled by every forward,
/// read by the CLI via CMF_MOE_STATS. RefCell: decode is single-threaded.
pub stats: std::cell::RefCell<Vec<u64>>,
}
/// Attention operator of a layer. Extension point: new operators are
/// new variants here + a forward in their own module.
pub enum AttnKind {
/// GQA softmax attention (+ optional Qwen3.5 qk-norm / output gate).
Full {
wq: QTensor,
wk: QTensor,
wv: QTensor,
wo: QTensor,
q_norm: Option<Vec<f32>>,
k_norm: Option<Vec<f32>>,
output_gate: bool,
/// Laguna: a separate softplus projection applied to the attention
/// output before O. The bool means one scalar per head (broadcast
/// across head_dim); false means one scalar per element.
softplus_gate: Option<(QTensor, bool)>,
/// Qwen2-family projection biases (q, k, v).
bias: Option<(Vec<f32>, Vec<f32>, Vec<f32>)>,
},
/// Canonical linear core (VMF phase attention).
Linear(VmfPhaseWeights),
/// Faithful vendor linear operator (Qwen3.5 GatedDeltaNet).
LinearGdn(GdnWeights),
/// LFM2 gated short-convolution mixer (no KV cache; conv ring state
/// lives in the layer's `linear_state`).
ShortConv(ShortConvWeights),
}
/// Multi-token-prediction head (DeepSeek/Qwen style, spec §2.1):
/// `x = eh_proj·[enorm(embed(next)); hnorm(hidden)]` → one transformer
/// block over its own KV → shared lm_head. Drafts the token after next;
/// the main model verifies, so output is exact — MTP only buys speed.
pub struct MtpModule {
pub enorm: Vec<f32>,
pub hnorm: Vec<f32>,
/// [hidden, 2·hidden]
pub eh_proj: QTensor,
pub layer: LayerWeights,
pub final_norm: Vec<f32>,
pub kv: crate::kv_cache::LayerKvCache,
}
/// Result of a generation call.
pub struct GenerateResult {
pub text: String,
pub token_ids: Vec<u32>,
pub prompt_tokens: usize,
pub tokens_generated: usize,
pub finish_reason: String,
/// Speculative-decode stats (0/0 when MTP is absent or inactive).
pub mtp_drafted: usize,
pub mtp_accepted: usize,
/// Per-generated-token confidence = softmax probability of the token
/// that was actually emitted (Born mass on the chosen state). High =
/// the model was sure; low = it was guessing. Same length as the
/// generated slice of `token_ids`.
pub token_confidence: Vec<f32>,
/// Structured per-token telemetry (B4 channel). Empty unless
/// `set_trace(true)`; otherwise same length as the generated slice.
pub traces: Vec<TokenTrace>,
}
/// One row of the structured telemetry trace (B4): the model's internal
/// routing state at the moment a token was emitted. Every field is a
/// quantity the runtime already computes — nothing is inferred or
/// estimated (anti-principle: only measured bytes).
#[derive(Clone, Debug)]
pub struct TokenTrace {
/// 0-based index within the generated slice.
pub t: usize,
/// The emitted token id.
pub token_id: u32,
/// Born mass on the emitted token (softmax prob) — how sure the model was.
pub confidence: f32,
/// Skill in force while this token was generated (None = backbone).
pub active_skill: Option<String>,
/// Recon error E = ‖r−BBᵀr‖²/‖φ‖² at the last routing eval — coherence
/// with the active skill's subspace (low = coherent). None = no router
/// or not yet evaluated.
pub recon: Option<f32>,
/// The router changed the active skill right after this token (a
/// domain boundary crossed under the hysteresis barrier).
pub switched: bool,
}
/// Calibrated softmax probability of `id` under `logits` (the Born mass on
/// the emitted token) — the confidence signal, cheap from logits already
/// computed for sampling. `temp` is the calibration temperature (B1):
/// softmax(logits / temp); 1.0 = raw.
fn top1_prob_t(logits: &[f32], id: u32, temp: f32) -> f32 {
let t = if temp > 1e-3 { temp } else { 1.0 };
let max = logits.iter().fold(f32::NEG_INFINITY, |m, &v| m.max(v));
let sum: f32 = logits.iter().map(|&v| ((v - max) / t).exp()).sum();
if sum > 0.0 {
(((logits[id as usize] - max) / t).exp()) / sum
} else {
0.0
}
}
/// prefill-GEMM enabled? (CMF_PREFILL=seq — emergency fallback to the
/// sequential path.)
fn prefill_batched() -> bool {
std::env::var("CMF_PREFILL")
.map(|v| v != "seq")
.unwrap_or(true)
}
/// Prefill chunk (positions per batched pass). On macOS the AMX GEMM
/// path wants tall panels — M=48 starves the matrix units (ggml uses
/// ubatch 512); elsewhere the historical 48 stays. CMF_PREFILL_CHUNK
/// overrides.
fn prefill_chunk() -> usize {
if let Some(n) = std::env::var("CMF_PREFILL_CHUNK")
.ok()
.and_then(|v| v.parse::<usize>().ok())
{
return n.max(1);
}
if cfg!(target_os = "macos") {
512
} else if cfg!(target_arch = "aarch64") {
// Mobile: big enough to feed the batched attend (gate b ≥ 32)
// and the blocked SDOT GEMM without the memory of 512.
256
} else {
48
}
}
/// Callback for streaming tokens. Return `false` to cancel.
pub type TokenCallback = Box<dyn FnMut(&str) -> bool + Send>;
impl Pipeline {
/// Map a virtual layer index to its physical weight index.
/// Looped Transformer (Nanbeige 4.2): 22 physical layers × 2 loops = 44 virtual;
/// virtual layer 23 maps back to physical layer 1 (23 % 22 = 1).
#[inline]
pub fn phys_layer(&self, virtual_idx: usize) -> usize {
virtual_idx % self.physical_layers
}
/// True when `virtual_idx` is the last layer of a loop iteration
/// (used for loop_final_norm insertion).
#[inline]
pub fn is_loop_end(&self, virtual_idx: usize) -> bool {
self.loop_final_norm && (virtual_idx + 1) % self.physical_layers == 0
}
/// Build a pipeline from parts (used by the loader and tests).
#[allow(clippy::too_many_arguments)]
/// Whole-block q1 token graph on the GPU (macOS/Metal): the run of
/// consecutive q1 layers — GDN *and* full attention — starting at
/// `start` executes as few command buffers as the CPU truly needs.
/// Hidden stays device-resident across every layer; the only syncs
/// are before each CPU attend (it needs q/k/v and owns the KV
/// cache) and the final hidden readback. Recurrent states
/// round-trip through shared memory (the CPU stays their owner, so
/// every other path remains coherent). Returns the first layer
/// index NOT covered (== `start` → refused, caller falls through
/// to the per-layer CPU path).
/// Should prefill run position-by-position through the GPU token
/// graph instead of the batched CPU chunk-GEMM? True for q1 GDN
/// hybrids on native Metal: their chunk prefill is walled by the
/// sequential scalar recurrence, so the graph's decode rate wins.
/// Looped Transformers also prefer the graph: the CPU batched prefill
/// pays the loop_final_norm sync per chunk boundary, and the graph's
/// device-attend rate (≈18 tok/s) beats the CPU's ≈9 tok/s for
/// typical chat-length prompts.
#[cfg(target_os = "macos")]
fn graph_prefill_preferred(&self) -> bool {
if !crate::gpu::enabled_here()
|| !crate::gpu::q1_force()
|| std::env::var("CMF_GPU_BLOCK")
.map(|v| v == "0")
.unwrap_or(false)
{
return false;
}
if self.loop_final_norm {
return true;
}
self.weights
.layers
.iter()
.any(|lw| matches!(&lw.attn, AttnKind::LinearGdn(w) if w.in_proj_qkv.is_q1()))
}
#[cfg(not(target_os = "macos"))]
fn graph_prefill_preferred(&self) -> bool {
// Discrete-GPU wgpu whole-token graph: GDN layers carry recurrent state
// (conv ring + delta-rule S) resident on the GPU. A batched CPU prefill
// builds that state on the CPU only, leaving the GPU buffers zeroed at
// decode → garbage. Route GDN-hybrid prefill through the graph one
// position at a time so the resident state is seeded exactly as decode
// will read it. Pure-attention models keep the batched CPU prefill (its
// KV mirror re-syncs from the CPU cache, so no seeding gap).
let graph_on = std::env::var("CMF_GPU_WGPU_GRAPH")
.map(|v| v != "0")
.unwrap_or_else(|_| {
// Default ON for wgpu on DISCRETE adapters (4090:
// decode 76 -> 137 tok/s); integrated/mobile GPUs keep
// the per-op probe path — see gpu::wgpu_graph_default.
crate::gpu::wgpu_graph_default()
});
if !graph_on || !crate::gpu::enabled_here() {
return false;
}
self.weights
.layers
.iter()
.any(|lw| matches!(&lw.attn, AttnKind::LinearGdn(_)))
}
#[cfg(target_os = "macos")]
fn q1_graph_gpu(
&mut self,
start: usize,
upto: Option<usize>,
position: usize,
h: &mut [f32],
) -> usize {
use crate::gpu::{AttnGpuLayer, GdnGpuCfg, GdnGpuLayer, GraphDims, TokenGraph};
if !crate::gpu::enabled_here()
|| !crate::gpu::q1_force()
|| std::env::var("CMF_GPU_BLOCK")
.map(|v| v == "0")
.unwrap_or(false)
{
return start;
}
// The graph encodes SiLU FFN, 1/√hd attention scores and
// full-context attend with no branch norms — Gemma-style archs
// (sliding window, scale override, sandwich norms, GeLU) fall
// back to the CPU path.
if self.swa.is_some()
|| self.global_attn.is_some()
|| self.attention_heads_per_layer.is_some()
|| self.attn_v_norm
|| (self.attn_scale - 1.0 / (self.head_dim as f32).sqrt()).abs() > 1e-9
|| self.weights.layers.iter().any(|lw| {
lw.attn_out_norm.is_some()
|| lw.ffn_out_norm.is_some()
|| lw.layer_scale.is_some()
|| matches!(&lw.ffn, FfnKind::Dense(d) if d.act != Act::Silu)
})
{
return start;
}
// Looped Transformer: the graph covers ALL loop iterations;
// encode_loop_norm is inserted on-device at each boundary.
let limit = upto
.map(|u| u + 1)
.unwrap_or(self.num_layers)
.min(self.num_layers);
enum Item<'a> {
Gdn {
run: Vec<GdnGpuLayer<'a>>,
first: usize,
},
Attn {
l: AttnGpuLayer<'a>,
li: usize,
q_norm: Option<&'a [f32]>,
k_norm: Option<&'a [f32]>,
output_gate: bool,
bias: Option<(&'a [f32], &'a [f32], &'a [f32])>,
/// Attend on the device too (no sync): F32 KV, no
/// o1/bias, dims inside the kernels' contract.
full_gpu: bool,
},
}
// Device-attend eligibility shared by every Full layer.
let attend_mode = std::env::var("CMF_GPU_ATTEND").unwrap_or_else(|_| "auto".into());
let dev_attend = attend_mode != "0"
&& attend_mode != "off"
// hd=256 is correct on the widened kernel but measured slower
// than the CPU sandwich on M4 at decode depths. Keep it as an
// explicit research lever without regressing Qwopus by default.
&& (self.head_dim <= 128 || attend_mode == "force" || attend_mode == "256")
&& self.head_dim % 4 == 0
&& self.head_dim <= 256
&& self.rotary_dim >= 2
&& self.rotary_dim <= self.head_dim
&& (self.rotary_dim / 2) % 32 == 0
&& self.num_kv_heads > 0
&& self.num_heads % self.num_kv_heads == 0;
let mut plan: Vec<Item> = Vec::new();
let mut model_ref: Option<std::sync::Arc<cortiq_core::CmfModel>> = None;
let mut scan = start;
while scan < limit {
let lw = &self.weights.layers[self.phys_layer(scan)];
let FfnKind::Dense(d) = &lw.ffn else { break };
let (Some(g), Some(u), Some(dn)) = (
d.gate_proj.q1_parts(),
d.up_proj.q1_parts(),
d.down_proj.q1_parts(),
) else {
break;
};
match &lw.attn {
AttnKind::LinearGdn(w) if self.gdn_cfg.is_some() => {
let parts = (
w.in_proj_qkv.q1_parts(),
w.in_proj_z.q1_parts(),
w.in_proj_a.f32_parts(),
w.in_proj_b.f32_parts(),
w.out_proj.q1_parts(),
);
let (Some(qkv), Some(z), Some(a), Some(b), Some(out)) = parts else {
break;
};
if let QTensor::Mapped { model, .. } = &w.in_proj_qkv {
model_ref.get_or_insert_with(|| model.clone());
}
let gl = GdnGpuLayer {
attn_norm: &lw.input_norm,
post_norm: &lw.post_norm,
qkv,
z,
a,
b,
out,
gate: g,
up: u,
down: dn,
conv1d: &w.conv1d,
a_log: &w.a_log,
dt_bias: &w.dt_bias,
gnorm: &w.norm,
};
match plan.last_mut() {
Some(Item::Gdn { run, .. }) => run.push(gl),
_ => plan.push(Item::Gdn {
run: vec![gl],
first: scan,
}),
}
}
AttnKind::Full {
wq,
wk,
wv,
wo,
q_norm,
k_norm,
output_gate,
softplus_gate: None,
bias,
} if !self.kv_cache.layers[scan].o1_sealed() => {
let parts = (wq.q1_parts(), wk.q1_parts(), wv.q1_parts(), wo.q1_parts());
let (Some(pq), Some(pk), Some(pv), Some(po)) = parts else {
break;
};
if let QTensor::Mapped { model, .. } = wq {
model_ref.get_or_insert_with(|| model.clone());
}
let cache = &self.kv_cache.layers[scan];
let full_gpu = dev_attend
&& cache.mode == crate::kv_cache::KvMode::F32
&& cache.o1.is_none()
&& bias.is_none()
&& pq.1 == self.num_heads * self.head_dim * (1 + *output_gate as usize)
&& pk.1 == self.num_kv_heads * self.head_dim
&& pv.1 == self.num_kv_heads * self.head_dim
&& po.2 == self.num_heads * self.head_dim;
plan.push(Item::Attn {
l: AttnGpuLayer {
attn_norm: &lw.input_norm,
post_norm: &lw.post_norm,
wq: pq,
wk: pk,
wv: pv,
wo: po,
gate: g,
up: u,
down: dn,
},
li: scan,
q_norm: q_norm.as_deref(),
k_norm: k_norm.as_deref(),
output_gate: *output_gate,
bias: bias
.as_ref()
.map(|(a, b, c)| (a.as_slice(), b.as_slice(), c.as_slice())),
full_gpu,
});
}
_ => break,
}
scan += 1;
}
let Some(model) = model_ref else { return start };
if plan.is_empty() {
return start;
}
let dims = GraphDims {
hidden: self.hidden_size,
eps: self.rms_eps as f32,
gemma: self.norm_style == cortiq_core::NormStyle::Gemma,
};
let Some(mut graph) = TokenGraph::new(&model, dims, h) else {
return start;
};
let gcfg = self.gdn_cfg.map(|cfg| GdnGpuCfg {
nv: cfg.num_v_heads,
nk: cfg.num_k_heads,
dk: cfg.key_head_dim,
dv: cfg.value_head_dim,
kk: cfg.conv_kernel,
hidden: self.hidden_size,
inter: self.intermediate_size,
c_dim: cfg.conv_dim(),
eps: cfg.rms_eps as f32,
gemma: self.norm_style == cortiq_core::NormStyle::Gemma,
});
// Validate the whole plan BEFORE encoding anything: after the
// first sync a refused layer would leave the token
// half-executed, so truncate to the provably encodable prefix.
let mut valid = 0usize;
let mut end = start;
for item in &plan {
let ok = match item {
Item::Gdn { run, .. } => gcfg
.as_ref()
.map(|gc| run.iter().all(|l| graph.gdn_ok(l, gc)))
.unwrap_or(false),
Item::Attn { l, .. } => graph.attn_ok(l),
};
if !ok {
break;
}
valid += 1;
end += match item {
Item::Gdn { run, .. } => run.len(),
Item::Attn { .. } => 1,
};
}
plan.truncate(valid);
if plan.is_empty() {
return start;
}
let inv_freq = self.inv_freq.clone();
let pool = self.pool.clone();
let (nh, nkv, hd, hs, rd, eps) = (
self.num_heads,
self.num_kv_heads,
self.head_dim,
self.hidden_size,
self.rotary_dim,
self.rms_eps,
);
let norm_style = self.norm_style;
let gemma = norm_style == cortiq_core::NormStyle::Gemma;
let want = self.gdn_cfg.map(|c| c.state_len()).unwrap_or(0);
let kv_id = self.graph_kv_id;
// GDN runs whose states await readback after the next sync
// (device-attended layers add no sync, so several may stack).
let mut pending: Vec<(usize, usize)> = Vec::new();
// Device-attended layers: their K/V/imp are pulled from the
// mirror after the final sync.
let mut dev_attn: Vec<usize> = Vec::new();
for item in &plan {
// Looped Transformer: insert on-device norm at loop boundaries.
if self.loop_final_norm {
let item_start = match item {
Item::Gdn { first, .. } => *first,
Item::Attn { li, .. } => *li,
};
if item_start > start && self.is_loop_end(item_start - 1) {
graph.encode_loop_norm(&self.weights.final_norm);
}
}
match item {
Item::Gdn { run, first } => {
for l in &mut self.kv_cache.layers[*first..*first + run.len()] {
if l.linear_state.len() != want {
l.linear_state = vec![0f32; want];
}
}
let ro: Vec<&[f32]> = self.kv_cache.layers[*first..*first + run.len()]
.iter()
.map(|l| l.linear_state.as_slice())
.collect();
if !graph.encode_gdn_run(run, &ro, gcfg.as_ref().unwrap()) {
// Unreachable: the plan was validated above.
tracing::error!("q1 graph: GDN run refused after validation");
return start;
}
// Early commit: the GPU starts the run while the
// CPU encodes the next layer (nothing to wait on).
graph.commit();
pending.push((*first, run.len()));
}
Item::Attn {
l,
li,
q_norm,
k_norm,
output_gate,
bias,
full_gpu,
} => {
// ── Fully device-resident attention: no sync at all.
if *full_gpu {
let cache = &self.kv_cache.layers[*li];
let cpu_k: Vec<&[f32]> = (0..nkv).map(|g| cache.head_keys(g)).collect();
let cpu_v: Vec<&[f32]> = (0..nkv).map(|g| cache.head_values(g)).collect();
let cpu_stored = cpu_k[0].len() / hd;
let p = crate::gpu::AttnDeviceParams {
kv_id,
layer: *li,
nh,
nkv,
hd,
rd,
position,
eps: eps as f32,
gemma,
output_gate: *output_gate,
q_norm: *q_norm,
k_norm: *k_norm,
inv_freq: &inv_freq,
cpu_k,
cpu_v,
cpu_stored,
};
if graph.attn_device_ok(l, &p) && graph.encode_attn_device(l, &p) {
graph.commit();
dev_attn.push(*li);
continue;
}
// Mirror refused (nothing encoded) → sandwich.
}
graph.encode_attn_prefix(l);
graph.sync();
if !pending.is_empty() {
let idxs: Vec<usize> =
pending.drain(..).flat_map(|(f, n)| f..f + n).collect();
let mut outs: Vec<&mut [f32]> = self
.kv_cache
.layers
.iter_mut()
.enumerate()
.filter(|(i, _)| idxs.binary_search(i).is_ok())
.map(|(_, s)| s.linear_state.as_mut_slice())
.collect();
graph.read_states(&mut outs);
}
let mut q_raw = attention::take_buf(l.wq.1);
let mut k = attention::take_buf(l.wk.1);
let mut v = attention::take_buf(l.wv.1);
graph.read_qkv(&mut q_raw, &mut k, &mut v);
let cfg = QwenAttnCfg {
num_heads: nh,
num_kv_heads: nkv,
head_dim: hd,
hidden_size: hs,
position,
inv_freq: &inv_freq,
rotary_dim: rd,
scale: self.attn_scale,
window: None,
v_norm: false,
q_norm: *q_norm,
k_norm: *k_norm,
output_gate: *output_gate,
softplus_gate: None,
rope_scale: 1.0,
bias: *bias,
rms_eps: eps,
norm_style,
pool: pool.as_deref(),
};
let mut ao = attention::qwen_attention_core(
q_raw,
k,
v,
&mut self.kv_cache.layers[*li],
&cfg,
);
graph.encode_attn_suffix(l, &ao);
// Early commit: the GPU starts O+FFN while the CPU
// encodes the following GDN run / attention prefix.
graph.commit();
attention::recycle_buf(&mut ao);
}
}
}
// Ride the final norm + lm_head in the same command buffer when
// this run reaches the model's end and the caller wants logits:
// the separate per-op lm_head submit (a full round trip) folds
// into the sync that already happens here.
let mut lm_rows = None;
if self.graph_want_logits
&& upto.is_none()
&& end == self.num_layers
&& std::env::var("CMF_GPU_LMHEAD")
.map(|v| v != "0")
.unwrap_or(true)
{
if let Some(lm) = self.weights.lm_head.q1_parts() {
if graph.lm_head_ok(lm) {
graph.encode_lm_head(&self.weights.final_norm, lm);
lm_rows = Some(lm.1);
}
}
}
graph.sync();
if !pending.is_empty() {
let idxs: Vec<usize> = pending.drain(..).flat_map(|(f, n)| f..f + n).collect();
let mut outs: Vec<&mut [f32]> = self
.kv_cache
.layers
.iter_mut()
.enumerate()
.filter(|(i, _)| idxs.binary_search(i).is_ok())
.map(|(_, s)| s.linear_state.as_mut_slice())
.collect();
graph.read_states(&mut outs);
}
if let Some(rows) = lm_rows {
let mut lg = attention::take_buf(rows.min(self.vocab_size));
graph.read_logits(&mut lg);
lg.resize(self.vocab_size, 0.0);
if let Some(c) = self.final_softcap {
for l in lg.iter_mut() {
*l = c * (*l / c).tanh();
}
}
self.graph_logits = Some(lg);
}
graph.finish(h);
// Device-attended layers: replay the CPU bookkeeping — append
// the mirror's new K/V row (rope'd on the GPU) into the owner
// cache, then bank this token's Born-importance mass.
for li in dev_attn {
let mut krow = attention::take_buf(nkv * hd);
let mut vrow = attention::take_buf(nkv * hd);
if crate::gpu::kv_mirror_read_last(kv_id, li, nkv, hd, &mut krow, &mut vrow) {
let cache = &mut self.kv_cache.layers[li];
cache.append(&krow, &vrow, &[]);
let n = cache.seq_len;
let mut imp = attention::take_buf(n);
crate::gpu::kv_mirror_take_imp(kv_id, li, &mut imp);
cache.accumulate_imp(&imp);
attention::recycle_buf(&mut imp);
}
attention::recycle_buf(&mut krow);
attention::recycle_buf(&mut vrow);
}
end
}
pub fn new(
tokenizer: Tokenizer,
weights: PipelineWeights,
hidden_size: usize,
intermediate_size: usize,
num_heads: usize,
num_kv_heads: usize,
head_dim: usize,
num_layers: usize,
physical_layers: usize,
loop_final_norm: bool,
vocab_size: usize,
rms_eps: f64,
rope_base: f32,
norm_style: NormStyle,
max_seq_len: usize,
sampler_config: SamplerConfig,
) -> Self {
let rng = match sampler_config.seed {
Some(s) => SplitMix64::new(s),
None => SplitMix64::from_entropy(),
};
let inv_freq = std::sync::Arc::new(attention::rope_inv_freq(head_dim, rope_base));
let pool = Pool::from_env();
if let Some(p) = &pool {
tracing::info!("worker pool: {} threads", p.n_workers());
}
Self {
tokenizer: std::sync::Arc::new(tokenizer),
kv_cache: KvCache::new(num_layers, num_kv_heads, head_dim, max_seq_len),
sampler_config,
weights,
hidden_size,
intermediate_size,
num_heads,
num_kv_heads,
head_dim,
num_layers,
physical_layers,
loop_final_norm,
vocab_size,
rms_eps,
rope_base,
norm_style,
rotary_dim: head_dim,
attention_heads_per_layer: None,
vmf_cfg: None,
gdn_cfg: None,
short_conv_cfg: None,
mtp: None,
speculative: std::env::var("CMF_MTP").map(|v| v != "0").unwrap_or(true),
rng,
sampler_scratch: SamplerScratch::default(),
inv_freq,
ws: ForwardScratch::new(hidden_size),
pool,
model: None,
dyn_force_f32: false,
dyn_skill_layers: Vec::new(),
dyn_active: None,
dyn_blend_loaded: false,
dyn_phi_layer: None,
dyn_phi_ema: Vec::new(),
dyn_phi_seen: 0,
dyn_router: None,
o1_cfg: None,
o1_flags: Vec::new(),
trace: false,
calib_temp: 1.0,
confidence_on: true,
embed_multiplier: 1.0,
attn_scale: 1.0 / (head_dim as f32).sqrt(),
swa: None,
sliding_layers: None,
inv_freq_local: None,
rotary_dim_local: None,
rope_scale: 1.0,
rope_scale_local: 1.0,
global_attn: None,
inv_freq_global: None,
attn_v_norm: false,
final_softcap: None,
graph_want_logits: false,
graph_logits: None,
graph_kv_id: {
static NEXT: std::sync::atomic::AtomicU64 = std::sync::atomic::AtomicU64::new(1);
NEXT.fetch_add(1, std::sync::atomic::Ordering::Relaxed)
},
}
}
/// Enable/disable per-layer O(1) Nyström attention. Only Full
/// layers are eligible (a linear layer keeps its own operator).
/// Applies to generation (`generate*`/`forward_ids`): the prompt
/// pass stays exact, the seal happens once after prefill, decode
/// runs on the O(1) state. Teacher-forced scoring (`ppl_ids`)
/// intentionally stays exact.
pub fn set_o1(&mut self, cfg: Option<crate::nystrom::O1Cfg>) {
self.o1_flags = match &cfg {
Some(c) => {
let mut flags = c.layer_flags(self.num_layers);
for (li, f) in flags.iter_mut().enumerate() {
if *f
&& !matches!(
self.weights.layers[self.phys_layer(li)].attn,
AttnKind::Full { .. }
)
{
*f = false;
}
}
flags
}
None => Vec::new(),
};
if let Some(c) = &cfg {
let n = self.o1_flags.iter().filter(|&&f| f).count();
tracing::info!(
"o1 nystrom attention: {n}/{} layer(s), m={} w={} sink={} rect={:?}",
self.num_layers,
c.m,
c.w,
c.sink,
c.rect
);
}
self.o1_cfg = cfg;
}
/// True when at least one layer runs the O(1) kernel.
pub fn o1_active(&self) -> bool {
self.o1_cfg.is_some() && self.o1_flags.iter().any(|&f| f)
}
/// Arm query collection on the o1 layers (fresh prompt pass).
fn o1_begin(&mut self) {
if let Some(c) = &self.o1_cfg {
let (m, w, sink, rect) = (c.m, c.w, c.sink, c.rect);
for (li, &f) in self.o1_flags.iter().enumerate() {
if f {
self.kv_cache.layers[li].o1_begin(m, w, sink, rect);
}
}
}
}
/// Freeze landmarks + skeleton state after the prompt pass and drop
/// the o1 layers' full KV; decode then runs `step()` per token.
fn o1_seal(&mut self) {
if self.o1_cfg.is_none() {
return;
}
for li in 0..self.num_layers {
if self.o1_flags.get(li).copied().unwrap_or(false) {
self.kv_cache.layers[li].o1_seal(self.num_heads);
}
}
}
/// Enable/disable the structured per-token telemetry trace (B4).
pub fn set_trace(&mut self, on: bool) {
self.trace = on;
}
/// Replace all request-scoped sampler options and reset the random stream.
/// This is required for deterministic `seed` semantics in pooled servers.
pub fn set_sampler_config(&mut self, config: SamplerConfig) {
self.rng = match config.seed {
Some(seed) => SplitMix64::new(seed),
None => SplitMix64::from_entropy(),
};
self.sampler_config = config;
}
/// Toggle the per-token Born-confidence reduction (a full-vocab
/// softmax each token). `bench --core` turns it off so the timed
/// loop matches llama-bench's core contract; the result's
/// `confidence` vec is empty while off.
pub fn set_confidence(&mut self, on: bool) {
self.confidence_on = on;
}
/// Set the confidence-calibration temperature (B1). Values ≤0 are
/// clamped to raw (1.0).
pub fn set_calib_temp(&mut self, t: f32) {
self.calib_temp = if t > 1e-3 { t } else { 1.0 };
}
/// The active calibration temperature (1.0 = raw Born mass).
pub fn calib_temp(&self) -> f32 {
self.calib_temp
}
/// Partial rotary (Qwen3.5): rotate only the first `rotary_dim` dims;
/// the frequency table is rebuilt over the rotary dims.
pub fn set_rotary(&mut self, rotary_dim: usize, base: f32) {
self.rotary_dim = rotary_dim.min(self.head_dim);
self.inv_freq = std::sync::Arc::new(attention::rope_inv_freq(self.rotary_dim, base));
}
fn attn_cfg(&self, position: usize) -> QwenAttnCfg<'_> {
QwenAttnCfg {
num_heads: self.num_heads,
num_kv_heads: self.num_kv_heads,
head_dim: self.head_dim,
hidden_size: self.hidden_size,
position,
inv_freq: &self.inv_freq,
rotary_dim: self.rotary_dim,
scale: self.attn_scale,
window: None,
v_norm: false,
q_norm: None,
k_norm: None,
output_gate: false,
softplus_gate: None,
rope_scale: self.rope_scale,
bias: None,
rms_eps: self.rms_eps,
norm_style: self.norm_style,
pool: self.pool.as_deref(),
}
}
/// Generate text from a plain-text prompt. Streams tokens via `on_token`.
pub fn generate(
&mut self,
prompt: &str,
max_tokens: usize,
task_mask: Option<&TaskMask>,
on_token: Option<TokenCallback>,
) -> Result<GenerateResult, String> {
let input_ids = self.tokenizer.with_bos(self.tokenizer.encode(prompt));
self.generate_from_ids(&input_ids, max_tokens, task_mask, on_token)
}
/// Generate from prepared token ids (e.g. a chat template).
///
/// With an MTP head, greedy generation without a task mask takes the
/// speculative path: the MTP module drafts the token after next and
/// the main model verifies both in one fused two-position forward
/// (weights streamed once). The output is EXACTLY the vanilla greedy
/// sequence — a rejected draft is rolled back — MTP only buys speed.
pub fn generate_from_ids(
&mut self,
input_ids: &[u32],
max_tokens: usize,
task_mask: Option<&TaskMask>,
mut on_token: Option<TokenCallback>,
) -> Result<GenerateResult, String> {
if std::env::var("CMF_TRACE_H").is_ok() {
eprintln!("input_ids: {input_ids:?}");
}
if input_ids.is_empty() {
return Err("empty prompt: nothing to generate from".to_string());
}
// Fresh sequence — the cache holds absolute positions.
self.kv_cache.clear();
crate::gpu::graph_kv_reset(self.graph_kv_id);
crate::gpu::graph_race_begin_generation();
self.o1_begin();
// Speculative decode is off under o1: a rejected draft can't be
// rolled back out of the far accumulators / ring window (the
// Nyström insertion is irreversible by design).
// The wgpu token graph owns a device K/V mirror that speculative
// rollback would desync — the two are mutually exclusive.
let graph_on = std::env::var("CMF_GPU_WGPU_GRAPH")
.map(|v| v != "0")
.unwrap_or_else(|_| {
// Default ON for wgpu on DISCRETE adapters (4090:
// decode 76 -> 137 tok/s); integrated/mobile GPUs keep
// the per-op probe path — see gpu::wgpu_graph_default.
crate::gpu::wgpu_graph_default()
});
let spec_active = self.speculative
&& self.mtp.is_some()
&& task_mask.is_none()
&& !self.o1_active()
&& !graph_on
&& self.sampler_config.temperature < 1e-6;
// The MTP module is detached during generation so its mutable
// state does not fight the borrow on `self`.
let mut mtp = if spec_active { self.mtp.take() } else { None };
if let Some(m) = &mut mtp {
m.kv.clear();
}
// Dynamic router detached during decode (same borrow trick as MTP).
// Speculative decode and dynamic routing are mutually exclusive
// for now — the fused-pair path doesn't carry per-token φ.
let mut router = if mtp.is_none() {
self.dyn_router.take()
} else {
None
};
if let Some(r) = &mut router {
r.reset(); // active=backbone, matching a fresh overlay
self.dyn_phi_seen = 0; // fresh φ EMA per generation
let _ = self.set_active_skill(None);
}
let mut all_ids = input_ids.to_vec();
let mut generated = 0usize;
let mut finish_reason = "max_tokens".to_string();
let mut drafted = 0usize;
let mut accepted = 0usize;
let mut confidence: Vec<f32> = Vec::new();
let trace_on = self.trace;
let calib_temp = self.calib_temp;
let mut traces: Vec<TokenTrace> = Vec::new();
// ── Prefill: forward each prompt token once, KEEP the last hidden.
// Dense prefill runs in fused pairs (weights streamed once per
// two positions — bit-identical to sequential, proven by the
// pair tests). With MTP: warm the draft head on
// (hidden_p, token_{p+1}) pairs.
let mut hidden = vec![0.0f32; self.hidden_size];
let mut pos = 0usize;
// lm_head-in-graph is only sound when the very next logits
// consumer is this loop's own (MTP and skill routing interleave
// other forwards / can swap lm_head between forward and sample).
let fuse_lm = mtp.is_none() && router.is_none();
self.graph_logits = None;
self.graph_want_logits = false;
// With dynamic routing, prefill sequentially so the φ hook fires
// over the PROMPT — the router enters decode with a warm φ (the
// fused-pair path skips the per-layer φ capture). o1 layers
// collect their query trace in both the single and pair paths.
let dyn_prefill = router.is_some();
// q1 hybrids on Metal: the per-position GPU token graph beats
// the CPU chunk-GEMM (whose wall is the sequential scalar GDN
// recurrence), so prefill goes position-by-position through the
// same graph as decode. Pure-attention models keep the batched
// path — there the chunk-GEMM amortization wins.
let graph_prefill = self.graph_prefill_preferred();
if task_mask.is_none()
&& !dyn_prefill
&& !graph_prefill
&& prefill_batched()
&& input_ids.len() > 2
{
// Production prefill = the same chunked prefill-GEMM that
// bench/PPL measure (roadmap §3 P0: generation used to warm
// the prompt with the slower pair path — the published
// prefill number didn't match real TTFT). MTP warm-up reads
// each position's hidden straight from the chunk result.
let chunk = prefill_chunk();
let hs = self.hidden_size;
while pos < input_ids.len() {
let end = (pos + chunk).min(input_ids.len());
let hb = self.prefill_batch(&input_ids[pos..end], pos);
if let Some(m) = &mut mtp {
for p in pos..end {
if p + 1 < input_ids.len() {
let _ = self.mtp_step(
m,
&hb[(p - pos) * hs..(p - pos + 1) * hs],
input_ids[p + 1],
p,
);
}
}
}
hidden.copy_from_slice(&hb[(end - pos - 1) * hs..]);
pos = end;
}
}
if task_mask.is_none() && !dyn_prefill && !graph_prefill {
while pos + 1 < input_ids.len() {
let e1 = self.embed_single(input_ids[pos]);
let e2 = self.embed_single(input_ids[pos + 1]);
let (h1, h2) = self.forward_pair(&e1, &e2, pos);
// Both prefill tokens are real → commit lane-2 states.
self.commit_linear_scratch();
if let Some(m) = &mut mtp {
let _ = self.mtp_step(m, &h1, input_ids[pos + 1], pos);
if pos + 2 < input_ids.len() {
let _ = self.mtp_step(m, &h2, input_ids[pos + 2], pos + 1);
}
}
hidden = h2;
pos += 2;
}
}
// Batched GPU prefill for the wgpu decode graph (GDN hybrids): K prompt
// positions per submit — projections/FFN as GEMMs (weight once per K),
// attention/GDN looped inside — instead of one whole-graph submit per
// position. Falls through to the per-position graph on any refusal.
// Batched prefill is opt-in (CMF_BATCH_K>0). Default 0 = per-position
// graph prefill. (Steady-state decode is provably identical either way —
// token-graph submit and lm_head both unchanged — so this only trades
// prefill wall.)
let _tpf = std::time::Instant::now();
let batch_k = std::env::var("CMF_BATCH_K")
.ok()
.and_then(|v| v.parse::<usize>().ok())
.unwrap_or(0);
if batch_k > 0
&& graph_prefill
&& task_mask.is_none()
&& mtp.is_none()
&& !dyn_prefill
&& pos + 1 < input_ids.len()
{
let hs = self.hidden_size;
let chunk = batch_k;
while pos < input_ids.len() {
let end = (pos + chunk).min(input_ids.len());
let bk = end - pos;
let mut hiddens = vec![0f32; bk * hs];
for (j, &id) in input_ids[pos..end].iter().enumerate() {
hiddens[j * hs..(j + 1) * hs].copy_from_slice(&self.embed_single(id));
}
let positions: Vec<usize> = (pos..end).collect();
if self.try_batch_graph_wgpu(&mut hiddens, &positions, bk) {
hidden.copy_from_slice(&hiddens[(bk - 1) * hs..]);
pos = end;
} else {
break; // unsupported → per-position graph handles the rest
}
}
}
while pos < input_ids.len() {
self.graph_want_logits = fuse_lm && pos + 1 == input_ids.len();
hidden = self.forward_layers(&self.embed_single(input_ids[pos]), pos, task_mask);
if let Some(m) = &mut mtp {
if pos + 1 < input_ids.len() {
let _ = self.mtp_step(m, &hidden, input_ids[pos + 1], pos);
}
}
pos += 1;
}
if std::env::var("CMF_PREFILL_PROF").is_ok() {
eprintln!(
"prefill: {} tokens in {:.1} ms (batch_k={batch_k})",
input_ids.len(),
_tpf.elapsed().as_secs_f64() * 1000.0
);
}
// Prompt absorbed → freeze the o1 layers' skeletons; from here
// every decode step on those layers is O(W + m·dv + m²).
self.o1_seal();
// Commit one token: push, check EOS, stream. Returns false = stop.
macro_rules! commit {
($id:expr) => {{
all_ids.push($id);
generated += 1;
if self.tokenizer.is_eos($id) {
finish_reason = "stop".to_string();
false
} else {
let token_text = self.tokenizer.decode_token($id);
let mut go = true;
if let Some(ref mut cb) = on_token {
if !cb(&token_text) {
finish_reason = "cancelled".to_string();
go = false;
}
}
go
}
}};
}
// ── Decode ──
let mut next_pos = input_ids.len();
'decode: while generated < max_tokens {
let mut logits = match self.graph_logits.take() {
Some(lg) => lg,
None => {
inference::rms_norm_into(
&hidden,
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
&mut self.ws.n1,
);
self.lm_head_forward(&self.ws.n1)
}
};
let t_next = sampler::sample_with_scratch(
&logits,
&self.sampler_config,
&all_ids,
&mut self.rng,
&mut self.sampler_scratch,
);
if self.confidence_on {
confidence.push(top1_prob_t(&logits, t_next, calib_temp));
}
attention::recycle_buf(&mut logits);
if trace_on {
// active_skill = the overlay in force while this token was
// generated; recon/switched are filled after the post-emit
// routing eval below (freshest coherence for this token).
let skill = router.as_ref().and_then(|r| r.active_id());
traces.push(TokenTrace {
t: generated,
token_id: t_next,
confidence: confidence.last().copied().unwrap_or(0.0),
active_skill: skill,
recon: None,
switched: false,
});
}
if !commit!(t_next) {
break 'decode;
}
if generated >= max_tokens {
break 'decode;
}
if self.kv_cache.needs_eviction() {
let keep = (self.kv_cache.max_seq_len / 2).max(1);
self.kv_cache.evict(keep);
}
match &mut mtp {
// ── Speculative: draft t+2, verify in a fused pair ──
Some(m) if generated + 1 < max_tokens => {
let draft = self.mtp_step(m, &hidden, t_next, next_pos - 1);
drafted += 1;
let emb1 = self.embed_single(t_next);
let emb2 = self.embed_single(draft);
let (h1, h2) = self.forward_pair(&emb1, &emb2, next_pos);
inference::rms_norm_into(
&h1,
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
&mut self.ws.n1,
);
let mut logits1 = self.lm_head_forward(&self.ws.n1);
let t_after = sampler::sample_with_scratch(
&logits1,
&self.sampler_config,
&all_ids,
&mut self.rng,
&mut self.sampler_scratch,
);
if self.confidence_on {
confidence.push(top1_prob_t(&logits1, t_after, calib_temp));
}
attention::recycle_buf(&mut logits1);
if trace_on {
// Speculative decode is mutually exclusive with
// dynamic routing (router is None here) — no skill.
traces.push(TokenTrace {
t: generated,
token_id: t_after,
confidence: confidence.last().copied().unwrap_or(0.0),
active_skill: None,
recon: None,
switched: false,
});
}
let stop = !commit!(t_after);
if t_after == draft {
accepted += 1;
self.commit_linear_scratch();
let _ = self.mtp_step(m, &h1, t_after, next_pos);
hidden = h2;
next_pos += 2;
} else {
// The draft lane is wrong: roll its KV entry back.
for layer in &mut self.kv_cache.layers {
layer.truncate_last(1);
}
if !stop {
let _ = self.mtp_step(m, &h1, t_after, next_pos);
hidden = self.forward_layers(
&self.embed_single(t_after),
next_pos + 1,
None,
);
}
next_pos += 2;
}
if stop {
break 'decode;
}
}
// ── Vanilla: forward the sampled token ──
_ => {
self.graph_want_logits = fuse_lm;
hidden = self.forward_layers(&self.embed_single(t_next), next_pos, task_mask);
next_pos += 1;
// Dynamic routing: the forward updated φ; ask the
// router whether to switch skills before the next token.
if let Some(r) = &mut router {
let phi = self.dyn_phi_ema.clone();
let decision = r.step(&phi, generated);
if let Some(new_active) = decision {
let _ = self.set_active_skill(new_active);
}
// Backfill this token's coherence + switch flag from
// the just-run eval (freshest measured values).
if trace_on {
if let Some(last) = traces.last_mut() {
let e = r.last_best_e();
last.recon = e.is_finite().then_some(e);
last.switched = decision.is_some();
}
}
}
}
}
}
self.graph_want_logits = false;
self.graph_logits = None;
// Restore backbone overlay and re-attach the router for reuse.
if router.is_some() {
let _ = self.set_active_skill(None);
}
self.dyn_router = router.or(self.dyn_router.take());
self.mtp = mtp.or(self.mtp.take());
let output_ids = &all_ids[input_ids.len()..];
confidence.truncate(output_ids.len()); // guard against any overshoot
traces.truncate(output_ids.len());
Ok(GenerateResult {
text: self.tokenizer.decode(output_ids),
token_ids: output_ids.to_vec(),
prompt_tokens: input_ids.len(),
tokens_generated: generated,
finish_reason,
mtp_drafted: drafted,
mtp_accepted: accepted,
token_confidence: confidence,
traces,
})
}
/// One MTP step: feed `(hidden_p, token_{p+1})` into the draft head,
/// advance its KV cache at position `p`, return the drafted token
/// for position `p+2`.
fn mtp_step(
&mut self,
m: &mut MtpModule,
hidden: &[f32],
next_token: u32,
position: usize,
) -> u32 {
// fc concat order is [enorm(embed); hnorm(hidden)] — EMBEDDING
// FIRST. Verified by the oracle (converter/mtp_oracle.py):
// [emb;hid] → 45.8% acceptance, [hid;emb] → 0.00%.
let e = self.embed_single(next_token);
let mut cat = vec![0.0f32; 2 * self.hidden_size];
let (cat_e, cat_h) = cat.split_at_mut(self.hidden_size);
inference::rms_norm_into(&e, &m.enorm, self.rms_eps, self.norm_style, cat_e);
inference::rms_norm_into(hidden, &m.hnorm, self.rms_eps, self.norm_style, cat_h);
let mut x = vec![0.0f32; self.hidden_size];
m.eh_proj.matvec(&cat, &mut x, self.pool.as_deref());
// One standard transformer block over the MTP's own cache.
let lw = &m.layer;
inference::rms_norm_into(
&x,
&lw.input_norm,
self.rms_eps,
self.norm_style,
&mut self.ws.n1,
);
let attn = match &lw.attn {
AttnKind::Full {
wq,
wk,
wv,
wo,
q_norm,
k_norm,
output_gate,
softplus_gate,
bias,
} => {
let mut cfg = self.attn_cfg(position);
cfg.q_norm = q_norm.as_deref();
cfg.k_norm = k_norm.as_deref();
cfg.output_gate = *output_gate;
cfg.softplus_gate = softplus_gate
.as_ref()
.map(|(gate, per_head)| (gate, *per_head));
cfg.bias = bias
.as_ref()
.map(|(q, k, v)| (q.as_slice(), k.as_slice(), v.as_slice()));
attention::qwen_attention(&self.ws.n1, wq, wk, wv, wo, &mut m.kv, &cfg)
}
AttnKind::Linear(_) | AttnKind::LinearGdn(_) | AttnKind::ShortConv(_) => {
unreachable!("MTP block is full attention")
}
};
for (i, &a) in attn.iter().enumerate() {
x[i] += a;
}
inference::rms_norm_into(
&x,
&lw.post_norm,
self.rms_eps,
self.norm_style,
&mut self.ws.p1,
);
let ffn = ffn_forward(&lw.ffn, &self.ws.p1, self.pool.as_deref());
for (i, &f) in ffn.iter().enumerate() {
x[i] += f;
}
inference::rms_norm_into(
&x,
&m.final_norm,
self.rms_eps,
self.norm_style,
&mut self.ws.n1,
);
let mut lg = self.lm_head_forward(&self.ws.n1);
let draft = sampler::argmax(&lg);
attention::recycle_buf(&mut lg);
draft
}
/// Micro-benchmark: two single-position forwards vs one fused pair
/// from the current cache state (KV rewound after each probe).
/// Returns (two_singles_ms, fused_pair_ms) per probe.
pub fn measure_pair_fusion(&mut self, iters: usize) -> (f64, f64) {
let emb1 = self.embed_single(1);
let emb2 = self.embed_single(2);
let pos = self.kv_cache.seq_len();
let t0 = std::time::Instant::now();
for _ in 0..iters {
let _ = self.forward_layers(&emb1, pos, None);
let _ = self.forward_layers(&emb2, pos + 1, None);
for l in &mut self.kv_cache.layers {
l.truncate_last(2);
}
}
let singles_ms = t0.elapsed().as_secs_f64() * 1000.0 / iters as f64;
let t1 = std::time::Instant::now();
for _ in 0..iters {
let _ = self.forward_pair(&emb1, &emb2, pos);
for l in &mut self.kv_cache.layers {
l.truncate_last(2);
}
}
let pair_ms = t1.elapsed().as_secs_f64() * 1000.0 / iters as f64;
(singles_ms, pair_ms)
}
/// Fused two-position forward: weight rows are streamed from memory
/// once per layer for both positions. Full layers → fused GQA pair;
/// linear layers → vmf_phase pair (lane 2 state is tentative in the
/// per-layer scratch until the draft is accepted).
fn forward_pair(
&mut self,
emb1: &[f32],
emb2: &[f32],
position: usize,
) -> (Vec<f32>, Vec<f32>) {
let mut h1 = emb1.to_vec();
let mut h2 = emb2.to_vec();
let (_nkv, _hd, hs, _rd, eps) = (
self.num_kv_heads,
self.head_dim,
self.hidden_size,
self.rotary_dim,
self.rms_eps,
);
let pool = self.pool.clone();
for li in 0..self.num_layers {
let lw = &self.weights.layers[self.phys_layer(li)];
// Norms into pipeline scratch (4 allocs/layer on the MTP
// decode hot path before this).
inference::rms_norm_into(
&h1,
&lw.input_norm,
self.rms_eps,
self.norm_style,
&mut self.ws.n1,
);
inference::rms_norm_into(
&h2,
&lw.input_norm,
self.rms_eps,
self.norm_style,
&mut self.ws.n2,
);
let (a1, a2) = match &lw.attn {
AttnKind::Linear(w) => {
let cfg = self.vmf_cfg.expect("linear layer without vmf_cfg");
let layer = &mut self.kv_cache.layers[li];
let (state, scratch) = (&mut layer.linear_state, &mut layer.linear_scratch);
vmf_phase_pair(
&self.ws.n1,
&self.ws.n2,
w,
&cfg,
state,
scratch,
self.pool.as_deref(),
)
}
AttnKind::LinearGdn(w) => {
let cfg = self.gdn_cfg.expect("gdn layer without gdn_cfg");
let layer = &mut self.kv_cache.layers[li];
let (state, scratch) = (&mut layer.linear_state, &mut layer.linear_scratch);
gdn_pair(
&self.ws.n1,
&self.ws.n2,
w,
&cfg,
state,
scratch,
self.pool.as_deref(),
)
}
AttnKind::ShortConv(w) => {
let cfg = self
.short_conv_cfg
.expect("short-conv layer without short_conv_cfg");
let layer = &mut self.kv_cache.layers[li];
let (state, scratch) = (&mut layer.linear_state, &mut layer.linear_scratch);
short_conv_pair(
&self.ws.n1,
&self.ws.n2,
w,
&cfg,
state,
scratch,
self.pool.as_deref(),
)
}
AttnKind::Full {
wq,
wk,
wv,
wo,
q_norm,
k_norm,
output_gate,
softplus_gate,
bias,
} => {
let inv_freq_l = self.layer_inv_freq(li);
let (nkv_l, hd_l, rd_l) = self.layer_geom(li);
let cfg = QwenAttnCfg {
num_heads: self.layer_num_heads(li),
num_kv_heads: nkv_l,
head_dim: hd_l,
hidden_size: hs,
position,
inv_freq: &inv_freq_l,
rotary_dim: rd_l,
scale: self.attn_scale,
window: self.layer_window(li),
v_norm: self.attn_v_norm,
q_norm: q_norm.as_deref(),
k_norm: k_norm.as_deref(),
output_gate: *output_gate,
softplus_gate: softplus_gate
.as_ref()
.map(|(gate, per_head)| (gate, *per_head)),
rope_scale: self.layer_rope_scale(li),
bias: bias
.as_ref()
.map(|(a, b, c)| (a.as_slice(), b.as_slice(), c.as_slice())),
rms_eps: eps,
norm_style: self.norm_style,
pool: pool.as_deref(),
};
attention::qwen_attention_pair(
&self.ws.n1,
&self.ws.n2,
wq,
wk,
wv,
wo,
&mut self.kv_cache.layers[li],
&cfg,
)
}
};
let (a1, a2) = match &self.weights.layers[self.phys_layer(li)].attn_out_norm {
Some(w) => (
inference::rms_norm(&a1, w, self.rms_eps, self.norm_style),
inference::rms_norm(&a2, w, self.rms_eps, self.norm_style),
),
None => (a1, a2),
};
for i in 0..self.hidden_size {
h1[i] += a1[i];
h2[i] += a2[i];
}
let (mut a1, mut a2) = (a1, a2);
attention::recycle_buf(&mut a1);
attention::recycle_buf(&mut a2);
let lw = &self.weights.layers[self.phys_layer(li)];
inference::rms_norm_into(
&h1,
&lw.post_norm,
self.rms_eps,
self.norm_style,
&mut self.ws.p1,
);
inference::rms_norm_into(
&h2,
&lw.post_norm,
self.rms_eps,
self.norm_style,
&mut self.ws.p2,
);
let (f1, f2) =
ffn_forward_pair(&lw.ffn, &self.ws.p1, &self.ws.p2, self.pool.as_deref());
let (f1, f2) = match &self.weights.layers[self.phys_layer(li)].ffn_out_norm {
Some(w) => (
inference::rms_norm(&f1, w, self.rms_eps, self.norm_style),
inference::rms_norm(&f2, w, self.rms_eps, self.norm_style),
),
None => (f1, f2),
};
for i in 0..self.hidden_size {
h1[i] += f1[i];
h2[i] += f2[i];
}
let (mut f1, mut f2) = (f1, f2);
attention::recycle_buf(&mut f1);
attention::recycle_buf(&mut f2);
if let Some(sc) = self.weights.layers[self.phys_layer(li)].layer_scale {
for i in 0..self.hidden_size {
h1[i] *= sc;
h2[i] *= sc;
}
}
// Looped Transformer: apply final norm at the end of each loop iteration.
if self.is_loop_end(li) && li + 1 < self.num_layers {
h1 = inference::rms_norm(
&h1,
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
);
h2 = inference::rms_norm(
&h2,
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
);
}
}
(h1, h2)
}
/// Commit lane-2 linear states after an accepted draft.
fn commit_linear_scratch(&mut self) {
for layer in &mut self.kv_cache.layers {
if !layer.linear_scratch.is_empty() {
std::mem::swap(&mut layer.linear_state, &mut layer.linear_scratch);
layer.linear_scratch.clear();
}
}
}
/// Forward a full id sequence from a fresh cache and return the
/// logits after the last position (golden-parity harness, bench).
pub fn forward_ids(
&mut self,
ids: &[u32],
task_mask: Option<&TaskMask>,
) -> Result<Vec<f32>, String> {
if ids.is_empty() {
return Err("empty id sequence".to_string());
}
self.kv_cache.clear();
self.o1_begin();
let mut hidden = vec![0.0f32; self.hidden_size];
let mut pos = 0usize;
if task_mask.is_none() && prefill_batched() && ids.len() > 2 {
// prefill-GEMM in chunks; only the last position's hidden is
// needed. (o1-compatible: the batch path attends per position
// through qwen_attention, which carries the collection hook.)
let chunk = prefill_chunk();
let hs = self.hidden_size;
while pos < ids.len() {
let end = (pos + chunk).min(ids.len());
let hb = self.prefill_batch(&ids[pos..end], pos);
hidden.copy_from_slice(&hb[(end - pos - 1) * hs..]);
pos = end;
}
}
if task_mask.is_none() {
while pos + 1 < ids.len() {
let e1 = self.embed_single(ids[pos]);
let e2 = self.embed_single(ids[pos + 1]);
let (_, h2) = self.forward_pair(&e1, &e2, pos);
self.commit_linear_scratch();
hidden = h2;
pos += 2;
}
}
while pos < ids.len() {
hidden = self.forward_layers(&self.embed_single(ids[pos]), pos, task_mask);
pos += 1;
}
// Harness contract: after forward_ids the cache is decode-ready —
// under o1 that means sealed (bench measures the seal as part of
// prefill, honestly).
self.o1_seal();
let normed = inference::rms_norm(
&hidden,
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
);
Ok(self.lm_head_forward(&normed))
}
/// Teacher-forced perplexity over a token sequence (phase-C gate:
/// honest quant comparisons instead of prompt vibes).
///
/// Attention is EXACT even on a model whose layers are flagged for
/// the O(1) kernel — scoring the backbone is the default on purpose
/// (it is the yardstick). `nll_ids_o1` scores the CONVERTED model.
pub fn ppl_ids(&mut self, ids: &[u32]) -> f64 {
let (nll, cnt) = self.nll_ids_from(ids, 0);
(nll / cnt.max(1) as f64).exp()
}
/// DTG-MA calibration pass (Patent 2): run `ids` through the model
/// (CPU path, per position) and return each layer's per-neuron
/// activation mass Σ|silu(gate)·up| — the statistic the task-guided
/// FFN mask is derived from.
pub fn probe_ffn_mass(&mut self, ids: &[u32]) -> Vec<Vec<f64>> {
self.kv_cache.clear();
FFN_PROBE.with(|p| {
*p.borrow_mut() = Some(vec![vec![0f64; self.intermediate_size]; self.num_layers]);
});
crate::gpu::cpu_scope(|| {
for (pos, &id) in ids.iter().enumerate() {
let emb = self.embed_single(id);
let _ = self.forward_layers(&emb, pos, None);
}
});
self.kv_cache.clear();
FFN_PROBE
.with(|p| p.borrow_mut().take())
.unwrap_or_default()
}
/// Teacher-forced PPL with a task mask active (sparse execution) —
/// the quality gate for a DTG-MA-masked skill. Sequential per
/// position: the batched prefill path is dense-only.
pub fn ppl_ids_masked(&mut self, ids: &[u32], mask: &TaskMask) -> f64 {
self.kv_cache.clear();
let mut nll = 0f64;
let mut cnt = 0usize;
let mut hidden = vec![0f32; self.hidden_size];
for (pos, &id) in ids.iter().enumerate() {
if pos > 0 {
inference::rms_norm_into(
&hidden,
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
&mut self.ws.n1,
);
let mut logits = self.lm_head_forward(&self.ws.n1);
let max = logits.iter().cloned().fold(f32::NEG_INFINITY, f32::max);
let sum: f64 = logits.iter().map(|&v| ((v - max) as f64).exp()).sum();
let p = ((logits[id as usize] - max) as f64).exp() / sum.max(1e-300);
nll -= p.max(1e-300).ln();
cnt += 1;
attention::recycle_buf(&mut logits);
}
let emb = self.embed_single(id);
hidden = self.forward_layers(&emb, pos, Some(mask));
}
self.kv_cache.clear();
(nll / cnt.max(1) as f64).exp()
}
/// Teacher-forced NLL sum + scored-token count over positions
/// `start..len-1`, attention EXACT. Positions below `start` still
/// run — they are the context — they are just not scored, so this
/// pairs with `nll_ids_o1(ids, start)` over the very same tokens.
///
/// Returning (nll, cnt) rather than a ppl is what lets a windowed
/// caller combine windows before the exp, so every scored token
/// weighs the same regardless of how the windows are cut.
pub fn nll_ids_from(&mut self, ids: &[u32], start: usize) -> (f64, usize) {
self.kv_cache.clear();
let mut nll = 0f64;
let mut cnt = 0usize;
if prefill_batched() {
// prefill-GEMM: layer-major position chunks, lm_head batched
// (254MB lm_head read once per chunk, not per position).
// The layer chunk is large (grouping positions by MoE experts
// wins with size), lm_head in sub-blocks (logit buffer
// 32×vocab ≈ 32MB instead of 128×).
const CHUNK: usize = 128;
const LM_SUB: usize = 32;
let n = ids.len().saturating_sub(1);
let hs = self.hidden_size;
let rows = self.weights.lm_head.rows();
let mut pos = 0usize;
while pos < n {
let end = (pos + CHUNK).min(n);
let bsz = end - pos;
let hb = self.prefill_batch(&ids[pos..end], pos);
let mut k0 = 0usize;
while k0 < bsz {
let k1 = (k0 + LM_SUB).min(bsz);
let sb = k1 - k0;
// Sub-block entirely below the scored range: the KV
// it just built is all this pass needed from it.
if pos + k1 <= start {
k0 = k1;
continue;
}
let mut normed = vec![0.0f32; sb * hs];
for k in 0..sb {
let r = inference::rms_norm(
&hb[(k0 + k) * hs..(k0 + k + 1) * hs],
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
);
normed[k * hs..(k + 1) * hs].copy_from_slice(&r);
}
let mut logits = vec![0.0f32; sb * rows];
self.weights
.lm_head
.matmat(&normed, sb, &mut logits, self.pool.as_deref());
for k in 0..sb {
if pos + k0 + k < start {
continue;
}
let lg = &logits[k * rows..k * rows + self.vocab_size.min(rows)];
let target = ids[pos + k0 + k + 1] as usize;
let max = lg.iter().fold(f32::NEG_INFINITY, |m, &v| m.max(v));
let lse: f64 = lg
.iter()
.map(|&v| ((v - max) as f64).exp())
.sum::<f64>()
.ln()
+ max as f64;
nll += lse - lg[target] as f64;
cnt += 1;
}
k0 = k1;
}
pos = end;
}
self.kv_cache.clear();
return (nll, cnt);
}
for pos in 0..ids.len().saturating_sub(1) {
let hidden = self.forward_layers(&self.embed_single(ids[pos]), pos, None);
if pos < start {
continue;
}
let normed = inference::rms_norm(
&hidden,
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
);
let logits = self.lm_head_forward(&normed);
let target = ids[pos + 1] as usize;
let max = logits.iter().fold(f32::NEG_INFINITY, |m, &v| m.max(v));
let lse: f64 = logits
.iter()
.map(|&v| ((v - max) as f64).exp())
.sum::<f64>()
.ln()
+ max as f64;
nll += lse - logits[target] as f64;
cnt += 1;
}
self.kv_cache.clear();
(nll, cnt)
}
/// Teacher-forced NLL of the CONVERTED model: the O(1) Nyström path
/// is ACTIVE over the scored positions. Returns (nll sum, scored
/// count) over `prefill..len-1`.
///
/// Runtime discipline, deliberately NOT the matrix probe's: the
/// first `prefill` tokens run the exact prompt pass — that pass is
/// what freezes the landmarks and M — and every scored position then
/// goes through `NystromState::step()`, the same code decode runs.
/// So the landmarks are PREFILL-frozen (what ships), not
/// full-sequence oracles (what the published probe measured), and
/// every scored row carries a real far field rather than sitting
/// inside the exact window.
///
/// Pair with `nll_ids_from(ids, prefill)` for the exact baseline
/// over the identical token set — that ratio is the honest one.
pub fn nll_ids_o1(&mut self, ids: &[u32], prefill: usize) -> (f64, usize) {
self.kv_cache.clear();
self.o1_begin();
let n = ids.len().saturating_sub(1);
let p = prefill.min(n);
// Exact prompt pass over ids[..p]: the seal consumes its q/k/v.
let mut pos = 0usize;
if prefill_batched() {
const CHUNK: usize = 128;
while pos < p {
let end = (pos + CHUNK).min(p);
let _ = self.prefill_batch(&ids[pos..end], pos);
pos = end;
}
} else {
while pos < p {
let _ = self.forward_layers(&self.embed_single(ids[pos]), pos, None);
pos += 1;
}
}
self.o1_seal();
let mut nll = 0f64;
let mut cnt = 0usize;
for pos in p..n {
let hidden = self.forward_layers(&self.embed_single(ids[pos]), pos, None);
let normed = inference::rms_norm(
&hidden,
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
);
let logits = self.lm_head_forward(&normed);
let target = ids[pos + 1] as usize;
let max = logits.iter().fold(f32::NEG_INFINITY, |m, &v| m.max(v));
let lse: f64 = logits
.iter()
.map(|&v| ((v - max) as f64).exp())
.sum::<f64>()
.ln()
+ max as f64;
nll += lse - logits[target] as f64;
cnt += 1;
}
self.kv_cache.clear();
(nll, cnt)
}
/// Teacher-forced calibration data (B1): for each position, whether the
/// argmax equals the actual next token, and the top-1 softmax prob
/// (Born mass) under EACH temperature in `temps` — all from ONE forward
/// pass (argmax/correctness are temperature-invariant; only p_max
/// reshapes). Feeds `cortiq calibrate` (reliability/ECE + temperature
/// fit): is the model's confidence a true property, or does it need a
/// measured scaling?
pub fn calib_ids(&mut self, ids: &[u32], temps: &[f32]) -> (Vec<bool>, Vec<Vec<f32>>) {
self.kv_cache.clear();
let n = ids.len().saturating_sub(1);
let mut correct = Vec::with_capacity(n);
let mut pmax = Vec::with_capacity(n);
for pos in 0..n {
let emb = self.embed_single(ids[pos]);
let hidden = self.forward_layers(&emb, pos, None);
let normed = inference::rms_norm(
&hidden,
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
);
let logits = self.lm_head_forward(&normed);
let target = ids[pos + 1] as usize;
let (mut amax, mut mval) = (0usize, f32::NEG_INFINITY);
for (i, &v) in logits.iter().enumerate() {
if v > mval {
mval = v;
amax = i;
}
}
correct.push(amax == target);
let row: Vec<f32> = temps
.iter()
.map(|&t| {
let tt = t.max(1e-3);
let s: f32 = logits.iter().map(|&v| ((v - mval) / tt).exp()).sum();
1.0 / s.max(1e-12) // numerator at the max is exp(0)=1
})
.collect();
pmax.push(row);
}
self.kv_cache.clear();
(correct, pmax)
}
/// Teacher-forced PPL with the dynamic router driving per-window
/// skill switches (VMF experiment №2 measurement). Sequential (φ
/// must update per token), returns (ppl, switch_count). The router
/// must be enabled (`enable_dynamic_routing`); else this equals
/// plain `ppl_ids`. The active skill when scoring token t shapes the
/// logits for t+1 — on-policy over the held-out text itself.
pub fn ppl_ids_dynamic(&mut self, ids: &[u32]) -> (f64, usize) {
let mut router = match self.dyn_router.take() {
Some(r) => r,
None => return (self.ppl_ids(ids), 0),
};
router.reset();
self.dyn_phi_seen = 0;
let _ = self.set_active_skill(None);
self.kv_cache.clear();
let mut nll = 0f64;
let mut cnt = 0usize;
for pos in 0..ids.len().saturating_sub(1) {
let hidden = self.forward_layers(&self.embed_single(ids[pos]), pos, None);
let normed = inference::rms_norm(
&hidden,
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
);
let logits = self.lm_head_forward(&normed);
let target = ids[pos + 1] as usize;
let max = logits.iter().fold(f32::NEG_INFINITY, |m, &v| m.max(v));
let lse: f64 = logits
.iter()
.map(|&v| ((v - max) as f64).exp())
.sum::<f64>()
.ln()
+ max as f64;
nll += lse - logits[target] as f64;
cnt += 1;
// Route on the evolving φ (drives the NEXT token's skill).
let phi = self.dyn_phi_ema.clone();
if let Some(new_active) = router.step(&phi, pos) {
let _ = self.set_active_skill(new_active);
}
}
let switches = router.switches.len();
let _ = self.set_active_skill(None);
self.dyn_router = Some(router);
self.kv_cache.clear();
((nll / cnt.max(1) as f64).exp(), switches)
}
/// Routing probe φ (spec §9): mean-pooled hidden after `layer`.
pub fn probe_phi(&mut self, ids: &[u32], layer: usize) -> Vec<f32> {
self.kv_cache.clear();
let mut acc = vec![0f32; self.hidden_size];
for (pos, &id) in ids.iter().enumerate() {
let h = self.forward_layers_upto(&self.embed_single(id), pos, None, Some(layer));
for (a, v) in acc.iter_mut().zip(&h) {
*a += v;
}
}
let n = ids.len().max(1) as f32;
for a in acc.iter_mut() {
*a /= n;
}
self.kv_cache.clear();
acc
}
/// Layer-major batched prefill (prefill-GEMM): full-attention —
/// per-position with the existing operators (KV grows naturally,
/// causality preserved), GDN projections / FFN / MoE — batched
/// (a weight row is read from DRAM once per chunk, not per
/// position). Returns the hidden of all positions [b × hidden].
fn prefill_batch(&mut self, ids: &[u32], start_pos: usize) -> Vec<f32> {
let b = ids.len();
let hs = self.hidden_size;
// The CPU embed is deferred: when the chunk graph takes the run
// from layer 0 it gathers the embeddings on the device instead.
let mut h: Vec<f32> = vec![0.0; b * hs];
let mut h_ready = false;
let fill_h = |h: &mut Vec<f32>, me: &Self| {
for (bi, &id) in ids.iter().enumerate() {
let e = me.embed_single(id);
h[bi * hs..(bi + 1) * hs].copy_from_slice(&e);
}
};
let (_nkv, _hd, _rd, eps) = (
self.num_kv_heads,
self.head_dim,
self.rotary_dim,
self.rms_eps,
);
let pool = self.pool.clone();
let norm_style = self.norm_style;
#[cfg(target_os = "macos")]
let mut chunk_skip_until = 0usize;
for li in 0..self.num_layers {
crate::gpu::set_layer(li as i64); // layer-split GPU/CPU
// GPU chunk graph (default-on under CMF_GPU=1): a run of
// consecutive eligible layers for the whole chunk in ONE
// Metal submission — norm, QKV, RoPE with fused mirror
// append, causal attend, O, FFN, hidden device-resident
// across the run. Any refusal falls through to the CPU path.
#[cfg(target_os = "macos")]
{
if li < chunk_skip_until {
continue;
}
let ids_for_embed = (!h_ready && li == 0).then_some(ids);
let end = self.chunk_run_gpu(li, &mut h, b, start_pos, ids_for_embed);
if end > li {
h_ready = true;
chunk_skip_until = end;
// Looped Transformer: the graph stopped at a loop
// boundary — apply final norm before the next iteration.
if self.is_loop_end(end - 1) && end < self.num_layers {
for bi in 0..b {
let normed = inference::rms_norm(
&h[bi * hs..(bi + 1) * hs],
&self.weights.final_norm,
eps,
norm_style,
);
h[bi * hs..(bi + 1) * hs].copy_from_slice(&normed);
}
}
continue;
}
}
if !h_ready {
fill_h(&mut h, self);
h_ready = true;
}
let lw = &self.weights.layers[self.phys_layer(li)];
// ── attention ──
match &lw.attn {
AttnKind::LinearGdn(w) => {
// Projections batched, recurrence sequential.
let cfg = self.gdn_cfg.expect("gdn layer without gdn_cfg");
let mut normed = vec![0.0f32; b * hs];
for bi in 0..b {
let r = inference::rms_norm(
&h[bi * hs..(bi + 1) * hs],
&lw.input_norm,
eps,
norm_style,
);
normed[bi * hs..(bi + 1) * hs].copy_from_slice(&r);
}
let attn = crate::linear_core::gdn_forward_batch(
&normed,
b,
w,
&cfg,
&mut self.kv_cache.layers[li].linear_state,
pool.as_deref(),
);
for (dst, &a) in h.iter_mut().zip(&attn) {
*dst += a;
}
}
AttnKind::ShortConv(w) => {
// Projections batched over the chunk; the conv walks the
// contiguous positions in order (same ring as decode).
let cfg = self
.short_conv_cfg
.expect("short-conv layer without short_conv_cfg");
let mut normed = vec![0.0f32; b * hs];
for bi in 0..b {
inference::rms_norm_into(
&h[bi * hs..(bi + 1) * hs],
&lw.input_norm,
eps,
norm_style,
&mut normed[bi * hs..(bi + 1) * hs],
);
}
let attn = short_conv_forward_batch(
&normed,
b,
w,
&cfg,
&mut self.kv_cache.layers[li].linear_state,
pool.as_deref(),
);
for (dst, &a) in h.iter_mut().zip(&attn) {
*dst += a;
}
}
AttnKind::Full {
wq,
wk,
wv,
wo,
q_norm,
k_norm,
output_gate,
softplus_gate,
bias,
} => {
// Chunk-GEMM QKV/O; per-position causal attention
// inside (roadmap §3 P0 — full-attention prefill no
// longer re-reads the projection weights b times).
let mut normed = vec![0.0f32; b * hs];
for bi in 0..b {
inference::rms_norm_into(
&h[bi * hs..(bi + 1) * hs],
&lw.input_norm,
eps,
norm_style,
&mut normed[bi * hs..(bi + 1) * hs],
);
}
let inv_freq_l = self.layer_inv_freq(li);
let (nkv_l, hd_l, rd_l) = self.layer_geom(li);
let cfg = QwenAttnCfg {
num_heads: self.layer_num_heads(li),
num_kv_heads: nkv_l,
head_dim: hd_l,
hidden_size: hs,
position: start_pos,
inv_freq: &inv_freq_l,
rotary_dim: rd_l,
scale: self.attn_scale,
window: self.layer_window(li),
v_norm: self.attn_v_norm,
q_norm: q_norm.as_deref(),
k_norm: k_norm.as_deref(),
output_gate: *output_gate,
softplus_gate: softplus_gate
.as_ref()
.map(|(gate, per_head)| (gate, *per_head)),
rope_scale: self.layer_rope_scale(li),
bias: bias
.as_ref()
.map(|(a, b, c)| (a.as_slice(), b.as_slice(), c.as_slice())),
rms_eps: eps,
norm_style,
pool: pool.as_deref(),
};
let mut attn = attention::qwen_attention_batch(
&normed,
b,
wq,
wk,
wv,
wo,
&mut self.kv_cache.layers[li],
&cfg,
);
if let Some(w) = &lw.attn_out_norm {
for bi in 0..b {
inference::rms_norm_into(
&attn[bi * hs..(bi + 1) * hs],
w,
eps,
norm_style,
&mut normed[bi * hs..(bi + 1) * hs],
);
}
attn.copy_from_slice(&normed);
}
for (dst, &a) in h.iter_mut().zip(&attn) {
*dst += a;
}
}
AttnKind::Linear(w) => {
for bi in 0..b {
let normed = inference::rms_norm(
&h[bi * hs..(bi + 1) * hs],
&lw.input_norm,
eps,
norm_style,
);
vmf_phase_forward(
&normed,
w,
&self.vmf_cfg.expect("linear layer without vmf_cfg"),
&mut self.kv_cache.layers[li].linear_state,
pool.as_deref(),
)
.iter()
.enumerate()
.for_each(|(i, &a)| h[bi * hs + i] += a);
}
}
}
// ── FFN batched ──
let lw = &self.weights.layers[self.phys_layer(li)];
let mut post = vec![0.0f32; b * hs];
for bi in 0..b {
let r =
inference::rms_norm(&h[bi * hs..(bi + 1) * hs], &lw.post_norm, eps, norm_style);
post[bi * hs..(bi + 1) * hs].copy_from_slice(&r);
}
let mut ffn = match &lw.ffn {
FfnKind::Dense(d) => dense_ffn_batch(d, &post, b, pool.as_deref()),
FfnKind::Moe(m) => moe_ffn_batch(m, &post, b, hs, pool.as_deref()),
};
if let Some(w) = &lw.ffn_out_norm {
for bi in 0..b {
inference::rms_norm_into(
&ffn[bi * hs..(bi + 1) * hs],
w,
eps,
norm_style,
&mut post[bi * hs..(bi + 1) * hs],
);
}
ffn.copy_from_slice(&post);
}
for (dst, &f) in h.iter_mut().zip(&ffn) {
*dst += f;
}
if let Some(sc) = lw.layer_scale {
for v in h.iter_mut() {
*v *= sc;
}
}
// Looped Transformer: apply final norm at the end of each loop iteration.
if self.is_loop_end(li) && li + 1 < self.num_layers {
for bi in 0..b {
let normed = inference::rms_norm(
&h[bi * hs..(bi + 1) * hs],
&self.weights.final_norm,
eps,
norm_style,
);
h[bi * hs..(bi + 1) * hs].copy_from_slice(&normed);
}
}
if std::env::var("CMF_TRACE_H").is_ok() {
let n = h[..hs].iter().map(|v| v.abs()).sum::<f32>() / hs as f32;
let mx = h[..hs].iter().fold(0.0f32, |a, &v| a.max(v.abs()));
eprintln!(
"layer {li}: mean|h|={n:.4} max|h|={mx:.2} scale={:?}",
lw.layer_scale
);
}
}
crate::gpu::set_layer(-1); // lm_head/final ops outside layer-split
h
}
/// Embed a single token.
fn embed_single(&self, id: u32) -> Vec<f32> {
let mut out = vec![0.0f32; self.hidden_size];
if (id as usize) < self.weights.embed_tokens.rows() {
self.weights.embed_tokens.row_f32(id as usize, &mut out);
}
if self.embed_multiplier != 1.0 {
for v in out.iter_mut() {
*v *= self.embed_multiplier;
}
}
out
}
/// A run of consecutive prefill layers on the GPU for the whole
/// chunk (default-on under CMF_GPU=1; CMF_GPU_CHUNK=0 disables).
/// Eligibility per layer: q8_row weights, plain full attention
/// (no output gate), F32 KV, no o1/masks/gemma extras. Returns the
/// first layer index NOT processed (== `li0` when the run is empty).
#[cfg(target_os = "macos")]
fn chunk_run_gpu(
&mut self,
li0: usize,
h: &mut [f32],
b: usize,
pos0: usize,
embed_ids: Option<&[u32]>,
) -> usize {
// (The old streaming attend needed a depth bound at ~1k; the
// GEMM attention scales like the CPU path and lifted it.)
// CMF_GPU_CHUNK=0 disables the graph.
if !crate::gpu::enabled_here()
|| std::env::var("CMF_GPU_CHUNK")
.map(|v| v == "0")
.unwrap_or(false)
|| b < 32
|| self.swa.is_some()
|| self.global_attn.is_some()
|| self.attn_v_norm
|| (self.attn_scale - 1.0 / (self.head_dim as f32).sqrt()).abs() > 1e-9
{
return li0;
}
let Some(model) = self.model.clone() else {
return li0;
};
let inv_freq = self.inv_freq.clone();
let (nh, nkv, hd, hs) = (
self.num_heads,
self.num_kv_heads,
self.head_dim,
self.hidden_size,
);
// Collect the longest run of consecutive eligible layers.
// Looped Transformer: stop at the loop boundary so the CPU can
// apply loop_final_norm between iterations.
let loop_end = if self.loop_final_norm {
((li0 / self.physical_layers) + 1) * self.physical_layers
} else {
self.num_layers
};
let mut layers: Vec<crate::gpu_metal::ChunkLayer> = Vec::new();
let mut stored_at: Vec<usize> = Vec::new();
for li in li0..self.num_layers.min(loop_end) {
let lw = &self.weights.layers[self.phys_layer(li)];
if lw.attn_out_norm.is_some() || lw.ffn_out_norm.is_some() || lw.layer_scale.is_some() {
break;
}
let AttnKind::Full {
wq,
wk,
wv,
wo,
q_norm,
k_norm,
output_gate: false,
softplus_gate: None,
bias,
} = &lw.attn
else {
break;
};
let FfnKind::Dense(d) = &lw.ffn else { break };
if d.act != Act::Silu {
break;
}
let parts = (
wq.q8_row_parts(),
wk.q8_row_parts(),
wv.q8_row_parts(),
wo.q8_row_parts(),
d.gate_proj.q8_row_parts(),
d.up_proj.q8_row_parts(),
d.down_proj.q8_row_parts(),
);
let (Some(pq), Some(pk), Some(pv), Some(po), Some(pg), Some(pu), Some(pd)) = parts
else {
break;
};
let layer = &self.kv_cache.layers[li];
if layer.mode != crate::kv_cache::KvMode::F32 || layer.o1.is_some() {
break;
}
stored_at.push(layer.head_len(0));
layers.push(crate::gpu_metal::ChunkLayer {
model: &model,
kv_id: self.graph_kv_id,
layer: li,
wq: pq,
wk: pk,
wv: pv,
wo: po,
gate: pg,
up: pu,
down: pd,
input_norm: &lw.input_norm,
post_norm: &lw.post_norm,
bias: bias
.as_ref()
.map(|(a, bb, cc)| (a.as_slice(), bb.as_slice(), cc.as_slice())),
q_norm: q_norm.as_deref(),
k_norm: k_norm.as_deref(),
inv_freq: &inv_freq,
rd: self.rotary_dim,
nh,
nkv,
hd,
hs,
inter: d.gate_proj.rows(),
gemma: matches!(self.norm_style, cortiq_core::NormStyle::Gemma),
eps: self.rms_eps as f32,
});
}
if layers.is_empty() {
return li0;
}
let row = nkv * hd;
let mut store: Vec<(Vec<f32>, Vec<f32>, Vec<f32>)> = stored_at
.iter()
.map(|&st| (vec![0f32; b * row], vec![0f32; b * row], vec![0f32; st + b]))
.collect();
let mut io: Vec<crate::gpu_metal::ChunkIo> = Vec::with_capacity(layers.len());
for (i, (ok, ov, oi)) in store.iter_mut().enumerate() {
let li = layers[i].layer;
let layer = &self.kv_cache.layers[li];
io.push(crate::gpu_metal::ChunkIo {
cpu_stored: stored_at[i],
cpu_k: (0..nkv).map(|g| layer.head_keys(g)).collect(),
cpu_v: (0..nkv).map(|g| layer.head_values(g)).collect(),
out_k: ok,
out_v: ov,
imp: oi,
});
}
let n_run = layers.len();
let last = layers.last().map(|l| l.layer + 1).unwrap_or(li0);
// Device-side embedding when the run starts the model and the
// embedding matrix is q8_row-mapped.
let ep = embed_ids.and_then(|ids| {
self.weights
.embed_tokens
.q8_row_parts()
.map(|(idx, rows, _c, rs)| crate::gpu_metal::ChunkEmbed {
idx,
rows,
row_scale: rs,
ids,
mult: self.embed_multiplier,
})
});
if embed_ids.is_some() && ep.is_none() {
return li0;
}
if !crate::gpu_metal::chunk_run_gpu(&layers, &mut io, h, b, pos0, ep.as_ref()) {
return li0;
}
drop(io);
drop(layers);
// CPU caches stay the owners of record: append the chunk rows
// and bank the importance masses per layer.
for (i, (ok, ov, oi)) in store.iter().enumerate().take(n_run) {
let li = li0 + i;
let layer = &mut self.kv_cache.layers[li];
for bi in 0..b {
layer.append(
&ok[bi * row..(bi + 1) * row],
&ov[bi * row..(bi + 1) * row],
&[],
);
}
layer.accumulate_imp(oi);
}
last
}
/// Is layer `li` a sliding-window (local-RoPE) layer? Gemma-3:
/// every `pattern`-th layer is global, the rest are local.
fn layer_is_local(&self, li: usize) -> bool {
if let Some(layers) = &self.sliding_layers {
return layers.get(li).copied().unwrap_or(false);
}
match self.swa {
Some((_, pattern)) => (li + 1) % pattern.max(1) != 0,
None => false,
}
}
/// The RoPE table for layer `li` (local layers may have their own;
/// Gemma-4 global layers use the proportional padded table).
fn layer_inv_freq(&self, li: usize) -> std::sync::Arc<Vec<f32>> {
if self.layer_is_local(li) {
if let Some(f) = &self.inv_freq_local {
return f.clone();
}
} else if let Some(f) = &self.inv_freq_global {
return f.clone();
}
self.inv_freq.clone()
}
/// The attend window for layer `li` (None = full context).
fn layer_window(&self, li: usize) -> Option<usize> {
self.swa
.and_then(|(w, _)| self.layer_is_local(li).then_some(w))
}
fn layer_num_heads(&self, li: usize) -> usize {
self.attention_heads_per_layer
.as_ref()
.and_then(|v| v.get(li).copied())
.unwrap_or(self.num_heads)
}
fn layer_rope_scale(&self, li: usize) -> f32 {
if self.layer_is_local(li) {
self.rope_scale_local
} else {
self.rope_scale
}
}
/// Attention geometry of layer `li`: (num_kv_heads, head_dim,
/// rotary_dim). Gemma-4 global layers override all three.
fn layer_geom(&self, li: usize) -> (usize, usize, usize) {
if !self.layer_is_local(li) {
if let Some((ghd, gkv)) = self.global_attn {
return (gkv, ghd, ghd);
}
}
(
self.num_kv_heads,
self.head_dim,
if self.layer_is_local(li) {
self.rotary_dim_local.unwrap_or(self.rotary_dim)
} else {
self.rotary_dim
},
)
}
/// Forward one position through all layers (hybrid dispatch).
fn forward_layers(
&mut self,
hidden: &[f32],
position: usize,
task_mask: Option<&TaskMask>,
) -> Vec<f32> {
self.forward_layers_upto(hidden, position, task_mask, None)
}
/// Build the whole-token wgpu graph for a pure-attention q1 model (every
/// layer Full q1 + dense q1 FFN, no gate/bias). Returns the post-stack
/// hidden (caller does final norm + lm_head), or None to fall back.
fn try_token_graph_wgpu(
&self,
hidden: &[f32],
position: usize,
logits_out: &mut Vec<f32>,
) -> Option<Vec<f32>> {
// O(1) Nyström decode runs off the sealed state, not the KV cache the
// graph mirrors — never take the graph while o1 is active.
if self.o1_active() {
return None;
}
let nh = self.num_heads;
let (nkv, hd, rd) = self.layer_geom(0);
let gemma = self.norm_style == cortiq_core::NormStyle::Gemma;
let mut layers = Vec::with_capacity(self.num_layers);
let mut model = None;
let dbg = std::env::var("CMF_GRAPH_DEBUG").is_ok();
fn gw(t: &QTensor) -> Option<crate::gpu::GraphW<'_>> {
if let Some((_, i, kind, rs)) = t.graph_weight() {
return Some(crate::gpu::GraphW {
idx: i,
kind,
row_scale: rs,
data: &[],
});
}
// Small unquantized projections (GDN in_proj_a/b) stay f32.
t.as_f32().map(|d| crate::gpu::GraphW {
idx: 0,
kind: 4,
row_scale: &[],
data: d,
})
}
for li in 0..self.num_layers {
let lw = &self.weights.layers[self.phys_layer(li)];
if dbg {
let ak = match &lw.attn {
AttnKind::Full {
output_gate, bias, ..
} => format!("Full gate={output_gate} bias={}", bias.is_some()),
AttnKind::LinearGdn(_) => "LinearGdn".into(),
AttnKind::Linear(_) => "Linear".into(),
AttnKind::ShortConv(_) => "ShortConv".into(),
};
let fk = match &lw.ffn {
FfnKind::Dense(_) => "Dense",
FfnKind::Moe(_) => "Moe",
};
eprintln!("graph L{li}: attn={ak} ffn={fk}");
}
let (gate, up, down) = match &lw.ffn {
FfnKind::Dense(d) => (&d.gate_proj, &d.up_proj, &d.down_proj),
_ => return None,
};
let attn = match &lw.attn {
AttnKind::Full {
wq,
wk,
wv,
wo,
q_norm,
k_norm,
output_gate,
softplus_gate,
bias,
} => {
if softplus_gate.is_some() || self.attention_heads_per_layer.is_some() {
return None;
}
let (m, _, _, _) = wq.graph_weight()?;
model = Some(m.clone());
crate::gpu::GraphAttn::Full {
wq: gw(wq)?,
wk: gw(wk)?,
wv: gw(wv)?,
wo: gw(wo)?,
q_norm: q_norm.as_deref(),
k_norm: k_norm.as_deref(),
bias: bias
.as_ref()
.map(|(a, b, c)| (a.as_slice(), b.as_slice(), c.as_slice())),
output_gate: *output_gate,
cpu_k: self.kv_cache.layers[li].k_heads(),
cpu_v: self.kv_cache.layers[li].v_heads(),
}
}
AttnKind::LinearGdn(w) => {
let cfg = self.gdn_cfg?;
let (m, _, _, _) = w.in_proj_qkv.graph_weight()?;
model = Some(m.clone());
crate::gpu::GraphAttn::Gdn {
qkv: gw(&w.in_proj_qkv)?,
z: gw(&w.in_proj_z)?,
a: gw(&w.in_proj_a)?,
b: gw(&w.in_proj_b)?,
out: gw(&w.out_proj)?,
conv1d: &w.conv1d,
a_log: &w.a_log,
dt_bias: &w.dt_bias,
norm: &w.norm,
nv: cfg.num_v_heads,
nk: cfg.num_k_heads,
dk: cfg.key_head_dim,
dv: cfg.value_head_dim,
kk: cfg.conv_kernel,
}
}
_ => return None,
};
layers.push(crate::gpu::GraphLayer {
input_norm: &lw.input_norm,
attn,
post_norm: &lw.post_norm,
gate: gw(gate)?,
up: gw(up)?,
down: gw(down)?,
});
}
let model = model?;
// Fold final-norm + lm_head into the graph when this call wants logits
// and the lm_head is a graphable (quantized) weight — the graph then
// reads back logits (into logits_out) instead of the hidden, dropping
// the separate CPU/GPU lm_head op + its sync. Never the f32 fallback:
// an unquantized lm_head is vocab·hidden and must not be uploaded.
let lm_gw = if self.graph_want_logits
&& std::env::var("CMF_GPU_LMHEAD")
.map(|v| v != "0")
.unwrap_or(true)
{
self.weights.lm_head.graph_weight().map(|(_, i, kind, rs)| {
(
crate::gpu::GraphW {
idx: i,
kind,
row_scale: rs,
data: &[],
},
self.weights.lm_head.rows(),
)
})
} else {
None
};
let lm = lm_gw.as_ref().map(|(gw, rows)| (gw, *rows));
// Loop boundaries: virtual layer indices after which final_norm is applied
// (mid-stack only; the last layer's norm folds into lm_head).
let loop_norm_at: Vec<usize> = if self.loop_final_norm {
(0..self.num_layers - 1)
.filter(|&li| (li + 1) % self.physical_layers == 0)
.collect()
} else {
Vec::new()
};
let mut h = hidden.to_vec();
crate::gpu::forward_token_graph(
&model,
self.graph_kv_id,
&layers,
&self.inv_freq,
&mut h,
nh,
nkv,
hd,
rd,
self.hidden_size,
self.intermediate_size,
position,
self.kv_cache.max_seq_len,
gemma,
self.rms_eps as f32,
lm,
&self.weights.final_norm,
logits_out,
&loop_norm_at,
)
.then_some(h)
}
/// Batched prefill: k contiguous prompt positions through the whole wgpu
/// graph in ONE submit (projections/FFN as GEMMs). `hiddens` is [k·hidden]
/// in/out (embeddings in, layer output out); KV mirror / GDN state advance.
/// false ⇒ unsupported → caller keeps the per-position graph.
fn try_batch_graph_wgpu(&self, hiddens: &mut [f32], positions: &[usize], k: usize) -> bool {
if self.o1_active() {
return false;
}
let nh = self.num_heads;
let (nkv, hd, rd) = self.layer_geom(0);
let gemma = self.norm_style == cortiq_core::NormStyle::Gemma;
fn gw(t: &QTensor) -> Option<crate::gpu::GraphW<'_>> {
if let Some((_, i, kind, rs)) = t.graph_weight() {
return Some(crate::gpu::GraphW {
idx: i,
kind,
row_scale: rs,
data: &[],
});
}
t.as_f32().map(|d| crate::gpu::GraphW {
idx: 0,
kind: 4,
row_scale: &[],
data: d,
})
}
let built: Option<(
Vec<crate::gpu::GraphLayer<'_>>,
std::sync::Arc<cortiq_core::CmfModel>,
)> = (|| {
let mut layers = Vec::with_capacity(self.num_layers);
let mut model = None;
for li in 0..self.num_layers {
let lw = &self.weights.layers[self.phys_layer(li)];
let (gate, up, down) = match &lw.ffn {
FfnKind::Dense(d) => (&d.gate_proj, &d.up_proj, &d.down_proj),
_ => return None,
};
let attn = match &lw.attn {
AttnKind::Full {
wq,
wk,
wv,
wo,
q_norm,
k_norm,
output_gate,
softplus_gate,
bias,
} => {
if softplus_gate.is_some() || self.attention_heads_per_layer.is_some() {
return None;
}
let (m, _, _, _) = wq.graph_weight()?;
model = Some(m.clone());
crate::gpu::GraphAttn::Full {
wq: gw(wq)?,
wk: gw(wk)?,
wv: gw(wv)?,
wo: gw(wo)?,
q_norm: q_norm.as_deref(),
k_norm: k_norm.as_deref(),
bias: bias
.as_ref()
.map(|(a, b, c)| (a.as_slice(), b.as_slice(), c.as_slice())),
output_gate: *output_gate,
cpu_k: self.kv_cache.layers[li].k_heads(),
cpu_v: self.kv_cache.layers[li].v_heads(),
}
}
AttnKind::LinearGdn(w) => {
let cfg = self.gdn_cfg?;
let (m, _, _, _) = w.in_proj_qkv.graph_weight()?;
model = Some(m.clone());
crate::gpu::GraphAttn::Gdn {
qkv: gw(&w.in_proj_qkv)?,
z: gw(&w.in_proj_z)?,
a: gw(&w.in_proj_a)?,
b: gw(&w.in_proj_b)?,
out: gw(&w.out_proj)?,
conv1d: &w.conv1d,
a_log: &w.a_log,
dt_bias: &w.dt_bias,
norm: &w.norm,
nv: cfg.num_v_heads,
nk: cfg.num_k_heads,
dk: cfg.key_head_dim,
dv: cfg.value_head_dim,
kk: cfg.conv_kernel,
}
}
_ => return None,
};
layers.push(crate::gpu::GraphLayer {
input_norm: &lw.input_norm,
attn,
post_norm: &lw.post_norm,
gate: gw(gate)?,
up: gw(up)?,
down: gw(down)?,
});
}
Some((layers, model?))
})();
let Some((layers, model)) = built else {
return false;
};
crate::gpu::forward_batch_graph(
&model,
self.graph_kv_id,
&layers,
&self.inv_freq,
hiddens,
nh,
nkv,
hd,
rd,
self.hidden_size,
self.intermediate_size,
positions,
self.kv_cache.max_seq_len,
gemma,
self.rms_eps as f32,
k,
)
}
/// Same, stopping after layer `upto` inclusive (routing probe φ).
fn forward_layers_upto(
&mut self,
hidden: &[f32],
position: usize,
task_mask: Option<&TaskMask>,
upto: Option<usize>,
) -> Vec<f32> {
let mut h = hidden.to_vec();
// Split borrows: copy scalars / clone handles so the per-layer
// cfg does not hold `&self` while the KV cache is `&mut`.
let (nh, _nkv, _hd, hs, _rd, eps) = (
self.num_heads,
self.num_kv_heads,
self.head_dim,
self.hidden_size,
self.rotary_dim,
self.rms_eps,
);
let pool = self.pool.clone();
// Opt-in wgpu token-graph attention (discrete Vulkan/DX12): the whole
// attention sub-block runs resident in one submit. Off by default.
// Whole-token wgpu graph: eligibility + arbitration.
// - explicit CMF_GPU_WGPU_GRAPH forces it on/off;
// - discrete adapters (4090: decode 76 -> 137 tok/s) and GDN
// hybrids (recurrent state device-resident, no CPU twin to
// race) TRUST it;
// - integrated/mobile adapters RACE it against the normal path
// at generation granularity (gpu::graph_race_*) — tiled
// mobile GPUs can turn the ~300-dispatch graph into seconds
// per token, while a fast phone GPU keeps its win.
let graph_env = std::env::var("CMF_GPU_WGPU_GRAPH").ok();
let graph_on = match graph_env.as_deref() {
Some("0") => false,
Some(_) => true,
None => {
crate::pipeline::GLOBAL_USE_GPU.load(std::sync::atomic::Ordering::Relaxed)
|| crate::gpu::wgpu_active()
}
};
let graph_trusted =
graph_env.is_some() || crate::gpu::wgpu_graph_default() || self.gdn_cfg.is_some();
let race_eligible = graph_on && upto.is_none() && task_mask.is_none();
if race_eligible && crate::gpu::graph_race_use_graph(graph_trusted) {
let t_graph = std::time::Instant::now();
let mut lg = Vec::new();
if let Some(hh) = self.try_token_graph_wgpu(hidden, position, &mut lg) {
let dur = t_graph.elapsed();
if graph_trusted || !crate::gpu::graph_race_first_token_hopeless(dur) {
if !graph_trusted {
crate::gpu::graph_race_record(true, dur);
}
if !lg.is_empty() {
// Graph produced logits (final-norm + lm_head folded in) —
// pad/cap to vocab and hand them to the sampler directly.
lg.resize(self.vocab_size, 0.0);
if let Some(c) = self.final_softcap {
for l in lg.iter_mut() {
*l = c * (*l / c).tanh();
}
}
self.graph_logits = Some(lg);
}
return hh;
}
// Hopeless first graph token: discard it and fall through
// to the normal path. Safe exactly here — the prompt KV is
// still CPU-owned (chunked prefill), so recomputing this
// position is exact; the mirror's extra row is never read
// (the race just settled on the normal path).
}
}
let t_race_cpu = (race_eligible && !graph_trusted).then(std::time::Instant::now);
#[cfg(target_os = "macos")]
let mut gpu_skip_until = 0usize;
for li in 0..self.num_layers {
crate::gpu::set_layer(li as i64); // layer-split GPU/CPU (CMF_GPU_LAYERS)
if let Some(u) = upto {
if li > u {
break;
}
}
if let Some(mask) = task_mask {
if !mask.layer_alive(li) {
continue; // dead layer: residual pass-through
}
}
// Whole-block q1 token graph: a run of consecutive q1
// layers — GDN and full attention — executes with one sync
// per CPU attend instead of per op (macOS/Metal).
#[cfg(target_os = "macos")]
{
if li < gpu_skip_until {
continue;
}
if task_mask.is_none() {
let end = self.q1_graph_gpu(li, upto, position, &mut h);
if end > li {
gpu_skip_until = end;
// Looped Transformer: the graph stopped at a loop
// boundary — apply final norm before the next iteration.
if self.is_loop_end(end - 1) && end < self.num_layers {
h = inference::rms_norm(
&h,
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
);
}
continue;
}
}
}
let lw = &self.weights.layers[self.phys_layer(li)];
// Norm into the pipeline scratch — the returning rms_norm
// allocated twice per layer per token (roadmap §3 P0).
inference::rms_norm_into(
&h,
&lw.input_norm,
self.rms_eps,
self.norm_style,
&mut self.ws.n1,
);
let attn_out = match &lw.attn {
AttnKind::Linear(w) => {
let cfg = self.vmf_cfg.expect("linear layer without vmf_cfg");
vmf_phase_forward(
&self.ws.n1,
w,
&cfg,
&mut self.kv_cache.layers[li].linear_state,
self.pool.as_deref(),
)
}
AttnKind::LinearGdn(w) => {
let cfg = self.gdn_cfg.expect("gdn layer without gdn_cfg");
gdn_forward(
&self.ws.n1,
w,
&cfg,
&mut self.kv_cache.layers[li].linear_state,
self.pool.as_deref(),
)
}
AttnKind::ShortConv(w) => {
let cfg = self
.short_conv_cfg
.expect("short-conv layer without short_conv_cfg");
short_conv_forward(
&self.ws.n1,
w,
&cfg,
&mut self.kv_cache.layers[li].linear_state,
self.pool.as_deref(),
)
}
AttnKind::Full {
wq,
wk,
wv,
wo,
q_norm,
k_norm,
output_gate,
softplus_gate,
bias,
} if self.kv_cache.layers[li].o1_sealed() => {
// O(1) override: decode on the sealed Nyström state
// instead of the growing KV cache.
let inv_freq_l = self.layer_inv_freq(li);
let (nkv_l, hd_l, rd_l) = self.layer_geom(li);
let cfg = QwenAttnCfg {
num_heads: self.layer_num_heads(li),
num_kv_heads: nkv_l,
head_dim: hd_l,
hidden_size: hs,
position,
inv_freq: &inv_freq_l,
rotary_dim: rd_l,
scale: self.attn_scale,
window: None,
v_norm: self.attn_v_norm,
q_norm: q_norm.as_deref(),
k_norm: k_norm.as_deref(),
output_gate: *output_gate,
softplus_gate: softplus_gate
.as_ref()
.map(|(gate, per_head)| (gate, *per_head)),
rope_scale: self.layer_rope_scale(li),
bias: bias
.as_ref()
.map(|(a, b, c)| (a.as_slice(), b.as_slice(), c.as_slice())),
rms_eps: eps,
norm_style: self.norm_style,
pool: pool.as_deref(),
};
attention::qwen_attention_nystrom(
&self.ws.n1,
wq,
wk,
wv,
wo,
&mut self.kv_cache.layers[li],
&cfg,
)
}
AttnKind::Full {
wq,
wk,
wv,
wo,
q_norm,
k_norm,
output_gate,
softplus_gate,
bias,
} => 'attn: {
// wgpu token-graph attention (opt-in): whole sub-block in
// one submit, device K/V mirror. q1 only, no gate/bias/mask.
if graph_on
&& !*output_gate
&& softplus_gate.is_none()
&& self.attention_heads_per_layer.is_none()
&& bias.is_none()
&& task_mask.is_none()
{
let inv_freq_l = self.layer_inv_freq(li);
let (nkv_l, hd_l, rd_l) = self.layer_geom(li);
let gemma = self.norm_style == cortiq_core::NormStyle::Gemma;
if let (Some((gm, qi)), Some((_, ki)), Some((_, vi)), Some((_, oi))) = (
wq.mapped_q1(),
wk.mapped_q1(),
wv.mapped_q1(),
wo.mapped_q1(),
) {
let gm = gm.clone();
let mut out = vec![0f32; hs];
let cache = &self.kv_cache.layers[li];
if crate::gpu::attn_dropin(
&gm,
self.graph_kv_id,
li,
&self.ws.n1,
qi,
ki,
vi,
oi,
q_norm.as_deref(),
k_norm.as_deref(),
&inv_freq_l,
nh,
nkv_l,
hd_l,
rd_l,
hs,
position,
self.kv_cache.max_seq_len,
gemma,
eps as f32,
cache.k_heads(),
cache.v_heads(),
&mut out,
) {
break 'attn out;
}
}
}
let masked = task_mask
.map(|m| m.head_flags(li, self.num_heads).iter().any(|&a| !a))
.unwrap_or(false);
let f32_view = (wq.as_f32(), wk.as_f32(), wv.as_f32(), wo.as_f32());
match (masked, f32_view) {
// Historical masked path (f32 slices; the loader
// keeps masked models in f32).
(true, (Some(q), Some(k), Some(v), Some(o))) => {
let active_heads = task_mask.unwrap().head_flags(li, self.num_heads);
attention::multi_head_attention(
&self.ws.n1,
q,
k,
v,
o,
&mut self.kv_cache.layers[li],
self.num_heads,
self.num_kv_heads,
self.head_dim,
self.hidden_size,
position,
&active_heads,
&self.inv_freq,
)
}
(masked, _) => {
if masked {
tracing::warn!(
"layer {li}: head mask on quantized weights not \
supported yet — executing dense"
);
}
let inv_freq_l = self.layer_inv_freq(li);
let (nkv_l, hd_l, rd_l) = self.layer_geom(li);
let cfg = QwenAttnCfg {
num_heads: self.layer_num_heads(li),
num_kv_heads: nkv_l,
head_dim: hd_l,
hidden_size: hs,
position,
inv_freq: &inv_freq_l,
rotary_dim: rd_l,
scale: self.attn_scale,
window: self.layer_window(li),
v_norm: self.attn_v_norm,
q_norm: q_norm.as_deref(),
k_norm: k_norm.as_deref(),
output_gate: *output_gate,
softplus_gate: softplus_gate
.as_ref()
.map(|(gate, per_head)| (gate, *per_head)),
rope_scale: self.layer_rope_scale(li),
bias: bias
.as_ref()
.map(|(a, b, c)| (a.as_slice(), b.as_slice(), c.as_slice())),
rms_eps: eps,
norm_style: self.norm_style,
pool: pool.as_deref(),
};
attention::qwen_attention(
&self.ws.n1,
wq,
wk,
wv,
wo,
&mut self.kv_cache.layers[li],
&cfg,
)
}
}
}
};
// Gemma sandwich norm: normalize the attention branch before
// it joins the residual stream.
let attn_out = match &self.weights.layers[self.phys_layer(li)].attn_out_norm {
Some(w) => inference::rms_norm(&attn_out, w, self.rms_eps, self.norm_style),
None => attn_out,
};
let lw = &self.weights.layers[self.phys_layer(li)];
inference::add_rmsnorm_fused_into(
&mut h,
&attn_out,
&lw.post_norm,
self.rms_eps,
self.norm_style,
&mut self.ws.p1,
);
let mut attn_out = attn_out;
attention::recycle_buf(&mut attn_out);
let post_normed = &self.ws.p1;
let ffn_masked = task_mask
.map(|m| m.ffn_active_count(li) < self.intermediate_size)
.unwrap_or(false);
// Sparse mask path applies to dense f32 FFN only; MoE
// layers route through the normal dispatch below.
let f32_ffn = match &lw.ffn {
FfnKind::Dense(d) => (
d.gate_proj.as_f32(),
d.up_proj.as_f32(),
d.down_proj.as_f32(),
),
FfnKind::Moe(_) => (None, None, None),
};
let ffn_out = match (ffn_masked, f32_ffn) {
(true, (Some(g), Some(u), Some(d))) => {
let active = task_mask.unwrap().ffn_active_indices(li);
inference::sparse_ffn_forward(
post_normed,
g,
u,
d,
self.hidden_size,
self.intermediate_size,
&active,
self.pool.as_deref(),
)
}
// Mask × quantized mmap: sparse FFN reads only active
// neurons' rows/cols directly from the quant bytes — no
// f32 model copy (a masked big model runs at quant RSS).
(true, _) => match &lw.ffn {
FfnKind::Dense(d) if d.down_proj.sparse_col_ok() => {
let active = task_mask.unwrap().ffn_active_indices(li);
sparse_ffn_quant(
d,
post_normed,
&active,
self.hidden_size,
self.pool.as_deref(),
)
}
// q4/vbit down_proj has no cheap column access → dequant
// the three matrices to f32 (transient) and run the f32
// sparse path. Correct (mask honored), just not
// memory-lean for those dtypes — a rare masked case.
FfnKind::Dense(d) => {
let active = task_mask.unwrap().ffn_active_indices(li);
let (gf, uf, df) = dequant_dense_f32(d);
inference::sparse_ffn_forward(
post_normed,
&gf,
&uf,
&df,
self.hidden_size,
self.intermediate_size,
&active,
self.pool.as_deref(),
)
}
FfnKind::Moe(_) => {
// MoE is already sparse by expert selection; masks
// don't apply to routed experts.
ffn_forward(&lw.ffn, post_normed, self.pool.as_deref())
}
},
(false, _) => ffn_forward(&lw.ffn, post_normed, self.pool.as_deref()),
};
let ffn_out = match &self.weights.layers[self.phys_layer(li)].ffn_out_norm {
Some(w) => inference::rms_norm(&ffn_out, w, self.rms_eps, self.norm_style),
None => ffn_out,
};
for (i, &f) in ffn_out.iter().enumerate() {
h[i] += f;
}
let mut ffn_out = ffn_out;
attention::recycle_buf(&mut ffn_out);
// Gemma-4: the layer output is scaled by a learned scalar.
if let Some(sc) = self.weights.layers[self.phys_layer(li)].layer_scale {
for v in h.iter_mut() {
*v *= sc;
}
}
// Looped Transformer: apply final norm at the end of each loop iteration.
// Nanbeige 4.2: after layer 21 (virtual), apply norm before looping back to layer 0.
if self.is_loop_end(li) && li + 1 < self.num_layers {
h = inference::rms_norm(
&h,
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
);
}
// Dynamic routing φ capture (on-policy, fireball-style): the
// EMA of the post-residual hidden at the router's phi_layer,
// updated as the context evolves during decode.
if self.dyn_phi_layer == Some(li) {
self.update_dyn_phi(&h);
}
}
crate::gpu::set_layer(-1); // layers done — lm_head outside layer-split
if let Some(t) = t_race_cpu {
crate::gpu::graph_race_record(false, t.elapsed());
}
h
}
/// EMA of φ at the router layer (rolling, weight 0.2 = ~5-token
/// horizon). First observation seeds it exactly.
fn update_dyn_phi(&mut self, h: &[f32]) {
const A: f32 = 0.2;
if self.dyn_phi_ema.len() != h.len() {
self.dyn_phi_ema = vec![0.0; h.len()];
self.dyn_phi_seen = 0;
}
if self.dyn_phi_seen == 0 {
self.dyn_phi_ema.copy_from_slice(h);
} else {
for (e, &v) in self.dyn_phi_ema.iter_mut().zip(h) {
*e = (1.0 - A) * *e + A * v;
}
}
self.dyn_phi_seen += 1;
}
/// Current router φ (EMA at phi_layer); empty until first capture.
pub fn dyn_phi(&self) -> &[f32] {
&self.dyn_phi_ema
}
/// Enable/disable φ capture at the router layer, reset the EMA.
pub fn set_dyn_phi_layer(&mut self, layer: Option<usize>) {
self.dyn_phi_layer = layer;
self.dyn_phi_ema.clear();
self.dyn_phi_seen = 0;
}
/// Skills eligible for dynamic switching: (index, id, phi_layer).
pub fn dynamic_skills(&self) -> Vec<(usize, String, usize)> {
let Some(model) = &self.model else {
return Vec::new();
};
model
.header
.skills
.iter()
.enumerate()
.filter_map(|(i, sk)| {
let ok = matches!(self.dyn_skill_layers.get(i), Some(Some(_)));
let sel = sk.selection.as_ref()?;
(ok).then(|| (i, sk.id.clone(), sel.phi_layer))
})
.collect()
}
/// Index of the currently overlaid skill (None = backbone).
pub fn active_skill(&self) -> Option<usize> {
self.dyn_active
}
/// Enable dynamic per-token skill routing: build the hysteresis
/// router from the container's routable skills, start φ capture at
/// their (shared) phi_layer. Returns the number of routable skills
/// (0 = nothing to route; router stays off). Idempotent.
pub fn enable_dynamic_routing(&mut self) -> usize {
use crate::swarm::{DynRouter, RoutableSkill};
let Some(model) = self.model.clone() else {
return 0;
};
// A blend materialized f32 working tensors into the layers; there
// is no single skill index to revert from → refuse (honest).
if self.dyn_blend_loaded {
tracing::warn!("dynamic routing unavailable on a blend-loaded pipeline");
return 0;
}
// A statically-overlaid skill that is NOT FFN-eligible can't be
// cheaply reverted at generation start → refuse rather than
// silently keep it overlaid.
if let Some(a) = self.dyn_active {
if !matches!(self.dyn_skill_layers.get(a), Some(Some(_))) {
tracing::warn!("loaded skill is not FFN-eligible — dynamic routing unavailable");
return 0;
}
}
let hidden = self.hidden_size;
let mut skills = Vec::new();
for (idx, id, _phi) in self.dynamic_skills() {
if let Some(sel) = model.header.skills[idx].selection.as_ref() {
if let Some(rs) = RoutableSkill::from_descriptor(idx, id, sel, hidden) {
skills.push(rs);
}
}
}
if skills.is_empty() {
return 0;
}
// Skills should share a phi_layer; warn (not fail) if they don't.
let phi = skills[0].phi_layer;
if skills.iter().any(|s| s.phi_layer != phi) {
tracing::warn!("routable skills disagree on phi_layer; using {phi}");
}
let n = skills.len();
self.set_dyn_phi_layer(Some(phi));
self.dyn_router = Some(DynRouter::new(skills));
n
}
/// Human-readable switch log from the last dynamic-routed generation.
pub fn route_switches(&self) -> Vec<(usize, Option<String>, Option<String>)> {
self.dyn_router
.as_ref()
.map(|r| r.switches.clone())
.unwrap_or_default()
}
/// LM head: hidden → logits [vocab_size]. The dominant matvec of
/// every decode step — row-parallel on the worker pool.
fn lm_head_forward(&self, hidden: &[f32]) -> Vec<f32> {
let rows = self.weights.lm_head.rows();
let mut logits = attention::take_buf(rows.min(self.vocab_size));
self.weights
.lm_head
.matvec(hidden, &mut logits, self.pool.as_deref());
logits.resize(self.vocab_size, 0.0);
if let Some(c) = self.final_softcap {
for l in logits.iter_mut() {
*l = c * (*l / c).tanh();
}
}
logits
}
/// Prefill `ids` and return the next-token logits — what the model
/// would predict next, WITHOUT committing to generation (introspection
/// for `cortiq explain`). Clears and repopulates the KV cache; leaves
/// the active overlay untouched.
pub fn prefill_next_logits(&mut self, ids: &[u32], task_mask: Option<&TaskMask>) -> Vec<f32> {
self.kv_cache.clear();
let mut hidden = vec![0.0f32; self.hidden_size];
for (pos, &id) in ids.iter().enumerate() {
let emb = self.embed_single(id);
hidden = self.forward_layers(&emb, pos, task_mask);
}
inference::rms_norm_into(
&hidden,
&self.weights.final_norm,
self.rms_eps,
self.norm_style,
&mut self.ws.n1,
);
self.lm_head_forward(&self.ws.n1)
}
}
/// Convenience: deterministic tiny pipeline for tests.
pub fn create_test_pipeline(
hidden_size: usize,
intermediate_size: usize,
num_heads: usize,
num_kv_heads: usize,
head_dim: usize,
num_layers: usize,
vocab_size: usize,
) -> Pipeline {
// Small pseudo-random weights: constant weights make attention
// degenerate and hide indexing bugs.
let synth = |n: usize, salt: usize| -> Vec<f32> {
(0..n)
.map(|i| (((i * 31 + salt * 17 + 7) % 97) as f32 / 97.0 - 0.5) * 0.2)
.collect()
};
let qt = |rows: usize, cols: usize, salt: usize| -> QTensor {
QTensor::from_f32(synth(rows * cols, salt), rows, cols)
};
let layer_weights: Vec<LayerWeights> = (0..num_layers)
.map(|li| LayerWeights {
input_norm: vec![1.0; hidden_size],
post_norm: vec![1.0; hidden_size],
attn_out_norm: None,
ffn_out_norm: None,
layer_scale: None,
ffn: FfnKind::Dense(DenseFfn {
gate_proj: qt(intermediate_size, hidden_size, li * 10 + 5),
up_proj: qt(intermediate_size, hidden_size, li * 10 + 6),
down_proj: qt(hidden_size, intermediate_size, li * 10 + 7),
act: Act::Silu,
}),
attn: AttnKind::Full {
bias: None,
wq: qt(num_heads * head_dim, hidden_size, li * 10 + 1),
wk: qt(num_kv_heads * head_dim, hidden_size, li * 10 + 2),
wv: qt(num_kv_heads * head_dim, hidden_size, li * 10 + 3),
wo: qt(hidden_size, num_heads * head_dim, li * 10 + 4),
q_norm: None,
k_norm: None,
output_gate: false,
softplus_gate: None,
},
})
.collect();
Pipeline::new(
Tokenizer::byte_level(),
PipelineWeights {
embed_tokens: qt(vocab_size, hidden_size, 100),
layers: layer_weights,
lm_head: qt(vocab_size, hidden_size, 200),
final_norm: vec![1.0; hidden_size],
},
hidden_size,
intermediate_size,
num_heads,
num_kv_heads,
head_dim,
num_layers,
num_layers, // physical_layers = num_layers (non-looped)
false, // loop_final_norm
vocab_size,
1e-6,
10_000.0,
NormStyle::Qwen,
4096,
SamplerConfig {
seed: Some(42),
..Default::default()
},
)
}
/// Batched dense-FFN: gate/up/down via matmat (element-wise the same
/// math as b × dense_ffn — the same dot kernels).
fn dense_ffn_batch(d: &DenseFfn, xs: &[f32], b: usize, pool: Option<&Pool>) -> Vec<f32> {
let inter = d.gate_proj.rows();
let hidden = d.down_proj.rows();
let mut g = vec![0.0f32; b * inter];
d.gate_proj.matmat(xs, b, &mut g, pool);
let mut u = vec![0.0f32; b * inter];
d.up_proj.matmat(xs, b, &mut u, pool);
for i in 0..b * inter {
g[i] = d.act.apply(g[i]) * u[i];
}
let mut out = vec![0.0f32; b * hidden];
d.down_proj.matmat(&g, b, &mut out, pool);
out
}
/// Batched MoE-FFN: router batched, positions are GROUPED by expert —
/// an expert's weights are read once for all its positions in the chunk
/// (the main prefill-GEMM win on MoE: 960MB/token of 35B experts).
fn moe_ffn_batch(m: &MoeFfn, xs: &[f32], b: usize, hidden: usize, pool: Option<&Pool>) -> Vec<f32> {
let ne = m.experts.len();
let mut logits = vec![0.0f32; b * ne];
m.router.matmat(xs, b, &mut logits, pool);
// Assignments: expert → [(position, weight)] — same routing as
// moe_ffn, per position (see `moe_route`).
let mut assign: Vec<Vec<(usize, f32)>> = vec![Vec::new(); ne];
{
let mut st = m.stats.borrow_mut();
if st.len() < ne {
st.resize(ne, 0);
}
for bi in 0..b {
let (idx, p, wsum) = moe_route(&logits[bi * ne..(bi + 1) * ne], m);
for &e in &idx {
st[e] += 1;
assign[e].push((bi, p[e] / wsum));
}
}
}
let mut out = vec![0.0f32; b * hidden];
let cols = m.experts[0].gate_proj.cols();
let mut run_expert = |d: &DenseFfn, list: &[(usize, f32)]| {
let sb = list.len();
let mut sub = vec![0.0f32; sb * cols];
for (k, &(bi, _)) in list.iter().enumerate() {
sub[k * cols..(k + 1) * cols].copy_from_slice(&xs[bi * cols..(bi + 1) * cols]);
}
let eo = dense_ffn_batch(d, &sub, sb, pool);
for (k, &(bi, w)) in list.iter().enumerate() {
for i in 0..hidden {
out[bi * hidden + i] += w * eo[k * hidden + i];
}
}
};
for (e, a) in assign.iter().enumerate().take(ne) {
if !a.is_empty() {
run_expert(&m.experts[e], a);
}
}
if let Some((se, gate)) = &m.shared {
let all: Vec<(usize, f32)> = if let Some(gate) = gate {
let mut gl = vec![0.0f32; b];
gate.matmat(xs, b, &mut gl, pool);
(0..b)
.map(|bi| (bi, 1.0 / (1.0 + (-gl[bi]).exp())))
.collect()
} else {
(0..b).map(|bi| (bi, 1.0)).collect()
};
run_expert(se, &all);
}
out
}
thread_local! {
/// gate/up activation scratch for the dense FFN paths (single uses
/// two slots, the fused pair all four) — these were fresh
/// intermediate-size Vecs on every layer of every token.
static FFN_SCRATCH: std::cell::RefCell<[Vec<f32>; 4]> =
const { std::cell::RefCell::new([Vec::new(), Vec::new(), Vec::new(), Vec::new()]) };
}
/// Dense SwiGLU FFN through QTensor matvecs (any storage).
fn dense_ffn(d: &DenseFfn, x: &[f32], pool: Option<&Pool>) -> Vec<f32> {
// Whole-FFN GPU submit (этап 4.2 increment): gate → silu·up → down
// chained in ONE command buffer with the intermediate activations
// resident on the device — 3 per-op polls become 1 per layer. The
// moe_block backend already implements exactly this chain; a dense
// FFN is one expert with weight 1. Runtime probe: the chain still
// pays one submit+poll per layer — alternate it against the pure-CPU
// FFN and keep whichever is faster on this machine.
// q1 FFNs offload at any practical size: the q1 CPU kernel is
// compute-bound, so the UMA threshold logic does not apply — the
// probe measures and decides either way.
if crate::gpu::enabled_here()
&& (d.gate_proj.rows() >= crate::gpu::min_rows() || d.gate_proj.is_q1())
{
let arm = if d.gate_proj.is_q1() && crate::gpu::q1_force() {
crate::gpu::ProbeArm::Gpu
} else {
crate::gpu::probe_arm(crate::gpu::OpClass::Ffn)
};
match arm {
crate::gpu::ProbeArm::Gpu => {
let t0 = std::time::Instant::now();
if let Some(out) = dense_ffn_gpu(d, x, pool) {
crate::gpu::probe_record(crate::gpu::OpClass::Ffn, true, t0.elapsed());
return out;
}
}
crate::gpu::ProbeArm::CpuTimed => {
let t0 = std::time::Instant::now();
let out = crate::gpu::cpu_scope(|| dense_ffn_cpu(d, x, pool));
crate::gpu::probe_record(crate::gpu::OpClass::Ffn, false, t0.elapsed());
return out;
}
crate::gpu::ProbeArm::Cpu => {
return crate::gpu::cpu_scope(|| dense_ffn_cpu(d, x, pool));
}
}
}
dense_ffn_cpu(d, x, pool)
}
/// The pure-CPU dense-FFN body (also the fallback of every GPU refusal).
fn dense_ffn_cpu(d: &DenseFfn, x: &[f32], pool: Option<&Pool>) -> Vec<f32> {
let inter = d.gate_proj.rows();
FFN_SCRATCH.with(|s| {
let mut s = s.borrow_mut();
let [g, u, ..] = &mut *s;
g.resize(inter, 0.0);
// Fused gate+up+silu: one dispatch, no separate silu pass.
// Falls back to matvec_many + silu loop for unsupported dtypes.
if d.act == Act::Silu && QTensor::matvec_silu_mul(&d.gate_proj, &d.up_proj, x, g, pool) {
// g now holds silu(gate)·up directly.
} else {
u.resize(inter, 0.0);
// Multi-matrix job: gate+up under one pool dispatch.
QTensor::matvec_many([&d.gate_proj, &d.up_proj], x, [g, u], pool);
for i in 0..inter {
g[i] = d.act.apply(g[i]) * u[i];
}
}
// DTG-MA bake probe (Patent 2): accumulate this layer's
// per-neuron activation mass while a probe pass is active.
FFN_PROBE.with(|pr| {
if let Some(acc) = pr.borrow_mut().as_mut() {
let li = crate::gpu::cur_layer();
if li >= 0 {
if let Some(row) = acc.get_mut(li as usize) {
for (a, &v) in row.iter_mut().zip(g.iter()) {
*a += (v as f64).abs();
}
}
}
}
});
let mut out = attention::take_buf(d.down_proj.rows());
d.down_proj.matvec(g, &mut out, pool);
out
})
}
thread_local! {
/// DTG-MA activation probe: per-layer per-neuron Σ|silu(g)·u|
/// accumulator, alive only during `Pipeline::probe_ffn_mass`.
static FFN_PROBE: std::cell::RefCell<Option<Vec<Vec<f64>>>> =
const { std::cell::RefCell::new(None) };
}
/// Dense FFN as one GPU submission via the MoE block path (single
/// expert, weight 1.0): gate → silu·up → down chained in one command
/// buffer, intermediate activations device-resident. None → weights
/// not q8-mapped in the primary shard / over the VRAM budget / backend
/// refusal → honest CPU path.
fn dense_ffn_gpu(d: &DenseFfn, x: &[f32], _pool: Option<&Pool>) -> Option<Vec<f32>> {
// The GPU block hardcodes SiLU; GeLU FFNs (Gemma) stay on CPU.
if d.act != Act::Silu {
return None;
}
// Threshold: tiny FFNs are not worth a submission (q1 excepted —
// see the caller's gate).
if d.gate_proj.rows() < crate::gpu::min_rows() && !d.gate_proj.is_q1() {
return None;
}
let mut jobs: Vec<crate::gpu::MoeJob> = Vec::with_capacity(1);
let mut model_ref = None;
moe_push_job(d, x, 1.0, &mut jobs, &mut model_ref)?;
let model = model_ref?;
let hidden = jobs[0].down.1;
let mut out = attention::take_buf(hidden);
if crate::gpu::moe_block(&model, &jobs, &mut out) {
Some(out)
} else {
let mut out = out;
attention::recycle_buf(&mut out);
None
}
}
/// q8-mapped primary-shard tensor parts for a GPU job: q8_2f carries
/// its column field, q8_row runs with empty col slices (the backend
/// skips the multiply). Shared by the MoE block and the dense-FFN
/// single-job path.
#[allow(clippy::type_complexity)]
#[allow(clippy::type_complexity)]
fn moe_parts(
t: &QTensor,
) -> Option<(
&std::sync::Arc<cortiq_core::CmfModel>,
usize,
usize,
usize,
&[f32],
&[f32],
bool,
)> {
match t {
QTensor::Mapped {
model,
idx,
dtype: dt @ (cortiq_core::TensorDtype::Q8_2f | cortiq_core::TensorDtype::Q8Row),
rows,
cols,
row_scale,
col_field,
..
} if (*dt == cortiq_core::TensorDtype::Q8Row) || !col_field.is_empty() => {
Some((model, *idx, *rows, *cols, row_scale, col_field, false))
}
// q1: tile-embedded scales — empty rs/col slices, raw xs.
QTensor::Mapped {
model,
idx,
dtype: cortiq_core::TensorDtype::Q1,
rows,
cols,
..
} => Some((model, *idx, *rows, *cols, &[][..], &[][..], true)),
_ => None,
}
}
/// Build one gate/up/down GPU job (see `moe_parts`).
fn moe_push_job<'a>(
d: &'a DenseFfn,
x: &[f32],
w: f32,
jobs: &mut Vec<crate::gpu::MoeJob<'a>>,
model_ref: &mut Option<std::sync::Arc<cortiq_core::CmfModel>>,
) -> Option<()> {
use crate::qtensor::prescale;
if d.act != Act::Silu {
return None; // GPU block hardcodes SiLU
}
let (gm, gi, gr, gc, grs, gcf, gq1) = moe_parts(&d.gate_proj)?;
let (_, ui, ur, uc, urs, ucf, uq1) = moe_parts(&d.up_proj)?;
let (_, di, dr, dc, drs, dcf, dq1) = moe_parts(&d.down_proj)?;
if gq1 != uq1 || uq1 != dq1 {
return None; // mixed-dtype trio — honest CPU path
}
model_ref.get_or_insert_with(|| gm.clone());
let gdt = if gcf.is_empty() {
cortiq_core::TensorDtype::Q8Row
} else {
cortiq_core::TensorDtype::Q8_2f
};
let udt = if ucf.is_empty() {
cortiq_core::TensorDtype::Q8Row
} else {
cortiq_core::TensorDtype::Q8_2f
};
jobs.push(crate::gpu::MoeJob {
gate: (gi, gr, gc, grs),
up: (ui, ur, uc, urs),
down: (di, dr, dc, drs),
xs_gate: prescale(x, gcf, gdt).into_owned(),
xs_up: prescale(x, ucf, udt).into_owned(),
down_col: dcf,
w,
q1: gq1,
});
Some(())
}
/// Sparse dense-FFN directly on QUANTIZED weights (mask × mmap): reads
/// ONLY the active neurons' gate/up rows and down columns from the mmap
/// — no full-matrix dequant, no f32 model copy. This is what lets a
/// masked big model run at quantized RSS (the historical mask path
/// forced the whole model to f32). Semantics identical to the f32
/// sparse path within quant tolerance.
fn sparse_ffn_quant(
d: &DenseFfn,
x: &[f32],
active: &[u16],
hidden: usize,
pool: Option<&Pool>,
) -> Vec<f32> {
let n = active.len();
let inter = d.gate_proj.rows();
let mut act = vec![0.0f32; n];
// Scratch is needed if EITHER projection is group-packed (q4/vbit);
// gate/up normally share a dtype but sizing on both is robust.
let need_scratch = !(d.gate_proj.sparse_col_ok() && d.up_proj.sparse_col_ok());
let compute = |ai: usize| -> f32 {
let idx = active[ai] as usize;
if idx >= inter {
return 0.0; // defensive parity with the f32 sparse path
}
let mut s = if need_scratch {
vec![0.0f32; hidden]
} else {
Vec::new()
};
let gate = d.gate_proj.row_dot(idx, x, &mut s);
let up = d.up_proj.row_dot(idx, x, &mut s);
d.act.apply(gate) * up
};
match pool {
Some(p) if n >= 256 => {
let ptr = SendMut(act.as_mut_ptr());
p.run(&|widx, nw| {
let chunk = n.div_ceil(nw);
let (s, e) = (widx * chunk, ((widx + 1) * chunk).min(n));
for ai in s..e {
unsafe { *ptr.at(ai) = compute(ai) };
}
});
}
_ => {
for (ai, a) in act.iter_mut().enumerate() {
*a = compute(ai);
}
}
}
// Scatter through active down columns (reads only those columns).
let mut out = vec![0.0f32; hidden];
for (ai, &idx) in active.iter().enumerate() {
let w = act[ai];
if w.abs() >= 1e-12 && (idx as usize) < inter {
d.down_proj.add_col_scaled(idx as usize, w, &mut out);
}
}
out
}
/// Test-only re-export of the private sparse-quant FFN (mask × mmap gate).
#[doc(hidden)]
pub fn sparse_ffn_quant_for_test(
d: &DenseFfn,
x: &[f32],
active: &[u16],
hidden: usize,
) -> Vec<f32> {
sparse_ffn_quant(d, x, active, hidden, None)
}
/// Dequantize a DenseFfn's three matrices to f32 (transient; only the
/// q4/vbit-masked fallback uses it — the memory-lean path is
/// sparse_ffn_quant). Reuses row_f32 row-by-row.
fn dequant_dense_f32(d: &DenseFfn) -> (Vec<f32>, Vec<f32>, Vec<f32>) {
let deq = |t: &QTensor| -> Vec<f32> {
let (rows, cols) = (t.rows(), t.cols());
let mut out = vec![0.0f32; rows * cols];
for r in 0..rows {
t.row_f32(r, &mut out[r * cols..(r + 1) * cols]);
}
out
};
(deq(&d.gate_proj), deq(&d.up_proj), deq(&d.down_proj))
}
/// Pointer wrapper for the worker-pool scatter (same pattern as qtensor).
struct SendMut(*mut f32);
unsafe impl Send for SendMut {}
unsafe impl Sync for SendMut {}
impl SendMut {
#[inline]
// Deliberate unsynchronized scatter: pool workers write disjoint indices
// in parallel, so returning `&mut` from `&self` is intentional here.
#[allow(clippy::mut_from_ref)]
unsafe fn at(&self, i: usize) -> &mut f32 {
unsafe { &mut *self.0.add(i) }
}
}
/// Router → (selected experts in torch.topk order, per-expert score
/// vector, normalizer). The final weight of expert `e` is `p[e] / wsum`.
///
/// Two regimes share this. Qwen: softmax over ALL experts, top-k of the
/// probabilities, optional renorm — `router_sigmoid=false`, no bias,
/// scale 1 → bit-identical to the historical path. LFM2-MoE /
/// DeepSeek-V3 `noaux_tc`: per-expert sigmoid scores, an optional
/// selection bias (top-k CHOICE only; weights stay unbiased), a 1e-6 renorm
/// floor and a routed scale.
fn moe_route(logits: &[f32], m: &MoeFfn) -> (Vec<usize>, Vec<f32>, f32) {
let ne = logits.len();
let p: Vec<f32> = if m.router_sigmoid {
logits.iter().map(|&l| 1.0 / (1.0 + (-l).exp())).collect()
} else {
let mx = logits.iter().cloned().fold(f32::NEG_INFINITY, f32::max);
let mut e: Vec<f32> = logits.iter().map(|&l| (l - mx).exp()).collect();
let s: f32 = e.iter().sum();
for v in &mut e {
*v /= s;
}
e
};
let mut idx: Vec<usize> = (0..ne).collect();
// Descending by selection score, lower index wins ties (torch.topk).
match &m.expert_bias {
Some(b) => idx.sort_unstable_by(|&x, &y| {
(p[y] + b[y])
.partial_cmp(&(p[x] + b[x]))
.unwrap()
.then(x.cmp(&y))
}),
None => idx.sort_unstable_by(|&x, &y| p[y].partial_cmp(&p[x]).unwrap().then(x.cmp(&y))),
}
idx.truncate(m.top_k);
let wsum: f32 = if m.norm_topk_prob {
let s: f32 = idx.iter().map(|&e| p[e]).sum();
// LFM2 floors the denom (matches HF `+ 1e-6`); the softmax path's
// probs already sum near 1, so it stays exactly as before.
(if m.router_sigmoid { s + 1e-6 } else { s }) / m.routed_scaling
} else {
1.0 / m.routed_scaling
};
(idx, p, wsum)
}
/// MoE FFN: router → top-k experts (see `moe_route`). Only selected
/// experts' pages are touched in mmap.
fn moe_ffn(m: &MoeFfn, x: &[f32], pool: Option<&Pool>) -> Vec<f32> {
let ne = m.experts.len();
let mut logits = vec![0.0f32; ne];
m.router.matvec(x, &mut logits, pool);
let (idx, p, wsum) = moe_route(&logits, m);
{
let mut st = m.stats.borrow_mut();
if st.len() < ne {
st.resize(ne, 0);
}
for &e in &idx {
st[e] += 1;
}
}
// D5: the whole layer MoE block in one GPU command buffer (experts — the
// same mmap via a no-copy buffer; intermediate activations on the GPU).
// Same Ffn probe class as the dense chain: one submit per layer
// either wins on this driver stack or it doesn't.
if crate::gpu::enabled_here() {
match crate::gpu::probe_arm(crate::gpu::OpClass::Ffn) {
crate::gpu::ProbeArm::Gpu => {
let t0 = std::time::Instant::now();
if let Some(out) = moe_ffn_gpu(m, x, &idx, &p, wsum, pool) {
crate::gpu::probe_record(crate::gpu::OpClass::Ffn, true, t0.elapsed());
return out;
}
}
crate::gpu::ProbeArm::CpuTimed => {
let t0 = std::time::Instant::now();
let out = crate::gpu::cpu_scope(|| moe_ffn_cpu(m, x, &idx, &p, wsum, pool));
crate::gpu::probe_record(crate::gpu::OpClass::Ffn, false, t0.elapsed());
return out;
}
crate::gpu::ProbeArm::Cpu => {
return crate::gpu::cpu_scope(|| moe_ffn_cpu(m, x, &idx, &p, wsum, pool));
}
}
}
moe_ffn_cpu(m, x, &idx, &p, wsum, pool)
}
/// The pure-CPU MoE expert loop (also the fallback of every GPU refusal).
fn moe_ffn_cpu(
m: &MoeFfn,
x: &[f32],
idx: &[usize],
p: &[f32],
wsum: f32,
pool: Option<&Pool>,
) -> Vec<f32> {
let mut out = attention::take_buf(x.len());
for &e in idx {
let mut eo = dense_ffn(&m.experts[e], x, pool);
let w = p[e] / wsum;
for i in 0..out.len() {
out[i] += w * eo[i];
}
attention::recycle_buf(&mut eo);
}
if let Some((se, gate)) = &m.shared {
let mut so = dense_ffn(se, x, pool);
let g = gate.as_ref().map_or(1.0, |gate| {
let mut gl = [0.0f32; 1];
gate.matvec(x, &mut gl, pool);
1.0 / (1.0 + (-gl[0]).exp())
});
for i in 0..out.len() {
out[i] += g * so[i];
}
attention::recycle_buf(&mut so);
}
out
}
/// Building the MoE-layer GPU jobs: all selected experts (+shared) must
/// be q8_2f-Mapped from the primary mapping; otherwise None → CPU path.
fn moe_ffn_gpu(
m: &MoeFfn,
x: &[f32],
idx: &[usize],
p: &[f32],
wsum: f32,
pool: Option<&Pool>,
) -> Option<Vec<f32>> {
use crate::gpu::MoeJob;
let mut jobs: Vec<MoeJob> = Vec::with_capacity(idx.len() + 1);
let mut model_ref = None;
for &e in idx {
moe_push_job(&m.experts[e], x, p[e] / wsum, &mut jobs, &mut model_ref)?;
}
if let Some((se, gate)) = &m.shared {
let g = gate.as_ref().map_or(1.0, |gate| {
let mut gl = [0.0f32; 1];
gate.matvec(x, &mut gl, pool);
1.0 / (1.0 + (-gl[0]).exp())
});
moe_push_job(se, x, g, &mut jobs, &mut model_ref)?;
}
let model = model_ref?;
let hidden = jobs[0].down.1;
let mut out = vec![0.0f32; hidden];
crate::gpu::moe_block(&model, &jobs, &mut out).then_some(out)
}
/// Single-position FFN dispatch.
fn ffn_forward(ffn: &FfnKind, x: &[f32], pool: Option<&Pool>) -> Vec<f32> {
match ffn {
FfnKind::Dense(d) => dense_ffn(d, x, pool),
FfnKind::Moe(m) => moe_ffn(m, x, pool),
}
}
/// Fused two-position FFN: gate/up/down streamed once (dense). MoE
/// falls back to two singles — expert sets differ per position, there
/// is nothing to fuse.
fn ffn_forward_pair(
ffn: &FfnKind,
x1: &[f32],
x2: &[f32],
pool: Option<&Pool>,
) -> (Vec<f32>, Vec<f32>) {
let d = match ffn {
FfnKind::Dense(d) => d,
FfnKind::Moe(m) => return (moe_ffn(m, x1, pool), moe_ffn(m, x2, pool)),
};
let inter = d.gate_proj.rows();
FFN_SCRATCH.with(|s| {
let mut s = s.borrow_mut();
let [g1, g2, u1, u2] = &mut *s;
g1.resize(inter, 0.0);
g2.resize(inter, 0.0);
u1.resize(inter, 0.0);
u2.resize(inter, 0.0);
// Multi-matrix pair job: gate+up under one pool dispatch
// (o1s = lane-1 outputs across tensors, o2s = lane-2).
QTensor::matvec2_many(
[&d.gate_proj, &d.up_proj],
x1,
x2,
[g1.as_mut_slice(), u1.as_mut_slice()],
[g2.as_mut_slice(), u2.as_mut_slice()],
pool,
);
for i in 0..inter {
g1[i] = d.act.apply(g1[i]) * u1[i];
g2[i] = d.act.apply(g2[i]) * u2[i];
}
let mut o1 = attention::take_buf(d.down_proj.rows());
let mut o2 = attention::take_buf(d.down_proj.rows());
d.down_proj.matvec2(g1, g2, &mut o1, &mut o2, pool);
(o1, o2)
})
}
#[cfg(test)]
mod tests {
use super::*;
/// sparse_ffn_quant must equal a dense FFN where inactive neurons are
/// zeroed (mask × mmap correctness). On F32 tensors this is EXACT —
/// it validates the row_dot / add_col_scaled / scatter indexing, the
/// bug-prone part. The q8 branches reuse the golden-tested linear
/// scale, structurally identical to the matvec kernels.
#[test]
fn sparse_ffn_quant_equals_dense_with_inactive_zeroed() {
let (hidden, inter) = (16usize, 40usize);
let synth = |n: usize, salt: usize| -> Vec<f32> {
(0..n)
.map(|i| (((i * 37 + salt * 11 + 3) % 101) as f32 / 101.0 - 0.5) * 0.4)
.collect()
};
let d = DenseFfn {
gate_proj: QTensor::from_f32(synth(inter * hidden, 1), inter, hidden),
up_proj: QTensor::from_f32(synth(inter * hidden, 2), inter, hidden),
down_proj: QTensor::from_f32(synth(hidden * inter, 3), hidden, inter),
act: Act::Silu,
};
let x = synth(hidden, 9);
// Active = every 3rd neuron.
let active: Vec<u16> = (0..inter as u16).filter(|i| i % 3 == 0).collect();
let sparse = sparse_ffn_quant(&d, &x, &active, hidden, None);
// Reference: full dense FFN but g[i]=0 for inactive neurons.
let mut g = vec![0.0f32; inter];
d.gate_proj.matvec(&x, &mut g, None);
let mut u = vec![0.0f32; inter];
d.up_proj.matvec(&x, &mut u, None);
let act_set: std::collections::HashSet<u16> = active.iter().copied().collect();
for i in 0..inter {
g[i] = if act_set.contains(&(i as u16)) {
inference::silu(g[i]) * u[i]
} else {
0.0
};
}
let mut reference = vec![0.0f32; hidden];
d.down_proj.matvec(&g, &mut reference, None);
let max_d = sparse
.iter()
.zip(&reference)
.map(|(a, b)| (a - b).abs())
.fold(0.0f32, f32::max);
assert!(max_d < 1e-5, "sparse != dense-zeroed: max|Δ| = {max_d}");
}
/// Attach a synthetic MTP head (same structure as a main layer).
fn attach_test_mtp(p: &mut Pipeline) {
let (h, inter, heads, kv, hd) = (
p.hidden_size,
p.intermediate_size,
p.num_heads,
p.num_kv_heads,
p.head_dim,
);
let synth = |n: usize, salt: usize| -> Vec<f32> {
(0..n)
.map(|i| (((i * 29 + salt * 23 + 5) % 101) as f32 / 101.0 - 0.5) * 0.2)
.collect()
};
let qt = |rows: usize, cols: usize, salt: usize| -> QTensor {
QTensor::from_f32(synth(rows * cols, salt), rows, cols)
};
p.mtp = Some(MtpModule {
enorm: vec![1.0; h],
hnorm: vec![1.0; h],
eh_proj: qt(h, 2 * h, 301),
layer: LayerWeights {
input_norm: vec![1.0; h],
post_norm: vec![1.0; h],
attn_out_norm: None,
ffn_out_norm: None,
layer_scale: None,
ffn: FfnKind::Dense(DenseFfn {
gate_proj: qt(inter, h, 315),
up_proj: qt(inter, h, 316),
down_proj: qt(h, inter, 317),
act: Act::Silu,
}),
attn: AttnKind::Full {
bias: None,
wq: qt(heads * hd, h, 311),
wk: qt(kv * hd, h, 312),
wv: qt(kv * hd, h, 313),
wo: qt(h, heads * hd, 314),
q_norm: None,
k_norm: None,
output_gate: false,
softplus_gate: None,
},
},
final_norm: vec![1.0; h],
kv: crate::kv_cache::LayerKvCache::new(kv, hd),
});
}
#[test]
fn speculative_equals_vanilla_greedy() {
// Speculative decode and the wgpu token graph are mutually
// exclusive; a leaked CMF_GPU=wgpu from a parallel gpu test
// would silently disable drafting. Pin the graph off.
unsafe { std::env::set_var("CMF_GPU_WGPU_GRAPH", "0") };
let run = |spec: bool| {
let mut p = create_test_pipeline(8, 16, 2, 1, 4, 2, 260);
p.sampler_config.temperature = 0.0;
attach_test_mtp(&mut p);
p.speculative = spec;
let r = p.generate("abcdef", 12, None, None).unwrap();
(r.token_ids, r.mtp_drafted, r.mtp_accepted)
};
let (vanilla, d0, _) = run(false);
let (spec, d1, a1) = run(true);
assert_eq!(d0, 0, "vanilla path must not draft");
assert!(d1 > 0, "speculative path must draft");
assert_eq!(
vanilla, spec,
"speculative must reproduce the exact greedy sequence (accepted {a1}/{d1})"
);
}
#[test]
fn speculative_accepts_constant_oracle() {
// See speculative_equals_vanilla_greedy: pin the wgpu graph off.
unsafe { std::env::set_var("CMF_GPU_WGPU_GRAPH", "0") };
let mut p = create_test_pipeline(8, 16, 2, 1, 4, 1, 64);
p.sampler_config.temperature = 0.0;
p.sampler_config.repetition_penalty = 1.0;
// Constant lm_head → every logit equal → both the main model and
// the draft head argmax to token 0: acceptance must be 100%.
p.weights.lm_head = QTensor::from_f32(vec![0.01; 64 * 8], 64, 8);
attach_test_mtp(&mut p);
p.speculative = true;
let r = p.generate("abcd", 10, None, None).unwrap();
assert!(r.mtp_drafted > 0);
assert_eq!(
r.mtp_accepted, r.mtp_drafted,
"constant logits → every draft accepted"
);
// Ties resolve to the same token in both the main and draft
// heads — the sequence is one repeated token.
assert!(r.token_ids.windows(2).all(|w| w[0] == w[1]));
}
#[test]
fn empty_prompt_is_an_error_not_a_panic() {
let mut p = create_test_pipeline(8, 16, 2, 1, 4, 1, 260);
let r = p.generate("", 4, None, None);
assert!(r.is_err(), "empty prompt must be a clean error");
}
#[test]
fn every_token_enters_kv_exactly_once() {
let mut p = create_test_pipeline(8, 16, 2, 1, 4, 2, 260);
// Greedy so no RNG variance; byte tokenizer → 3 prompt tokens.
p.sampler_config.temperature = 0.0;
let r = p.generate("abc", 2, None, None).unwrap();
assert_eq!(r.prompt_tokens, 3);
// prompt(3) + first sampled token forwarded before second logits:
// step0 samples from prefill hidden (no extra forward), then
// forwards t1 → cache 4; step1 samples, loop ends (max_tokens).
assert_eq!(
p.kv_cache.seq_len(),
3 + r.tokens_generated - 1,
"each token must be cached exactly once (v1 cached the last prompt token twice)"
);
}
#[test]
fn generation_is_reproducible_with_seed() {
let run = || {
let mut p = create_test_pipeline(8, 16, 2, 1, 4, 2, 260);
p.generate("hello", 8, None, None).unwrap().token_ids
};
assert_eq!(run(), run());
}
#[test]
fn resetting_sampler_restarts_the_seeded_stream() {
let mut p = create_test_pipeline(8, 16, 2, 1, 4, 2, 260);
let config = SamplerConfig {
seed: Some(1234),
..SamplerConfig::default()
};
p.set_sampler_config(config.clone());
let first = p.generate("hello", 8, None, None).unwrap().token_ids;
p.set_sampler_config(config);
let second = p.generate("hello", 8, None, None).unwrap().token_ids;
assert_eq!(first, second);
}
#[test]
fn eviction_bounds_the_cache() {
let mut p = create_test_pipeline(8, 16, 2, 1, 4, 1, 260);
p.kv_cache.max_seq_len = 6;
p.sampler_config.temperature = 0.0;
let _ = p.generate("abcd", 12, None, None).unwrap();
assert!(
p.kv_cache.seq_len() <= 6 + 1,
"cache must stay bounded by max_seq_len (got {})",
p.kv_cache.seq_len()
);
}
#[test]
fn confidence_matches_tokens_and_is_a_probability() {
let mut p = create_test_pipeline(8, 16, 2, 1, 4, 1, 64);
p.sampler_config.temperature = 0.0;
p.sampler_config.repetition_penalty = 1.0;
let r = p.generate("abcd", 10, None, None).unwrap();
assert_eq!(
r.token_confidence.len(),
r.token_ids.len(),
"one confidence per emitted token"
);
for &c in &r.token_confidence {
assert!((0.0..=1.0).contains(&c), "confidence out of [0,1]: {c}");
}
// top1_prob is a valid softmax probability.
let logits = [1.0f32, 3.0, 0.5, 3.0];
let p0 = top1_prob_t(&logits, 1, 1.0);
let p1 = top1_prob_t(&logits, 3, 1.0);
assert!((p0 - p1).abs() < 1e-6, "equal logits → equal prob");
assert!(p0 > 0.0 && p0 < 1.0);
// Calibration temperature > 1 softens an over-confident peak.
let sharp = top1_prob_t(&logits, 1, 1.0);
let soft = top1_prob_t(&logits, 1, 2.0);
assert!(soft < sharp, "higher temperature lowers peak confidence");
}
#[test]
fn trace_is_opt_in_and_parallels_the_output() {
// Off by default: the runtime is silent unless observation asked.
let mut p = create_test_pipeline(8, 16, 2, 1, 4, 1, 64);
p.sampler_config.temperature = 0.0;
p.sampler_config.repetition_penalty = 1.0;
let r = p.generate("abcd", 10, None, None).unwrap();
assert!(r.traces.is_empty(), "trace must be empty unless enabled");
// On: exactly one row per emitted token, aligned with the output.
let mut p = create_test_pipeline(8, 16, 2, 1, 4, 1, 64);
p.sampler_config.temperature = 0.0;
p.sampler_config.repetition_penalty = 1.0;
p.set_trace(true);
let r = p.generate("abcd", 10, None, None).unwrap();
assert_eq!(r.traces.len(), r.token_ids.len(), "one trace row per token");
for (i, tr) in r.traces.iter().enumerate() {
assert_eq!(tr.t, i, "trace index is sequential");
assert_eq!(tr.token_id, r.token_ids[i], "trace token_id matches output");
assert_eq!(
tr.confidence, r.token_confidence[i],
"trace confidence matches the confidence channel"
);
// No dynamic router in this pipeline → no skill, no coherence.
assert!(tr.active_skill.is_none() && tr.recon.is_none() && !tr.switched);
}
}
#[test]
fn explain_prefill_logits_match_greedy_first_token() {
// `cortiq explain` shows the next-token distribution from
// prefill_next_logits; its argmax must equal what greedy generate
// actually emits first — otherwise explain would lie.
let mut p = create_test_pipeline(8, 16, 2, 1, 4, 1, 64);
p.sampler_config.temperature = 0.0;
p.sampler_config.repetition_penalty = 1.0;
let ids = p.tokenizer.encode("abcd");
let logits = p.prefill_next_logits(&ids, None);
let argmax = logits
.iter()
.enumerate()
.max_by(|a, b| a.1.partial_cmp(b.1).unwrap())
.unwrap()
.0 as u32;
let r = p.generate("abcd", 1, None, None).unwrap();
assert_eq!(
argmax, r.token_ids[0],
"explain preview must match greedy emit"
);
}
#[test]
fn laguna_shared_expert_is_unconditionally_added() {
let matrix = |values: Vec<f32>| QTensor::from_f32(values, 2, 2);
let identity = || matrix(vec![1.0, 0.0, 0.0, 1.0]);
let zero_dense = || DenseFfn {
gate_proj: matrix(vec![0.0; 4]),
up_proj: matrix(vec![0.0; 4]),
down_proj: matrix(vec![0.0; 4]),
act: Act::Silu,
};
let shared = DenseFfn {
gate_proj: identity(),
up_proj: identity(),
down_proj: identity(),
act: Act::Silu,
};
let x = [1.0, 2.0];
let expected = dense_ffn(&shared, &x, None);
let moe = MoeFfn {
router: QTensor::from_f32(vec![0.0, 0.0], 1, 2),
experts: vec![zero_dense()],
top_k: 1,
norm_topk_prob: true,
router_sigmoid: true,
expert_bias: None,
routed_scaling: 1.0,
shared: Some((shared, None)),
stats: std::cell::RefCell::new(Vec::new()),
};
let actual = moe_ffn_cpu(&moe, &x, &[0], &[0.0], 1.0, None);
for (actual, expected) in actual.iter().zip(expected) {
assert!((actual - expected).abs() < 1e-6);
}
}
}