aprender-zram 0.34.0

SIMD-accelerated LZ4/ZSTD compression engine for Linux zram devices
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
info: syncing channel updates for 'stable-x86_64-unknown-linux-gnu'
info: latest update on 2025-12-11, rust version 1.92.0 (ded5c06cf 2025-12-08)
info: component 'clippy' for target 'x86_64-unknown-linux-gnu' is up to date
info: component 'rustfmt' for target 'x86_64-unknown-linux-gnu' is up to date
info: downloading component 'llvm-tools'
info: installing component 'llvm-tools'
    Updating crates.io index
 Downloading crates ...
  Downloaded async-executor v1.13.3
  Downloaded async-net v2.0.0
  Downloaded async-channel v2.5.0
  Downloaded async-signal v0.2.13
  Downloaded anes v0.1.6
  Downloaded async-process v2.5.0
  Downloaded async-fs v2.2.0
  Downloaded async-lock v3.4.2
  Downloaded async-io v2.6.0
  Downloaded derive_setters v0.1.8
  Downloaded rustc-hash v1.1.0
  Downloaded parking v2.2.1
  Downloaded event-listener-strategy v0.5.4
  Downloaded ciborium-ll v0.2.2
  Downloaded plotters-backend v0.3.7
  Downloaded duende-mlock v1.0.0
  Downloaded plotters-svg v0.3.7
  Downloaded ctrlc v3.5.1
  Downloaded piper v0.2.4
  Downloaded cast v0.3.0
  Downloaded lazycell v1.3.0
  Downloaded which v4.4.2
  Downloaded criterion-plot v0.5.0
  Downloaded ciborium-io v0.2.2
  Downloaded bitmaps v3.2.1
  Downloaded oorandom v11.1.5
  Downloaded zmij v1.0.10
  Downloaded event-listener v5.4.1
  Downloaded ciborium v0.2.2
  Downloaded concurrent-queue v2.5.0
  Downloaded async-task v4.7.1
  Downloaded futures-lite v2.6.1
  Downloaded polling v3.11.0
  Downloaded tempfile v3.24.0
  Downloaded procfs-core v0.17.0
  Downloaded libublk v0.4.5
  Downloaded nom v7.1.3
  Downloaded itertools v0.10.5
  Downloaded plotters v0.3.7
  Downloaded io-uring v0.7.9
  Downloaded criterion v0.5.1
  Downloaded procfs v0.17.0
  Downloaded bindgen v0.69.5
  Downloaded minimal-lexical v0.2.1
  Downloaded clang-sys v1.8.1
  Downloaded smol v2.0.2
  Downloaded tinytemplate v1.2.1
  Downloaded libloading v0.8.9
  Downloaded cexpr v0.6.0
  Downloaded nix v0.29.0
  Downloaded blocking v1.6.2
  Downloaded jugar-probar v0.4.0
  Downloaded cudarc v0.18.2
   Compiling proc-macro2 v1.0.104
   Compiling unicode-ident v1.0.22
   Compiling quote v1.0.42
   Compiling cfg-if v1.0.4
   Compiling libc v0.2.179
   Compiling crossbeam-utils v0.8.21
   Compiling autocfg v1.5.0
   Compiling bitflags v2.10.0
   Compiling memchr v2.7.6
   Compiling serde_core v1.0.228
   Compiling pin-project-lite v0.2.16
   Compiling serde v1.0.228
   Compiling either v1.15.0
   Compiling fastrand v2.3.0
   Compiling rayon-core v1.13.0
   Compiling strsim v0.11.1
   Compiling zerocopy v0.8.31
   Compiling regex-syntax v0.8.8
   Compiling log v0.4.29
   Compiling parking v2.2.1
   Compiling rustix v1.1.3
   Compiling getrandom v0.3.4
   Compiling thiserror v2.0.17
   Compiling linux-raw-sys v0.11.0
   Compiling once_cell v1.21.3
   Compiling futures-io v0.3.31
   Compiling itoa v1.0.17
   Compiling anyhow v1.0.100
   Compiling ident_case v1.0.1
   Compiling simd-adler32 v0.3.8
   Compiling futures-core v0.3.31
   Compiling zmij v1.0.10
   Compiling adler2 v2.0.1
   Compiling serde_json v1.0.148
   Compiling fnv v1.0.7
   Compiling crc32fast v1.5.0
   Compiling smallvec v1.15.1
   Compiling heck v0.5.0
   Compiling rustversion v1.0.22
   Compiling glob v0.3.3
   Compiling typenum v1.19.0
   Compiling version_check v0.9.5
   Compiling parking_lot_core v0.9.12
   Compiling rustix v0.38.44
   Compiling cfg_aliases v0.2.1
   Compiling paste v1.0.15
   Compiling lazy_static v1.5.0
   Compiling libloading v0.8.9
   Compiling slab v0.4.11
   Compiling async-task v4.7.1
   Compiling stable_deref_trait v1.2.1
   Compiling arrayvec v0.7.6
   Compiling prettyplease v0.2.37
   Compiling atomic-waker v1.1.2
   Compiling utf8parse v0.2.2
   Compiling av-scenechange v0.14.1
   Compiling scopeguard v1.2.0
   Compiling futures-lite v2.6.1
   Compiling as-slice v0.2.1
   Compiling equivalent v1.0.2
   Compiling miniz_oxide v0.8.9
   Compiling linux-raw-sys v0.4.15
   Compiling signal-hook v0.3.18
   Compiling built v0.8.0
   Compiling minimal-lexical v0.2.1
   Compiling cudarc v0.18.2
   Compiling aligned v0.4.3
   Compiling tracing-core v0.1.36
   Compiling lock_api v0.4.14
   Compiling anstyle-parse v0.2.7
   Compiling piper v0.2.4
   Compiling anstyle-query v1.1.5
   Compiling weezl v0.1.12
   Compiling home v0.5.12
   Compiling pastey v0.1.1
   Compiling clang-sys v1.8.1
   Compiling is_terminal_polyfill v1.70.2
   Compiling y4m v0.8.0
   Compiling quick-error v2.0.1
   Compiling colorchoice v1.0.4
   Compiling thiserror v1.0.69
   Compiling num-traits v0.2.19
   Compiling async-io v2.6.0
   Compiling generic-array v0.14.7
   Compiling bindgen v0.69.5
   Compiling anstyle v1.0.13
   Compiling same-file v1.0.6
   Compiling itertools v0.10.5
   Compiling aho-corasick v1.1.4
   Compiling nom v8.0.0
   Compiling core2 v0.4.0
   Compiling nom v7.1.3
   Compiling fdeflate v0.3.7
   Compiling itertools v0.14.0
   Compiling clap_lex v0.7.6
   Compiling quick-error v1.2.3
   Compiling iana-time-zone v0.1.64
   Compiling bitflags v1.3.2
   Compiling allocator-api2 v0.2.21
   Compiling bit-vec v0.8.0
   Compiling flate2 v1.1.5
   Compiling walkdir v2.5.0
   Compiling bitstream-io v4.9.0
   Compiling anstream v0.6.21
   Compiling noop_proc_macro v0.3.0
   Compiling zune-core v0.4.12
   Compiling rav1e v0.8.1
   Compiling ryu v1.0.22
   Compiling io-uring v0.7.9
   Compiling imgref v1.12.0
   Compiling shlex v1.3.0
   Compiling color_quant v1.1.0
   Compiling new_debug_unreachable v1.0.6
   Compiling rustc-hash v1.1.0
   Compiling foldhash v0.1.5
   Compiling lazycell v1.3.0
   Compiling instability v0.3.11
   Compiling avif-serialize v0.8.6
   Compiling zune-inflate v0.2.54
   Compiling itertools v0.13.0
   Compiling bit-set v0.8.0
   Compiling nix v0.30.1
   Compiling crossbeam-epoch v0.9.18
   Compiling concurrent-queue v2.5.0
   Compiling clap_builder v4.5.54
   Compiling zune-jpeg v0.4.21
   Compiling instant v0.1.13
   Compiling loop9 v0.1.5
   Compiling byteorder-lite v0.1.0
   Compiling indoc v2.0.7
   Compiling lebe v0.5.3
   Compiling hashbrown v0.15.5
   Compiling ciborium-io v0.2.2
   Compiling rgb v0.8.52
   Compiling unarray v0.1.4
   Compiling bytes v1.11.0
   Compiling static_assertions v1.1.0
   Compiling bytemuck v1.24.0
   Compiling zune-core v0.5.0
   Compiling hashbrown v0.16.1
   Compiling unicode-segmentation v1.12.0
   Compiling bit_field v0.10.3
   Compiling plotters-backend v0.3.7
   Compiling unicode-width v0.1.14
   Compiling notify-types v1.0.1
   Compiling gif v0.14.1
   Compiling event-listener v5.4.1
   Compiling async-executor v1.13.3
   Compiling castaway v0.2.4
   Compiling png v0.18.0
   Compiling tracing-log v0.2.0
   Compiling sharded-slab v0.1.7
   Compiling crossbeam-deque v0.8.6
   Compiling nix v0.29.0
   Compiling image-webp v0.2.4
   Compiling compact_str v0.8.1
   Compiling thread_local v1.1.9
   Compiling unicode-width v0.2.0
   Compiling syn v2.0.113
   Compiling zune-jpeg v0.5.8
   Compiling event-listener-strategy v0.5.4
   Compiling qoi v0.4.1
   Compiling simd_helpers v0.1.0
   Compiling plotters-svg v0.3.7
   Compiling cast v0.3.0
   Compiling cpufeatures v0.2.17
   Compiling nu-ansi-term v0.50.3
   Compiling procfs v0.17.0
   Compiling hex v0.4.3
   Compiling unsafe-libyaml v0.2.11
   Compiling async-channel v2.5.0
   Compiling async-lock v3.4.2
   Compiling byteorder v1.5.0
   Compiling cassowary v0.3.0
   Compiling png v0.17.16
   Compiling gif v0.13.3
   Compiling base64 v0.22.1
   Compiling oorandom v11.1.5
   Compiling anes v0.1.6
   Compiling futures-timer v3.0.3
   Compiling bitmaps v3.2.1
   Compiling blocking v1.6.2
   Compiling num-integer v0.1.46
   Compiling chrono v0.4.42
   Compiling pxfm v0.1.27
   Compiling plotters v0.3.7
   Compiling lru v0.12.5
   Compiling indexmap v2.12.1
   Compiling regex-automata v0.4.13
   Compiling rayon v1.11.0
   Compiling num-bigint v0.4.6
   Compiling async-fs v2.2.0
   Compiling crypto-common v0.1.7
   Compiling block-buffer v0.10.4
   Compiling digest v0.10.7
   Compiling sha2 v0.10.9
   Compiling errno v0.3.14
   Compiling mio v1.1.1
   Compiling wait-timeout v0.2.1
   Compiling inotify-sys v0.1.5
   Compiling filetime v0.2.26
   Compiling socket2 v0.6.1
   Compiling is-terminal v0.4.17
   Compiling duende-mlock v1.0.0
   Compiling cexpr v0.6.0
   Compiling which v4.4.2
   Compiling inotify v0.10.2
   Compiling signal-hook-registry v1.4.8
   Compiling criterion-plot v0.5.0
   Compiling unicode-truncate v1.1.0
   Compiling rand_core v0.9.3
   Compiling parking_lot v0.12.5
   Compiling rand v0.9.2
   Compiling rand_xorshift v0.4.0
   Compiling notify v7.0.0
   Compiling signal-hook-mio v0.2.5
   Compiling procfs-core v0.17.0
   Compiling ctrlc v3.5.1
   Compiling uuid v1.19.0
   Compiling maybe-rayon v0.1.1
   Compiling crossterm v0.28.1
   Compiling regex v1.12.2
   Compiling moxcms v0.7.11
   Compiling darling_core v0.23.0
   Compiling darling_core v0.20.11
   Compiling matchers v0.2.0
   Compiling polling v3.11.0
   Compiling tempfile v3.24.0
   Compiling serde_derive v1.0.228
   Compiling zerocopy-derive v0.8.31
   Compiling thiserror-impl v2.0.17
   Compiling equator-macro v0.4.2
   Compiling profiling-procmacros v1.0.17
   Compiling arg_enum_proc_macro v0.3.4
   Compiling num-derive v0.4.2
   Compiling fax_derive v0.2.0
   Compiling thiserror-impl v1.0.69
   Compiling clap_derive v4.5.49
   Compiling tracing-attributes v0.1.31
   Compiling strum_macros v0.26.4
   Compiling tokio-macros v2.6.0
   Compiling rusty-fork v0.3.1
   Compiling profiling v1.0.17
   Compiling async-signal v0.2.13
   Compiling async-net v2.0.0
   Compiling fax v0.2.6
   Compiling equator v0.4.2
   Compiling tokio v1.49.0
   Compiling async-process v2.5.0
   Compiling aligned-vec v0.6.4
   Compiling tracing v0.1.44
   Compiling v_frame v0.3.9
   Compiling smol v2.0.2
   Compiling duende-ublk v0.1.0 (/home/noah/src/duende/crates/duende-ublk)
   Compiling trueno-gpu v0.4.5 (/home/noah/src/trueno/trueno-gpu)
   Compiling darling_macro v0.20.11
   Compiling strum v0.26.3
   Compiling darling_macro v0.23.0
   Compiling clap v4.5.54
   Compiling darling v0.20.11
   Compiling derive_setters v0.1.8
   Compiling darling v0.23.0
warning: unused variable: `smem_base`
   --> /home/noah/src/trueno/trueno-gpu/src/kernels/lz4.rs:653:21
    |
653 |                 let smem_base = ctx.add_u64(raw_smem_base, warp_smem_offset_64);
    |                     ^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_smem_base`
    |
    = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default

warning: unused variable: `imm20`
   --> /home/noah/src/trueno/trueno-gpu/src/kernels/lz4.rs:662:21
    |
662 |                 let imm20 = ctx.mov_u64_imm(20);
    |                     ^^^^^ help: if this is intentional, prefix it with an underscore: `_imm20`

warning: unused variable: `imm24`
   --> /home/noah/src/trueno/trueno-gpu/src/kernels/lz4.rs:663:21
    |
663 |                 let imm24 = ctx.mov_u64_imm(24);
    |                     ^^^^^ help: if this is intentional, prefix it with an underscore: `_imm24`

warning: unused variable: `imm28`
   --> /home/noah/src/trueno/trueno-gpu/src/kernels/lz4.rs:664:21
    |
664 |                 let imm28 = ctx.mov_u64_imm(28);
    |                     ^^^^^ help: if this is intentional, prefix it with an underscore: `_imm28`

warning: unused variable: `temp_data`
   --> /home/noah/src/trueno/trueno-gpu/src/kernels/lz4.rs:760:21
    |
760 |                 let temp_data = ctx.mov_u32_imm(0);  // Temp for loaded data
    |                     ^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_temp_data`

warning: unused variable: `temp_chunk_off`
   --> /home/noah/src/trueno/trueno-gpu/src/kernels/lz4.rs:761:21
    |
761 |                 let temp_chunk_off = ctx.mov_u32_imm(0);  // Temp for chunk offset
    |                     ^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_temp_chunk_off`

warning: unused variable: `temp_chunk_off_64`
   --> /home/noah/src/trueno/trueno-gpu/src/kernels/lz4.rs:762:21
    |
762 |                 let temp_chunk_off_64 = ctx.mov_u64_imm(0);  // Temp for u64 chunk offset
    |                     ^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_temp_chunk_off_64`

warning: unused variable: `temp_smem_addr`
   --> /home/noah/src/trueno/trueno-gpu/src/kernels/lz4.rs:763:21
    |
763 |                 let temp_smem_addr = ctx.mov_u64_imm(0);  // Temp for smem address
    |                     ^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_temp_smem_addr`

   Compiling ratatui v0.29.0
   Compiling half v2.7.1
   Compiling ppv-lite86 v0.2.21
   Compiling num-rational v0.4.2
   Compiling tracing-serde v0.2.0
   Compiling serde_yaml v0.9.34+deprecated
   Compiling tinytemplate v1.2.1
   Compiling tracing-subscriber v0.3.22
   Compiling tiff v0.10.3
   Compiling ciborium-ll v0.2.2
   Compiling exr v1.74.0
   Compiling rand_chacha v0.9.0
   Compiling av1-grain v0.2.5
   Compiling mp4 v0.14.0
   Compiling ciborium v0.2.2
   Compiling proptest v1.9.0
   Compiling criterion v0.5.1
warning: `trueno-gpu` (lib) generated 8 warnings (run `cargo fix --lib -p trueno-gpu` to apply 8 suggestions)
   Compiling trueno-zram-core v0.2.0 (/workspace/crates/trueno-zram-core)
   Compiling libublk v0.4.5
   Compiling trueno-zram-adaptive v0.2.0 (/workspace/crates/trueno-zram-adaptive)
   Compiling ravif v0.12.0
   Compiling image v0.25.9
   Compiling jugar-probar v0.4.0
   Compiling trueno-ublk v0.2.0 (/workspace/bins/trueno-ublk)
warning: unnecessary parentheses around function argument
    --> bins/trueno-ublk/src/device.rs:2077:33
     |
2077 |                 let data = vec![(t as u8); PAGE_SIZE];
     |                                 ^       ^
     |
     = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default
help: remove these parentheses
     |
2077 -                 let data = vec![(t as u8); PAGE_SIZE];
2077 +                 let data = vec![t as u8; PAGE_SIZE];
     |

warning: variable does not need to be mutable
   --> bins/trueno-ublk/src/perf/hiperf_daemon.rs:879:13
    |
879 |         let mut ctx = HiPerfContext::high_perf();
    |             ----^^^
    |             |
    |             help: remove this `mut`
    |
    = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default

warning: `trueno-ublk` (lib test) generated 2 warnings (run `cargo fix --lib -p trueno-ublk --tests` to apply 2 suggestions)
    Finished `test` profile [unoptimized + debuginfo] target(s) in 16.98s
────────────
 Nextest run ID f080678d-c5c8-4076-af20-326782d00d47 with nextest profile: default
    Starting 1013 tests across 3 binaries (12 tests skipped)
        PASS [   0.004s] (   1/1013) trueno-ublk daemon::tests::test_batch_config_defaults
        PASS [   0.005s] (   2/1013) trueno-ublk daemon::tests::test_batched_shutdown
        PASS [   0.006s] (   3/1013) trueno-ublk daemon::tests::test_batched_stats
        PASS [   0.006s] (   4/1013) trueno-ublk cleanup::tests::test_signal_handler_setup
        PASS [   0.006s] (   5/1013) trueno-ublk daemon::tests::test_compression_ratio
        PASS [   0.006s] (   6/1013) trueno-ublk daemon::tests::test_partial_page_write
        PASS [   0.007s] (   7/1013) trueno-ublk daemon::tests::test_multi_sector_io
        PASS [   0.006s] (   8/1013) trueno-ublk device::tests::popperian_a03_zero_page_roundtrip
        PASS [   0.007s] (   9/1013) trueno-ublk daemon::tests::test_entropy_calculation
        PASS [   0.007s] (  10/1013) trueno-ublk daemon::tests::test_boundary_last_sector
        PASS [   0.009s] (  11/1013) trueno-ublk daemon::tests::test_g108_simd_parallel_used_for_large_batches
        PASS [   0.009s] (  12/1013) trueno-ublk daemon::tests::test_overwrite_data
        PASS [   0.009s] (  13/1013) trueno-ublk daemon::tests::test_zero_page_optimization
        PASS [   0.009s] (  14/1013) trueno-ublk device::tests::popperian_a05_highly_compressible_roundtrip
        PASS [   0.009s] (  15/1013) trueno-ublk device::tests::popperian_a04_high_entropy_roundtrip
        PASS [   0.009s] (  16/1013) trueno-ublk daemon::tests::test_is_zero_page
        PASS [   0.009s] (  17/1013) trueno-ublk device::tests::popperian_a01_write_pattern_a_read_verify
        PASS [   0.009s] (  18/1013) trueno-ublk daemon::tests::test_roundtrip_deadbeef
        PASS [   0.009s] (  19/1013) trueno-ublk cleanup::tests::test_detect_orphaned_devices_empty
        PASS [   0.009s] (  20/1013) trueno-ublk daemon::tests::test_perf002_store_non_blocking
        PASS [   0.009s] (  21/1013) trueno-ublk daemon::tests::test_g105_hybrid_backend_selection
        PASS [   0.010s] (  22/1013) trueno-ublk daemon::tests::test_discard_clears_data
        PASS [   0.009s] (  23/1013) trueno-ublk daemon::tests::test_write_zeroes_operation
        PASS [   0.009s] (  24/1013) trueno-ublk daemon::tests::test_stats_tracking
        PASS [   0.010s] (  25/1013) trueno-ublk daemon::tests::test_g103_read_before_flush
        PASS [   0.010s] (  26/1013) trueno-ublk daemon::tests::test_offset_independence
        PASS [   0.010s] (  27/1013) trueno-ublk device::tests::popperian_a02_overwrite_pattern_a_with_b
        PASS [   0.010s] (  28/1013) trueno-ublk daemon::tests::test_read_unallocated_returns_zeros
        PASS [   0.005s] (  29/1013) trueno-ublk device::tests::popperian_a07_read_last_sector
        PASS [   0.006s] (  30/1013) trueno-ublk device::tests::popperian_a06_write_last_sector
        PASS [   0.005s] (  31/1013) trueno-ublk device::tests::popperian_a08_write_past_boundary
        PASS [   0.007s] (  32/1013) trueno-ublk device::tests::popperian_a11_partial_write_rejected
        PASS [   0.013s] (  33/1013) trueno-ublk daemon::tests::test_g111_single_page_write_latency
        PASS [   0.006s] (  34/1013) trueno-ublk device::tests::popperian_a09_read_past_boundary
        PASS [   0.006s] (  35/1013) trueno-ublk device::tests::popperian_a12_partial_read_rejected
        PASS [   0.005s] (  36/1013) trueno-ublk device::tests::popperian_a10_read_uninitialized
        PASS [   0.015s] (  37/1013) trueno-ublk daemon::tests::test_perf002_flush_signal_immediate_wake
        PASS [   0.015s] (  38/1013) trueno-ublk daemon::tests::test_batched_write_zeroes
        PASS [   0.007s] (  39/1013) trueno-ublk device::tests::popperian_a14_overwrite_simd_with_zero
        PASS [   0.016s] (  40/1013) trueno-ublk daemon::tests::test_batched_discard
        PASS [   0.007s] (  41/1013) trueno-ublk device::tests::popperian_a17_crc32_integrity
        PASS [   0.017s] (  42/1013) trueno-ublk daemon::tests::test_batched_ublk_interface_roundtrip
        PASS [   0.007s] (  43/1013) trueno-ublk device::tests::popperian_b25_oom_resilience
        PASS [   0.007s] (  44/1013) trueno-ublk device::tests::popperian_a16_persistence_not_applicable
        PASS [   0.008s] (  45/1013) trueno-ublk device::tests::popperian_a13_overwrite_scalar_with_simd
        PASS [   0.018s] (  46/1013) trueno-ublk daemon::tests::test_qa_edge_case_flush_timeout_0
        PASS [   0.011s] (  47/1013) trueno-ublk device::tests::popperian_a15_overwrite_zero_with_scalar
        PASS [   0.005s] (  48/1013) trueno-ublk device::tests::test_alignment_validation_length
        PASS [   0.011s] (  49/1013) trueno-ublk device::tests::popperian_b29_idle_timeout
        PASS [   0.021s] (  50/1013) trueno-ublk daemon::tests::test_g101_batch_threshold
        PASS [   0.009s] (  51/1013) trueno-ublk device::tests::popperian_c38_simd_backend_detection
        PASS [   0.011s] (  52/1013) trueno-ublk device::tests::popperian_a20_discard_frees_memory
        PASS [   0.012s] (  53/1013) trueno-ublk device::tests::popperian_b26_cpu_affinity
        PASS [   0.021s] (  54/1013) trueno-ublk daemon::tests::test_qa_large_threshold_timer_still_works
        PASS [   0.022s] (  55/1013) trueno-ublk daemon::tests::test_qa_edge_case_batch_threshold_1
        PASS [   0.006s] (  56/1013) trueno-ublk device::tests::test_bounds_check
        PASS [   0.006s] (  57/1013) trueno-ublk device::tests::test_parse_device_id
        PASS [   0.009s] (  58/1013) trueno-ublk device::tests::test_compression_ratio_tracking
        PASS [   0.014s] (  59/1013) trueno-ublk device::tests::popperian_c40_dictionary_training
        PASS [   0.012s] (  60/1013) trueno-ublk device::tests::test_block_device_creation
        PASS [   0.012s] (  61/1013) trueno-ublk device::tests::test_block_device_stats_compression_ratio
        PASS [   0.009s] (  62/1013) trueno-ublk device::tests::test_entropy_routing_low_entropy
        PASS [   0.018s] (  63/1013) trueno-ublk device::tests::popperian_b24_max_devices
        PASS [   0.011s] (  64/1013) trueno-ublk device::tests::test_discard_operation
        PASS [   0.012s] (  65/1013) trueno-ublk device::tests::test_device_stats_default
        PASS [   0.007s] (  66/1013) trueno-ublk device::tests::test_write_read_roundtrip_random_data
        PASS [   0.013s] (  67/1013) trueno-ublk device::tests::test_block_device_stats_compression_ratio_no_data
        PASS [   0.029s] (  68/1013) trueno-ublk daemon::tests::test_g106_zero_page_fast_path
        PASS [   0.012s] (  69/1013) trueno-ublk device::tests::test_detect_simd_backend
        PASS [   0.011s] (  70/1013) trueno-ublk device::tests::test_entropy_routing_high_entropy
        PASS [   0.007s] (  71/1013) trueno-ublk device::tests::test_write_read_roundtrip_single_page
        PASS [   0.029s] (  72/1013) trueno-ublk daemon::tests::test_g104_backend_selection
        PASS [   0.008s] (  73/1013) trueno-ublk device::tests::test_stats_tracking
        PASS [   0.030s] (  74/1013) trueno-ublk daemon::tests::test_g102_flush_timer
        PASS [   0.011s] (  75/1013) trueno-ublk device::tests::test_overwrite_page
        PASS [   0.004s] (  76/1013) trueno-ublk perf::affinity::tests::test_affinity_error_display
        PASS [   0.009s] (  77/1013) trueno-ublk device::tests::test_unwritten_page_returns_zeros
        PASS [   0.016s] (  78/1013) trueno-ublk device::tests::test_alignment_validation_offset
        PASS [   0.005s] (  79/1013) trueno-ublk perf::affinity::tests::test_affinity_error_debug
        PASS [   0.009s] (  80/1013) trueno-ublk device::tests::test_zero_page_deduplication
        PASS [   0.010s] (  81/1013) trueno-ublk device::tests::test_write_read_roundtrip_multiple_pages
        PASS [   0.004s] (  82/1013) trueno-ublk perf::affinity::tests::test_cpu_affinity_auto_select
        PASS [   0.005s] (  83/1013) trueno-ublk perf::affinity::tests::test_affinity_error_variants
        PASS [   0.004s] (  84/1013) trueno-ublk perf::affinity::tests::test_cpu_affinity_auto_select_avoiding
        PASS [   0.004s] (  85/1013) trueno-ublk perf::affinity::tests::test_cpu_affinity_clone
        PASS [   0.004s] (  86/1013) trueno-ublk perf::affinity::tests::test_cpu_affinity_core_for_thread_empty
        PASS [   0.007s] (  87/1013) trueno-ublk perf::affinity::tests::test_avoiding_interrupt_core
        PASS [   0.006s] (  88/1013) trueno-ublk perf::affinity::tests::test_cpu_affinity_validate_empty
        PASS [   0.013s] (  89/1013) trueno-ublk device::tests::test_various_data_patterns
        PASS [   0.005s] (  90/1013) trueno-ublk perf::affinity::tests::test_cpu_affinity_default
        PASS [   0.005s] (  91/1013) trueno-ublk perf::affinity::tests::test_cpu_affinity_validate_success
        PASS [   0.006s] (  92/1013) trueno-ublk perf::affinity::tests::test_cpu_affinity_from_vec
        PASS [   0.026s] (  93/1013) trueno-ublk device::tests::popperian_b22_zero_page_deduplication_efficiency
        PASS [   0.004s] (  94/1013) trueno-ublk perf::batch::tests::test_batch_coalescer_add_single
        PASS [   0.007s] (  95/1013) trueno-ublk perf::affinity::tests::test_cpu_affinity_spread
        PASS [   0.027s] (  96/1013) trueno-ublk device::tests::popperian_a18_concurrent_read_write
        PASS [   0.007s] (  97/1013) trueno-ublk perf::affinity::tests::test_cpu_affinity_validate_invalid_core
        PASS [   0.009s] (  98/1013) trueno-ublk perf::affinity::tests::test_cpu_affinity_auto_select_more_threads_than_cores
        PASS [   0.007s] (  99/1013) trueno-ublk perf::affinity::tests::test_cpu_affinity_new
        PASS [   0.037s] ( 100/1013) trueno-ublk daemon::tests::test_data_pollution_checksums
        PASS [   0.008s] ( 101/1013) trueno-ublk perf::affinity::tests::test_cpu_affinity_core_for_thread
        PASS [   0.006s] ( 102/1013) trueno-ublk perf::affinity::tests::test_worker_thread_pattern
        PASS [   0.006s] ( 103/1013) trueno-ublk perf::batch::tests::test_batch_coalescer_flush_on_size
        PASS [   0.007s] ( 104/1013) trueno-ublk perf::batch::tests::test_batch_coalescer_non_sequential_detection
        PASS [   0.007s] ( 105/1013) trueno-ublk perf::batch::tests::test_batch_coalescer_min_max_batch_tracking
        PASS [   0.004s] ( 106/1013) trueno-ublk perf::batch::tests::test_batch_config_default
        PASS [   0.004s] ( 107/1013) trueno-ublk perf::batch::tests::test_batch_coalescer_timeout_check_no_pending
        PASS [   0.009s] ( 108/1013) trueno-ublk perf::affinity::tests::test_is_core_online
        PASS [   0.009s] ( 109/1013) trueno-ublk perf::affinity::tests::test_get_current_affinity
        PASS [   0.030s] ( 110/1013) trueno-ublk device::tests::popperian_a19_concurrent_write_write
        PASS [   0.006s] ( 111/1013) trueno-ublk perf::batch::tests::test_batch_coalescer_sequential_detection
        PASS [   0.030s] ( 112/1013) trueno-ublk device::tests::popperian_b23_compression_ratio_text_data
        PASS [   0.005s] ( 113/1013) trueno-ublk perf::batch::tests::test_batch_coalescer_stats
        PASS [   0.010s] ( 114/1013) trueno-ublk perf::affinity::tests::test_pin_thread_empty
        PASS [   0.009s] ( 115/1013) trueno-ublk perf::affinity::tests::test_pin_current_thread_empty
        PASS [   0.006s] ( 116/1013) trueno-ublk perf::batch::tests::test_batch_coalescer_sequential_with_gap_threshold
        PASS [   0.005s] ( 117/1013) trueno-ublk perf::batch::tests::test_batch_config_clone
        PASS [   0.009s] ( 118/1013) trueno-ublk perf::affinity::tests::test_get_num_cpus
        PASS [   0.009s] ( 119/1013) trueno-ublk perf::batch::tests::test_batch_coalescer_new
        PASS [   0.007s] ( 120/1013) trueno-ublk perf::batch::tests::test_batch_coalescer_timeout_check_not_expired
        PASS [   0.005s] ( 121/1013) trueno-ublk perf::batch::tests::test_batch_config_validate_max_too_large
        PASS [   0.006s] ( 122/1013) trueno-ublk perf::batch::tests::test_batch_config_high_throughput
        PASS [   0.005s] ( 123/1013) trueno-ublk perf::batch::tests::test_batch_config_validate_zero_min
        PASS [   0.004s] ( 124/1013) trueno-ublk perf::batch::tests::test_batch_stats_sequential_rate
        PASS [   0.009s] ( 125/1013) trueno-ublk perf::batch::tests::test_batch_coalescer_separate_read_write
        PASS [   0.005s] ( 126/1013) trueno-ublk perf::batch::tests::test_batch_stats_avg_batch_size
        PASS [   0.005s] ( 127/1013) trueno-ublk perf::batch::tests::test_batch_config_validate_success
        PASS [   0.005s] ( 128/1013) trueno-ublk perf::batch::tests::test_batch_config_validate_max_less_than_min
        PASS [   0.006s] ( 129/1013) trueno-ublk perf::batch::tests::test_batch_config_low_latency
        PASS [   0.006s] ( 130/1013) trueno-ublk perf::batch::tests::test_batch_start_sector
        PASS [   0.005s] ( 131/1013) trueno-ublk perf::batch::tests::test_batch_stats_sequential_rate_zero
        PASS [   0.007s] ( 132/1013) trueno-ublk perf::batch::tests::test_batch_stats_avg_batch_size_zero
        PASS [   0.004s] ( 133/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_context_from_cli_minimal
        PASS [   0.004s] ( 134/1013) trueno-ublk perf::batch::tests::test_page_request_end_sector
        PASS [   0.004s] ( 135/1013) trueno-ublk perf::batch::tests::test_page_batch_clone
        PASS [   0.004s] ( 136/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_context_max_perf_preset
        PASS [   0.004s] ( 137/1013) trueno-ublk perf::batch::tests::test_batch_total_sectors
        PASS [   0.004s] ( 138/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_context_high_perf_preset
        PASS [   0.006s] ( 139/1013) trueno-ublk perf::batch::tests::test_page_request_byte_len
        PASS [   0.005s] ( 140/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_alloc_buffer_with_numa
        PASS [   0.006s] ( 141/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_alloc_buffer_no_numa
        PASS [   0.005s] ( 142/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_context_new_default
        PASS [   0.004s] ( 143/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_error_display_numa
        PASS [   0.006s] ( 144/1013) trueno-ublk perf::batch::tests::test_page_batch_total_bytes
        PASS [   0.004s] ( 145/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_flush_batch
        PASS [   0.006s] ( 146/1013) trueno-ublk perf::batch::tests::test_page_batch_empty
        PASS [   0.006s] ( 147/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_context_from_cli_full
        PASS [   0.004s] ( 148/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_interrupt_mode_tracking
        PASS [   0.007s] ( 149/1013) trueno-ublk perf::batch::tests::test_page_request_clone
        PASS [   0.007s] ( 150/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_poll_completion_disabled
        PASS [   0.007s] ( 151/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_error_display_affinity
        PASS [   0.009s] ( 152/1013) trueno-ublk perf::batch::tests::test_page_request_new
        PASS [   0.008s] ( 153/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_mixed_polling_and_batching
        PASS [   0.007s] ( 154/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_poll_empty
        PASS [   0.008s] ( 155/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_poll_completion_ready
        PASS [   0.004s] ( 156/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_submit_request_batched
        PASS [   0.005s] ( 157/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_stats_new
        PASS [   0.005s] ( 158/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_stats_polling_efficiency
        PASS [   0.004s] ( 159/1013) trueno-ublk perf::numa::tests::test_buffer_pool_get_buffer
        PASS [   0.008s] ( 160/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_full_write_flow
        PASS [   0.005s] ( 161/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_context_with_polling
        PASS [   0.005s] ( 162/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_stats_snapshot_derived_metrics
        PASS [   0.004s] ( 163/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_submit_request_no_batching
        PASS [   0.006s] ( 164/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_stats_record_batch
        PASS [   0.005s] ( 165/1013) trueno-ublk perf::numa::tests::test_buffer_pool_put_duplicate
        PASS [   0.006s] ( 166/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_stats_record_polled
        PASS [   0.006s] ( 167/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_stats_avg_batch_size
        PASS [   0.005s] ( 168/1013) trueno-ublk perf::numa::tests::test_buffer_pool_node
        PASS [   0.006s] ( 169/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_stats_snapshot
        PASS [   0.006s] ( 170/1013) trueno-ublk perf::numa::tests::test_buffer_pool_acquire_put
        PASS [   0.006s] ( 171/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_context_with_batching
        PASS [   0.004s] ( 172/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_sequential_detection
        PASS [   0.007s] ( 173/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_stats_record_interrupted
        PASS [   0.007s] ( 174/1013) trueno-ublk perf::numa::tests::test_buffer_pool_new
        PASS [   0.004s] ( 175/1013) trueno-ublk perf::numa::tests::test_cpu_in_list_mixed
        PASS [   0.004s] ( 176/1013) trueno-ublk perf::numa::tests::test_numa_alloc_small
        PASS [   0.004s] ( 177/1013) trueno-ublk perf::numa::tests::test_cpu_in_list_multiple
        PASS [   0.004s] ( 178/1013) trueno-ublk perf::numa::tests::test_cpu_in_list_single
        PASS [   0.004s] ( 179/1013) trueno-ublk perf::numa::tests::test_numa_allocator_clone
        PASS [   0.005s] ( 180/1013) trueno-ublk perf::numa::tests::test_numa_allocator_strict
        PASS [   0.005s] ( 181/1013) trueno-ublk perf::numa::tests::test_numa_alloc_large
        PASS [   0.005s] ( 182/1013) trueno-ublk perf::numa::tests::test_cpu_in_list_whitespace
        PASS [   0.005s] ( 183/1013) trueno-ublk perf::numa::tests::test_numa_allocator_default
        PASS [   0.005s] ( 184/1013) trueno-ublk perf::numa::tests::test_cpu_in_list_range
        PASS [   0.005s] ( 185/1013) trueno-ublk perf::numa::tests::test_numa_alloc_zero_size
        PASS [   0.005s] ( 186/1013) trueno-ublk perf::numa::tests::test_numa_allocator_for_current_cpu
        PASS [   0.005s] ( 187/1013) trueno-ublk perf::numa::tests::test_numa_is_available
        PASS [   0.006s] ( 188/1013) trueno-ublk perf::numa::tests::test_numa_alloc_with_node
        PASS [   0.004s] ( 189/1013) trueno-ublk perf::polling::tests::test_poll_result_empty
        PASS [   0.004s] ( 190/1013) trueno-ublk perf::polling::tests::test_poll_result_ready
        PASS [   0.011s] ( 191/1013) trueno-ublk perf::numa::tests::test_buffer_pool_put_invalid
        PASS [   0.007s] ( 192/1013) trueno-ublk perf::numa::tests::test_numa_allocator_new
        PASS [   0.006s] ( 193/1013) trueno-ublk perf::numa::tests::test_numa_get_current_node
        PASS [   0.005s] ( 194/1013) trueno-ublk perf::polling::tests::test_polling_config_aggressive
        PASS [   0.006s] ( 195/1013) trueno-ublk perf::numa::tests::test_numa_multi_node_aware
        PASS [   0.004s] ( 196/1013) trueno-ublk perf::polling::tests::test_polling_loop_adaptive_switch_to_interrupt
        PASS [   0.007s] ( 197/1013) trueno-ublk perf::numa::tests::test_numa_num_nodes
        PASS [   0.006s] ( 198/1013) trueno-ublk perf::polling::tests::test_polling_config_clone
        PASS [   0.007s] ( 199/1013) trueno-ublk perf::numa::tests::test_numa_workflow
        PASS [   0.005s] ( 200/1013) trueno-ublk perf::polling::tests::test_polling_config_validate_disabled_zero_spin_ok
        PASS [   0.008s] ( 201/1013) trueno-ublk perf::polling::tests::test_poll_result_switch_to_interrupt
        PASS [   0.009s] ( 202/1013) trueno-ublk perf::numa::tests::test_numa_error_debug
        PASS [   0.006s] ( 203/1013) trueno-ublk perf::polling::tests::test_polling_config_maximum
        PASS [   0.007s] ( 204/1013) trueno-ublk perf::polling::tests::test_polling_config_default
        PASS [   0.006s] ( 205/1013) trueno-ublk perf::polling::tests::test_polling_config_validate_zero_spin_cycles
        PASS [   0.005s] ( 206/1013) trueno-ublk perf::polling::tests::test_polling_loop_reset_stats
        PASS [   0.010s] ( 207/1013) trueno-ublk perf::numa::tests::test_numa_error_display
        PASS [   0.007s] ( 208/1013) trueno-ublk perf::polling::tests::test_polling_config_validate_success
        PASS [   0.007s] ( 209/1013) trueno-ublk perf::polling::tests::test_polling_loop_empty_poll
        PASS [   0.010s] ( 210/1013) trueno-ublk perf::numa::tests::test_numa_error_variants
        PASS [   0.007s] ( 211/1013) trueno-ublk perf::polling::tests::test_polling_loop_completion_resets_empty_count
        PASS [   0.005s] ( 212/1013) trueno-ublk perf::polling::tests::test_polling_loop_yields_tracked
        PASS [   0.063s] ( 213/1013) trueno-ublk daemon::tests::test_g113_single_page_read_latency
        PASS [   0.004s] ( 214/1013) trueno-ublk perf::polling::tests::test_polling_stats_default
        PASS [   0.008s] ( 215/1013) trueno-ublk perf::polling::tests::test_polling_config_validate_zero_max_wait
        PASS [   0.006s] ( 216/1013) trueno-ublk perf::polling::tests::test_polling_simulation_mixed_workload
        PASS [   0.005s] ( 217/1013) trueno-ublk perf::polling::tests::test_polling_stats_hit_rate
        PASS [   0.007s] ( 218/1013) trueno-ublk perf::polling::tests::test_polling_loop_successful_poll
        PASS [   0.005s] ( 219/1013) trueno-ublk perf::tests::test_perf_config_clone
        PASS [   0.008s] ( 220/1013) trueno-ublk perf::polling::tests::test_polling_loop_resume_polling
        PASS [   0.004s] ( 221/1013) trueno-ublk stats::tests::test_ratio_tracker
        PASS [   0.008s] ( 222/1013) trueno-ublk perf::polling::tests::test_polling_loop_spins_tracked
        PASS [   0.009s] ( 223/1013) trueno-ublk perf::polling::tests::test_polling_loop_new
        PASS [   0.007s] ( 224/1013) trueno-ublk perf::polling::tests::test_polling_stats_avg_batch_size
        PASS [   0.005s] ( 225/1013) trueno-ublk perf::polling::tests::test_polling_stats_reset
        PASS [   0.005s] ( 226/1013) trueno-ublk perf::tests::test_perf_config_high_performance
        PASS [   0.006s] ( 227/1013) trueno-ublk perf::polling::tests::test_polling_stats_hit_rate_zero
        PASS [   0.010s] ( 228/1013) trueno-ublk perf::polling::tests::test_polling_loop_batch_stats
        PASS [   0.007s] ( 229/1013) trueno-ublk perf::polling::tests::test_polling_stats_avg_batch_size_zero
        PASS [   0.006s] ( 230/1013) trueno-ublk stats::tests::test_entropy_tracker
        PASS [   0.008s] ( 231/1013) trueno-ublk perf::polling::tests::test_polling_stats_clone
        PASS [   0.008s] ( 232/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_cmd_ext_byte_conversion
        PASS [   0.071s] ( 233/1013) trueno-ublk daemon::tests::test_g110_cpu_parallel_compression_roundtrip
        PASS [   0.006s] ( 234/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_all_variants_have_errno
        PASS [   0.005s] ( 235/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_display_open_char
        PASS [   0.008s] ( 236/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_cmd_ext_transmute_roundtrip
        PASS [   0.005s] ( 237/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_display_start_dev
        PASS [   0.006s] ( 238/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_display_open_ctrl
        PASS [   0.005s] ( 239/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_display_stop_dev
        PASS [   0.008s] ( 240/1013) trueno-ublk ublk::ctrl::tests::test_add_dev_cmd_building
        PASS [   0.008s] ( 241/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_cmd_default
        PASS [   0.010s] ( 242/1013) trueno-ublk perf::tests::test_perf_config_maximum
        PASS [   0.006s] ( 243/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_dev_id_some
        PASS [   0.006s] ( 244/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_display_add_dev
        PASS [   0.011s] ( 245/1013) trueno-ublk perf::tests::test_perf_config_default
        PASS [   0.007s] ( 246/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_display_del_dev
        PASS [   0.009s] ( 247/1013) trueno-ublk ublk::ctrl::tests::test_char_device_path
        PASS [   0.006s] ( 248/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_is_resource_error_enomem
        PASS [   0.007s] ( 249/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_display_io_uring
        PASS [   0.008s] ( 250/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_device_path
        PASS [   0.010s] ( 251/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_cmd_ext_size
        PASS [   0.009s] ( 252/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_cmd_with_data
        PASS [   0.008s] ( 253/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_display_set_params
        PASS [   0.008s] ( 254/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_not_resource_error
        PASS [   0.004s] ( 255/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_to_errno_default
        PASS [   0.004s] ( 256/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_not_retriable
        PASS [   0.008s] ( 257/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_is_retriable_ebusy
        PASS [   0.009s] ( 258/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_is_retriable_eagain
        PASS [   0.007s] ( 259/1013) trueno-ublk ublk::ctrl::tests::test_dev_id_io_uring_none
        PASS [   0.007s] ( 260/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_to_errno
        PASS [   0.007s] ( 261/1013) trueno-ublk ublk::ctrl::tests::test_dev_id_open_char
        PASS [   0.007s] ( 262/1013) trueno-ublk ublk::ctrl::tests::test_dev_id_del_dev
        PASS [   0.013s] ( 263/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_dev_id_none
        PASS [   0.007s] ( 264/1013) trueno-ublk ublk::ctrl::tests::test_dev_id_stop_dev
        PASS [   0.006s] ( 265/1013) trueno-ublk ublk::ctrl::tests::test_device_paths
        PASS [   0.006s] ( 266/1013) trueno-ublk ublk::ctrl::tests::test_device_config_default
        PASS [   0.007s] ( 267/1013) trueno-ublk ublk::ctrl::tests::test_dev_id_add_dev
        PASS [   0.012s] ( 268/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_is_resource_error_emfile
        PASS [   0.005s] ( 269/1013) trueno-ublk ublk::ctrl::tests::test_is_resource_error_open_char_not_resource
        PASS [   0.006s] ( 270/1013) trueno-ublk ublk::ctrl::tests::test_is_retriable_add_dev_ebusy
        PASS [   0.007s] ( 271/1013) trueno-ublk ublk::ctrl::tests::test_device_config_debug
        PASS [   0.006s] ( 272/1013) trueno-ublk ublk::ctrl::tests::test_is_resource_error_open_char_enfile
        PASS [   0.068s] ( 273/1013) trueno-ublk device::tests::popperian_c35_latency_qd1
        PASS [   0.014s] ( 274/1013) trueno-ublk ublk::ctrl::tests::test_ctrl_error_debug
        PASS [   0.008s] ( 275/1013) trueno-ublk ublk::ctrl::tests::test_device_config_custom
        PASS [   0.004s] ( 276/1013) trueno-ublk ublk::ctrl::tests::test_mock_ctrl_block_dev_path
        PASS [   0.079s] ( 277/1013) trueno-ublk daemon::tests::test_g109_simd_pages_stat_increments
        PASS [   0.008s] ( 278/1013) trueno-ublk ublk::ctrl::tests::test_dev_id_set_params
        PASS [   0.008s] ( 279/1013) trueno-ublk ublk::ctrl::tests::test_device_config_clone
        PASS [   0.006s] ( 280/1013) trueno-ublk ublk::ctrl::tests::test_mock_ctrl_dev_info
        PASS [   0.008s] ( 281/1013) trueno-ublk ublk::ctrl::tests::test_is_retriable_del_dev_ebusy
        PASS [   0.007s] ( 282/1013) trueno-ublk ublk::ctrl::tests::test_mock_ctrl_command_dev_id_consistency
        PASS [   0.007s] ( 283/1013) trueno-ublk ublk::ctrl::tests::test_mock_ctrl_delete
        PASS [   0.007s] ( 284/1013) trueno-ublk ublk::ctrl::tests::test_is_retriable_set_params_eagain
        PASS [   0.009s] ( 285/1013) trueno-ublk ublk::ctrl::tests::test_is_retriable_add_dev_eagain
        PASS [   0.008s] ( 286/1013) trueno-ublk ublk::ctrl::tests::test_is_retriable_open_char_not_retriable
        PASS [   0.009s] ( 287/1013) trueno-ublk ublk::ctrl::tests::test_error_mapping
        PASS [   0.011s] ( 288/1013) trueno-ublk ublk::ctrl::tests::test_dev_info_initialization
        PASS [   0.004s] ( 289/1013) trueno-ublk ublk::ctrl::tests::test_params_discard
        PASS [   0.004s] ( 290/1013) trueno-ublk ublk::ctrl::tests::test_mock_ctrl_set_params
        PASS [   0.004s] ( 291/1013) trueno-ublk ublk::ctrl::tests::test_mock_ctrl_start_stop
        PASS [   0.005s] ( 292/1013) trueno-ublk ublk::ctrl::tests::test_mock_ctrl_full_lifecycle
        PASS [   0.005s] ( 293/1013) trueno-ublk ublk::ctrl::tests::test_mock_ctrl_submit_add_dev
        PASS [   0.005s] ( 294/1013) trueno-ublk ublk::ctrl::tests::test_mock_ctrl_params_dev_sectors
        PASS [   0.005s] ( 295/1013) trueno-ublk ublk::ctrl::tests::test_set_params_cmd_building
        PASS [   0.005s] ( 296/1013) trueno-ublk ublk::ctrl::tests::test_mock_ctrl_submit_unknown_command
        PASS [   0.005s] ( 297/1013) trueno-ublk ublk::ctrl::tests::test_result_to_error_conversion
        PASS [   0.006s] ( 298/1013) trueno-ublk ublk::ctrl::tests::test_mock_ctrl_new
        PASS [   0.005s] ( 299/1013) trueno-ublk ublk::ctrl::tests::test_params_layout
        PASS [   0.005s] ( 300/1013) trueno-ublk ublk::ctrl::tests::test_params_initialization
        PASS [   0.006s] ( 301/1013) trueno-ublk ublk::ctrl::tests::test_mock_ctrl_with_specific_dev_id
        PASS [   0.006s] ( 302/1013) trueno-ublk ublk::ctrl::tests::test_params_basic_sectors
        PASS [   0.006s] ( 303/1013) trueno-ublk ublk::ctrl::tests::test_to_errno_open_ctrl
        PASS [   0.008s] ( 304/1013) trueno-ublk ublk::ctrl::tests::test_mock_ctrl_max_io_buf_bytes
        PASS [   0.005s] ( 305/1013) trueno-ublk ublk::daemon::tests::test_batched_daemon_config_custom_perf
        PASS [   0.008s] ( 306/1013) trueno-ublk ublk::ctrl::tests::test_start_cmd_building
        PASS [   0.004s] ( 307/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_display_queue_full
        PASS [   0.005s] ( 308/1013) trueno-ublk ublk::daemon::tests::test_batched_daemon_config_with_perf
        PASS [   0.005s] ( 309/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_display_stopped
        PASS [   0.009s] ( 310/1013) trueno-ublk ublk::ctrl::tests::test_to_errno_del_dev
        PASS [   0.006s] ( 311/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_debug
        PASS [   0.006s] ( 312/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_display_io_uring_create
        PASS [   0.006s] ( 313/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_display_ctrl
        PASS [   0.004s] ( 314/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_from_ctrl
        PASS [   0.006s] ( 315/1013) trueno-ublk ublk::ctrl::tests::test_to_errno_start_dev
        PASS [   0.008s] ( 316/1013) trueno-ublk ublk::ctrl::tests::test_to_errno_open_char
        PASS [   0.004s] ( 317/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_not_resource_ctrl
        PASS [   0.009s] ( 318/1013) trueno-ublk ublk::ctrl::tests::test_to_errno_io_uring
        PASS [   0.004s] ( 319/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_is_retriable_would_block
        PASS [   0.007s] ( 320/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_all_variants_have_errno
        PASS [   0.011s] ( 321/1013) trueno-ublk ublk::ctrl::tests::test_stop_cmd_building
        PASS [   0.008s] ( 322/1013) trueno-ublk ublk::ctrl::tests::test_to_errno_stop_dev
        PASS [   0.006s] ( 323/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_is_resource_io_uring_create
        PASS [   0.007s] ( 324/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_display_would_block
        PASS [   0.006s] ( 325/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_not_resource_would_block
        PASS [   0.007s] ( 326/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_not_resource_error
        PASS [   0.008s] ( 327/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_display_submit
        PASS [   0.009s] ( 328/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_display_mmap
        PASS [   0.005s] ( 329/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_not_retriable
        PASS [   0.004s] ( 330/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_to_errno_stopped
        PASS [   0.008s] ( 331/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_not_resource_submit
        PASS [   0.009s] ( 332/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_is_resource_error
        PASS [   0.005s] ( 333/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_to_errno_mmap
        PASS [   0.005s] ( 334/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_not_retriable_mmap
        PASS [   0.004s] ( 335/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_to_errno_would_block
        PASS [   0.008s] ( 336/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_is_retriable_queue_full
        PASS [   0.006s] ( 337/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_to_errno_ctrl
        PASS [   0.005s] ( 338/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_to_errno_submit_default
        PASS [   0.006s] ( 339/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_to_errno_queue_full
        PASS [   0.012s] ( 340/1013) trueno-ublk ublk::daemon::tests::test_batched_daemon_config_with_max_perf
        PASS [   0.007s] ( 341/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_not_retriable_io_uring_create
        PASS [   0.007s] ( 342/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_not_retriable_ctrl
        PASS [   0.007s] ( 343/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_to_errno_io_uring_create_default
        PASS [   0.008s] ( 344/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_not_retriable_submit
        PASS [   0.005s] ( 345/1013) trueno-ublk ublk::daemon::tests::test_io_cmd_layout
        PASS [   0.004s] ( 346/1013) trueno-ublk ublk::daemon::tests::test_iod_buf_size_boundary
        PASS [   0.008s] ( 347/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_to_errno_submit
        PASS [   0.005s] ( 348/1013) trueno-ublk ublk::daemon::tests::test_io_desc_sector_calculation
        PASS [   0.005s] ( 349/1013) trueno-ublk ublk::daemon::tests::test_hiperf_polling_ready_immediate
        PASS [   0.005s] ( 350/1013) trueno-ublk ublk::daemon::tests::test_iod_buf_size
        PASS [   0.004s] ( 351/1013) trueno-ublk ublk::daemon::tests::test_iod_buf_size_small_depth
        PASS [   0.006s] ( 352/1013) trueno-ublk ublk::daemon::tests::test_device_config_for_daemon
        PASS [   0.008s] ( 353/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_to_errno_mmap_default
        PASS [   0.008s] ( 354/1013) trueno-ublk ublk::daemon::tests::test_daemon_error_to_errno_io_uring_create_specific
        PASS [   0.004s] ( 355/1013) trueno-ublk ublk::daemon::tests::test_mock_daemon_block_dev_path
        PASS [   0.004s] ( 356/1013) trueno-ublk ublk::daemon::tests::test_mock_daemon_new
        PASS [   0.007s] ( 357/1013) trueno-ublk ublk::daemon::tests::test_io_desc_operation_types
        PASS [   0.006s] ( 358/1013) trueno-ublk ublk::daemon::tests::test_mock_daemon_io_loop_simulation
        PASS [   0.004s] ( 359/1013) trueno-ublk ublk::daemon::tests::test_mock_daemon_submit_commit_and_fetch
        PASS [   0.005s] ( 360/1013) trueno-ublk ublk::daemon::tests::test_mock_daemon_process_unknown_op
        PASS [   0.005s] ( 361/1013) trueno-ublk ublk::daemon::tests::test_mock_daemon_process_discard
        PASS [   0.005s] ( 362/1013) trueno-ublk ublk::daemon::tests::test_mock_daemon_process_write
        PASS [   0.008s] ( 363/1013) trueno-ublk ublk::daemon::tests::test_hiperf_polling_empty_continues
        PASS [   0.006s] ( 364/1013) trueno-ublk ublk::daemon::tests::test_mock_daemon_process_read
        PASS [   0.010s] ( 365/1013) trueno-ublk ublk::daemon::tests::test_hiperf_polling_switch_to_interrupt
        PASS [   0.006s] ( 366/1013) trueno-ublk ublk::daemon::tests::test_mock_daemon_submit_fetch
        PASS [   0.005s] ( 367/1013) trueno-ublk ublk::daemon::tests::test_user_copy_offset
        PASS [   0.006s] ( 368/1013) trueno-ublk ublk::daemon::tests::test_perf003_iops_scaling_hypothesis
        PASS [   0.010s] ( 369/1013) trueno-ublk ublk::daemon::tests::test_hiperf_stats_tracking
        PASS [   0.009s] ( 370/1013) trueno-ublk ublk::daemon::tests::test_iod_buf_size_various_depths
        PASS [   0.005s] ( 371/1013) trueno-ublk ublk::daemon::tests::test_perf003_queue_worker_config
        PASS [   0.008s] ( 372/1013) trueno-ublk ublk::daemon::tests::test_mock_daemon_process_write_zeroes
        PASS [   0.005s] ( 373/1013) trueno-ublk ublk::io::tests::test_build_commit_fetch_cmd
        PASS [   0.011s] ( 374/1013) trueno-ublk ublk::daemon::tests::test_io_cmd_transmute_roundtrip
        PASS [   0.009s] ( 375/1013) trueno-ublk ublk::daemon::tests::test_mock_daemon_process_flush
        PASS [   0.006s] ( 376/1013) trueno-ublk ublk::daemon::tests::test_user_copy_offset_combined
        PASS [   0.004s] ( 377/1013) trueno-ublk ublk::io::tests::test_io_op_is_write
        PASS [   0.009s] ( 378/1013) trueno-ublk ublk::daemon::tests::test_perf003_device_config_multi_queue
        PASS [   0.008s] ( 379/1013) trueno-ublk ublk::daemon::tests::test_perf003_mock_multi_queue_daemon
        PASS [   0.005s] ( 380/1013) trueno-ublk ublk::io::tests::test_commit_and_fetch_chaining
        PASS [   0.005s] ( 381/1013) trueno-ublk ublk::io::tests::test_fetch_req_opcode
        PASS [   0.007s] ( 382/1013) trueno-ublk ublk::daemon::tests::test_user_copy_offset_queue_id
        PASS [   0.009s] ( 383/1013) trueno-ublk ublk::daemon::tests::test_perf003_multi_queue_buffer_size
        PASS [   0.010s] ( 384/1013) trueno-ublk ublk::io::tests::test_build_commit_fetch_cmd_error
        PASS [   0.010s] ( 385/1013) trueno-ublk ublk::daemon::tests::test_user_copy_offset_with_offset
        PASS [   0.008s] ( 386/1013) trueno-ublk ublk::io::tests::test_falsify_zero_sectors
        PASS [   0.008s] ( 387/1013) trueno-ublk ublk::io::tests::test_falsify_sector_out_of_bounds
        PASS [   0.008s] ( 388/1013) trueno-ublk ublk::io::tests::test_build_fetch_cmd
        PASS [   0.008s] ( 389/1013) trueno-ublk ublk::io::tests::test_io_op_from_u8
        PASS [   0.006s] ( 390/1013) trueno-ublk ublk::io::tests::test_io_request_byte_len
        PASS [   0.006s] ( 391/1013) trueno-ublk ublk::io::tests::test_io_op_needs_data
        PASS [   0.006s] ( 392/1013) trueno-ublk ublk::io::tests::test_io_request_validate_flush_zero_sectors
        PASS [   0.005s] ( 393/1013) trueno-ublk ublk::io::tests::test_io_result_error
        PASS [   0.006s] ( 394/1013) trueno-ublk ublk::io::tests::test_io_request_from_desc
        PASS [   0.012s] ( 395/1013) trueno-ublk ublk::daemon::tests::test_perf003_queue_buffer_offsets
        PASS [   0.007s] ( 396/1013) trueno-ublk ublk::io::tests::test_io_request_validate_out_of_bounds
        PASS [   0.007s] ( 397/1013) trueno-ublk ublk::io::tests::test_io_result_success
        PASS [   0.008s] ( 398/1013) trueno-ublk ublk::io::tests::test_io_request_validate_zero_sectors
        PASS [   0.100s] ( 399/1013) trueno-ublk device::tests::popperian_b21_leak_check_create_destroy
        PASS [   0.008s] ( 400/1013) trueno-ublk ublk::io::tests::test_io_request_validate_success
        PASS [   0.007s] ( 401/1013) trueno-ublk ublk::io::tests::test_user_copy_offset_with_queue
        PASS [   0.008s] ( 402/1013) trueno-ublk ublk::io::tests::test_user_copy_addr_zero
        PASS [   0.010s] ( 403/1013) trueno-ublk ublk::io::tests::test_io_request_byte_offset
        PASS [   0.010s] ( 404/1013) trueno-ublk ublk::io::tests::test_io_result_end_of_device
        PASS [   0.005s] ( 405/1013) trueno-ublk ublk::shim::tests::test_io_completion_debug
        PASS [   0.005s] ( 406/1013) trueno-ublk ublk::multi_queue::tests::test_perf003_should_use_multi_queue
        PASS [   0.011s] ( 407/1013) trueno-ublk ublk::io::tests::test_tag_range
        PASS [   0.007s] ( 408/1013) trueno-ublk ublk::multi_queue::tests::test_perf003_multi_queue_buffer_size_calculation
        PASS [   0.010s] ( 409/1013) trueno-ublk ublk::io::tests::test_user_copy_offset_combined
        PASS [   0.014s] ( 410/1013) trueno-ublk ublk::io::tests::test_io_request_validate_overflow
        PASS [   0.004s] ( 411/1013) trueno-ublk ublk::shim::tests::test_mock_io_uring_completions
        PASS [   0.004s] ( 412/1013) trueno-ublk ublk::shim::tests::test_mock_io_uring_submit_and_wait
        PASS [   0.009s] ( 413/1013) trueno-ublk ublk::multi_queue::tests::test_perf003_concurrent_queue_processing
        PASS [   0.008s] ( 414/1013) trueno-ublk ublk::multi_queue::tests::test_perf003_queue_stats_tracking
        PASS [   0.006s] ( 415/1013) trueno-ublk ublk::shim::tests::test_mock_daemon_shim_mmap_fail
        PASS [   0.010s] ( 416/1013) trueno-ublk ublk::io::tests::test_user_copy_offset_with_tag
        PASS [   0.005s] ( 417/1013) trueno-ublk ublk::shim::tests::test_mock_io_uring_add_completion
        PASS [   0.008s] ( 418/1013) trueno-ublk ublk::shim::tests::test_mmap_result_debug
        PASS [   0.007s] ( 419/1013) trueno-ublk ublk::shim::tests::test_mock_daemon_shim_mmap_anonymous
        PASS [   0.008s] ( 420/1013) trueno-ublk ublk::shim::tests::test_mock_daemon_shim_default
        PASS [   0.006s] ( 421/1013) trueno-ublk ublk::shim::tests::test_mock_daemon_shim_munmap
        PASS [   0.008s] ( 422/1013) trueno-ublk ublk::shim::tests::test_mock_daemon_shim_create_io_uring
        PASS [   0.009s] ( 423/1013) trueno-ublk ublk::shim::tests::test_ctrl_cmd_result_clone
        PASS [   0.015s] ( 424/1013) trueno-ublk ublk::io::tests::test_io_op_to_opcode
        PASS [   0.006s] ( 425/1013) trueno-ublk ublk::shim::tests::test_mock_daemon_shim_pwrite
        PASS [   0.009s] ( 426/1013) trueno-ublk ublk::shim::tests::test_io_completion_clone
        PASS [   0.009s] ( 427/1013) trueno-ublk ublk::multi_queue::tests::test_perf003_queue_cpu_affinity_config
        PASS [   0.011s] ( 428/1013) trueno-ublk ublk::multi_queue::tests::test_perf003_multi_queue_stats_aggregation
        PASS [   0.013s] ( 429/1013) trueno-ublk ublk::io::tests::test_user_copy_offset_base
        PASS [   0.009s] ( 430/1013) trueno-ublk ublk::multi_queue::tests::test_perf003_queue_worker_config_offsets
        PASS [   0.010s] ( 431/1013) trueno-ublk ublk::multi_queue::tests::test_perf003_optimal_queue_count
        PASS [   0.104s] ( 432/1013) trueno-ublk device::tests::popperian_c39_algorithm_switch
        PASS [   0.010s] ( 433/1013) trueno-ublk ublk::shim::tests::test_ctrl_cmd_result_debug
        PASS [   0.006s] ( 434/1013) trueno-ublk ublk::shim::tests::test_mock_io_uring_submit_commit_fetch
        PASS [   0.015s] ( 435/1013) trueno-ublk ublk::io::tests::test_io_result_would_block
        PASS [   0.008s] ( 436/1013) trueno-ublk ublk::shim::tests::test_mock_daemon_shim_pread
        PASS [   0.005s] ( 437/1013) trueno-ublk ublk::shim::tests::test_mock_kernel_shim_add_dev_fail
        PASS [   0.005s] ( 438/1013) trueno-ublk ublk::shim::tests::test_mock_kernel_shim_del_dev
        PASS [   0.005s] ( 439/1013) trueno-ublk ublk::shim::tests::test_mock_kernel_shim_command_tracking
        PASS [   0.007s] ( 440/1013) trueno-ublk ublk::shim::tests::test_mock_io_uring_submit_fetch
        PASS [   0.004s] ( 441/1013) trueno-ublk ublk::shim::tests::test_mock_kernel_shim_unknown_cmd
        PASS [   0.007s] ( 442/1013) trueno-ublk ublk::shim::tests::test_mock_kernel_shim_add_dev
        PASS [   0.011s] ( 443/1013) trueno-ublk ublk::shim::tests::test_mock_daemon_shim_mmap_iod_buffer
        PASS [   0.005s] ( 444/1013) trueno-ublk ublk::shim::tests::test_mock_kernel_shim_start_dev
        PASS [   0.005s] ( 445/1013) trueno-ublk ublk::shim::tests::test_mock_kernel_shim_set_params
        PASS [   0.005s] ( 446/1013) trueno-ublk ublk::shim::tests::test_mock_kernel_shim_stop_dev
        PASS [   0.007s] ( 447/1013) trueno-ublk ublk::shim::tests::test_mock_kernel_shim_auto_increment_dev_id
        PASS [   0.006s] ( 448/1013) trueno-ublk ublk::shim::tests::test_mock_kernel_shim_open_char_device
        PASS [   0.111s] ( 449/1013) trueno-ublk device::tests::popperian_b27_fd_leak_check
        PASS [   0.005s] ( 450/1013) trueno-ublk ublk::sys::tests::test_ctrl_dev_info_size
        PASS [   0.006s] ( 451/1013) trueno-ublk ublk::shim::tests::test_mock_kernel_shim_open_ctrl
        PASS [   0.005s] ( 452/1013) trueno-ublk ublk::sys::tests::test_ctrl_cmd_default
        PASS [   0.005s] ( 453/1013) trueno-ublk ublk::sys::tests::test_device_paths
        PASS [   0.005s] ( 454/1013) trueno-ublk ublk::sys::tests::test_ioctl_commit_and_fetch
        PASS [   0.004s] ( 455/1013) trueno-ublk ublk::sys::tests::test_ioctl_fetch_req
        PASS [   0.006s] ( 456/1013) trueno-ublk ublk::sys::tests::test_default_queue_params
        PASS [   0.007s] ( 457/1013) trueno-ublk ublk::shim::tests::test_mock_kernel_shim_default
        PASS [   0.007s] ( 458/1013) trueno-ublk ublk::shim::tests::test_mock_kernel_shim_open_ctrl_fail
        PASS [   0.006s] ( 459/1013) trueno-ublk ublk::sys::tests::test_io_op_values
        PASS [   0.004s] ( 460/1013) trueno-ublk ublk::sys::tests::test_ioctl_iow_helper
        PASS [   0.006s] ( 461/1013) trueno-ublk ublk::sys::tests::test_io_cmd_ext_size
        PASS [   0.005s] ( 462/1013) trueno-ublk ublk::sys::tests::test_ioctl_ior_helper
        PASS [   0.006s] ( 463/1013) trueno-ublk ublk::sys::tests::test_ctrl_cmd_ext_size
        PASS [   0.007s] ( 464/1013) trueno-ublk ublk::sys::tests::test_buf_offset
        PASS [   0.007s] ( 465/1013) trueno-ublk ublk::sys::tests::test_ioctl_control_commands
        PASS [   0.008s] ( 466/1013) trueno-ublk ublk::sys::tests::test_device_flags
        PASS [   0.004s] ( 467/1013) trueno-ublk ublk::sys::tests::test_struct_alignment
        PASS [   0.005s] ( 468/1013) trueno-ublk ublk::sys::tests::test_sector_size
        PASS [   0.004s] ( 469/1013) trueno-ublk ublk::sys::tests::test_ublk_io_cmd_size
        PASS [   0.008s] ( 470/1013) trueno-ublk ublk::sys::tests::test_ioctl_io_helper
        PASS [   0.009s] ( 471/1013) trueno-ublk ublk::sys::tests::test_ioctl_add_dev
        PASS [   0.004s] ( 472/1013) trueno-zram-adaptive classifier::tests::test_batch_classifier_with_gpu
        PASS [   0.008s] ( 473/1013) trueno-ublk ublk::sys::tests::test_total_buf_size
        PASS [   0.007s] ( 474/1013) trueno-zram-adaptive classifier::tests::test_classifier_default
        PASS [   0.007s] ( 475/1013) trueno-ublk ublk::sys::tests::test_user_copy_offset_calculation
        PASS [   0.011s] ( 476/1013) trueno-ublk ublk::sys::tests::test_ioctl_encoding_consistency
        PASS [   0.008s] ( 477/1013) trueno-ublk ublk::sys::tests::test_ublk_ctrl_cmd_size
        PASS [   0.007s] ( 478/1013) trueno-ublk ublk::sys::tests::test_user_copy_flag
        PASS [   0.007s] ( 479/1013) trueno-zram-adaptive classifier::tests::test_batch_classifier_new
        PASS [   0.008s] ( 480/1013) trueno-ublk ublk::sys::tests::test_param_types
        PASS [   0.005s] ( 481/1013) trueno-zram-adaptive classifier::tests::test_compute_backend_debug
        PASS [   0.007s] ( 482/1013) trueno-zram-adaptive classifier::tests::test_batch_classifier_default
        PASS [   0.007s] ( 483/1013) trueno-zram-adaptive classifier::tests::test_batch_classifier_with_simd
        PASS [   0.009s] ( 484/1013) trueno-ublk ublk::sys::tests::test_iod_offset
        PASS [   0.008s] ( 485/1013) trueno-ublk ublk::sys::tests::test_ublk_io_cmd_layout
        PASS [   0.006s] ( 486/1013) trueno-zram-adaptive classifier::tests::test_classify_batch_multiple_pages
        PASS [   0.013s] ( 487/1013) trueno-ublk ublk::sys::tests::test_ctrl_cmd_ext_default
        PASS [   0.005s] ( 488/1013) trueno-zram-adaptive classifier::tests::test_compute_backend_equality
        PASS [   0.008s] ( 489/1013) trueno-ublk ublk::sys::tests::test_ublk_io_desc_layout
        PASS [   0.007s] ( 490/1013) trueno-ublk ublk::sys::tests::test_user_copy_offset_constants
        PASS [   0.008s] ( 491/1013) trueno-ublk ublk::sys::tests::test_ublk_ctrl_cmd_layout
        PASS [   0.005s] ( 492/1013) trueno-zram-adaptive classifier::tests::test_low_entropy_uses_lz4
        PASS [   0.007s] ( 493/1013) trueno-zram-adaptive classifier::tests::test_classify_batch_single_page
        PASS [   0.008s] ( 494/1013) trueno-zram-adaptive classifier::tests::test_classify_batch_empty
        PASS [   0.010s] ( 495/1013) trueno-ublk ublk::sys::tests::test_tag_range
        PASS [   0.010s] ( 496/1013) trueno-ublk ublk::sys::tests::test_mmap_alignment
        PASS [   0.007s] ( 497/1013) trueno-zram-adaptive classifier::tests::test_compute_backend_copy_clone
        PASS [   0.009s] ( 498/1013) trueno-ublk ublk::sys::tests::test_ublk_io_desc_size
        PASS [   0.005s] ( 499/1013) trueno-zram-adaptive classifier::tests::test_select_backend_boundary_gpu
        PASS [   0.006s] ( 500/1013) trueno-zram-adaptive classifier::tests::test_high_entropy_uses_fast_zstd
        PASS [   0.005s] ( 501/1013) trueno-zram-adaptive model::tests::test_model_new
        PASS [   0.005s] ( 502/1013) trueno-zram-adaptive model::tests::test_model_default
        PASS [   0.010s] ( 503/1013) trueno-zram-adaptive classifier::tests::test_entropy_level
        PASS [   0.005s] ( 504/1013) trueno-zram-adaptive classifier::tests::test_select_backend_no_gpu_fallback
        PASS [   0.005s] ( 505/1013) trueno-zram-adaptive classifier::tests::test_select_backend_scalar_small_batch
        PASS [   0.008s] ( 506/1013) trueno-zram-adaptive classifier::tests::test_medium_entropy_uses_zstd
        PASS [   0.008s] ( 507/1013) trueno-zram-adaptive classifier::tests::test_random_page_skips_compression
        PASS [   0.005s] ( 508/1013) trueno-zram-adaptive model::tests::test_predict_medium_unique_values
        PASS [   0.005s] ( 509/1013) trueno-zram-adaptive classifier::tests::test_zero_page_uses_lz4
        PASS [   0.005s] ( 510/1013) trueno-zram-adaptive entropy::tests::test_entropy_classification
        PASS [   0.005s] ( 511/1013) trueno-zram-adaptive classifier::tests::test_should_use_gpu_false_small_batch
        PASS [   0.005s] ( 512/1013) trueno-zram-adaptive classifier::tests::test_select_backend_no_simd_fallback
        PASS [   0.008s] ( 513/1013) trueno-zram-adaptive classifier::tests::test_select_backend_boundary_simd
        PASS [   0.005s] ( 514/1013) trueno-zram-adaptive model::tests::test_predict_single_value
        PASS [   0.006s] ( 515/1013) trueno-zram-adaptive model::tests::test_predict_high_entropy
        PASS [   0.006s] ( 516/1013) trueno-zram-adaptive classifier::tests::test_should_use_gpu_true
        PASS [   0.006s] ( 517/1013) trueno-zram-adaptive model::tests::test_predict_few_unique_values
        PASS [   0.005s] ( 518/1013) trueno-zram-adaptive model::tests::test_predict_zero_page
        PASS [   0.004s] ( 519/1013) trueno-zram-core benchmark::tests::test_benchmark_result_throughput
        PASS [   0.007s] ( 520/1013) trueno-zram-adaptive entropy::tests::test_uniform_random_entropy
        PASS [   0.007s] ( 521/1013) trueno-zram-adaptive classifier::tests::test_should_use_gpu_false_no_gpu
        PASS [   0.004s] ( 522/1013) trueno-zram-adaptive classifier::tests::test_select_backend_gpu_large_batch
        PASS [   0.008s] ( 523/1013) trueno-zram-adaptive classifier::tests::test_thresholds_reasonable
        PASS [   0.006s] ( 524/1013) trueno-zram-core benchmark::tests::test_benchmark_result_ratio_zero_output
        PASS [   0.009s] ( 525/1013) trueno-zram-core benchmark::tests::test_f057_adaptive_selection_works
        PASS [   0.008s] ( 526/1013) trueno-zram-core benchmark::tests::test_data_pattern_parse
        PASS [   0.005s] ( 527/1013) trueno-zram-core benchmark::tests::test_generate_mixed_pages
        PASS [   0.011s] ( 528/1013) trueno-zram-adaptive classifier::tests::test_select_backend_simd_medium_batch
        PASS [   0.011s] ( 529/1013) trueno-zram-adaptive entropy::tests::test_zero_page_entropy
        PASS [   0.007s] ( 530/1013) trueno-zram-core benchmark::tests::test_f063_compression_ratio_reasonable
        PASS [   0.006s] ( 531/1013) trueno-zram-core compat::tests::test_algorithm_is_supported
        PASS [   0.007s] ( 532/1013) trueno-zram-core benchmark::tests::test_run_benchmark_lz4
        PASS [   0.008s] ( 533/1013) trueno-zram-core benchmark::tests::test_parse_algorithm_lz4
        PASS [   0.006s] ( 534/1013) trueno-zram-core compat::tests::test_algorithm_lzo
        PASS [   0.008s] ( 535/1013) trueno-zram-core benchmark::tests::test_generate_text_pages
        PASS [   0.008s] ( 536/1013) trueno-zram-core benchmark::tests::test_parse_algorithm_invalid
        PASS [   0.007s] ( 537/1013) trueno-zram-core compat::tests::test_f066_sysfs_interface_compatible
        PASS [   0.008s] ( 538/1013) trueno-zram-core compat::tests::test_algorithm_deflate842
        PASS [   0.008s] ( 539/1013) trueno-zram-core benchmark::tests::test_run_benchmark_zstd
        PASS [   0.010s] ( 540/1013) trueno-zram-core benchmark::tests::test_parse_algorithm_all
        PASS [   0.008s] ( 541/1013) trueno-zram-core compat::tests::test_custom_attrs
        PASS [   0.005s] ( 542/1013) trueno-zram-core compat::tests::test_format_algorithms_all_variants
        PASS [   0.008s] ( 543/1013) trueno-zram-core compat::tests::test_f074_statistics_accurate
        PASS [   0.006s] ( 544/1013) trueno-zram-core compat::tests::test_io_stat_clone
        PASS [   0.011s] ( 545/1013) trueno-zram-core benchmark::tests::test_fill_pattern
        PASS [   0.011s] ( 546/1013) trueno-zram-core benchmark::tests::test_parse_algorithm_zstd
        PASS [   0.011s] ( 547/1013) trueno-zram-core benchmark::tests::test_generate_zero_pages
        PASS [   0.012s] ( 548/1013) trueno-zram-core benchmark::tests::test_generate_random_pages
        PASS [   0.012s] ( 549/1013) trueno-zram-core benchmark::tests::test_f061_warm_cache_faster
        PASS [   0.009s] ( 550/1013) trueno-zram-core compat::tests::test_f068_algorithm_string_parsing
        PASS [   0.006s] ( 551/1013) trueno-zram-core compat::tests::test_io_stat_default
        PASS [   0.009s] ( 552/1013) trueno-zram-core compat::tests::test_f072_multiple_devices_supported
        PASS [   0.004s] ( 553/1013) trueno-zram-core compat::tests::test_mm_stat_default
        PASS [   0.005s] ( 554/1013) trueno-zram-core compat::tests::test_read_attr
        PASS [   0.007s] ( 555/1013) trueno-zram-core compat::tests::test_io_stat_sysfs_format
        PASS [   0.005s] ( 556/1013) trueno-zram-core compat::tests::test_supported_algorithms
        PASS [   0.013s] ( 557/1013) trueno-zram-core compat::tests::test_algorithm_parse_whitespace
        PASS [   0.007s] ( 558/1013) trueno-zram-core compat::tests::test_mm_stat_from_sysfs_string_invalid
        PASS [   0.005s] ( 559/1013) trueno-zram-core compat::tests::test_read_attr_unknown
        PASS [   0.006s] ( 560/1013) trueno-zram-core compat::tests::test_mm_stat_sysfs_format
        PASS [   0.006s] ( 561/1013) trueno-zram-core compat::tests::test_read_attr_mm_stat
        PASS [   0.008s] ( 562/1013) trueno-zram-core compat::tests::test_io_stat_from_sysfs_string_invalid
        PASS [   0.004s] ( 563/1013) trueno-zram-core compat::tests::test_sysfs_interface_default
        PASS [   0.008s] ( 564/1013) trueno-zram-core compat::tests::test_mm_stat_clone
        PASS [   0.007s] ( 565/1013) trueno-zram-core compat::tests::test_read_attr_io_stat
        PASS [   0.011s] ( 566/1013) trueno-zram-core compat::tests::test_f075_reset_clears_all_data
        PASS [   0.005s] ( 567/1013) trueno-zram-core compat::tests::test_write_attr_algorithm
        PASS [   0.005s] ( 568/1013) trueno-zram-core compat::tests::test_update_stats_mem_max
        PASS [   0.006s] ( 569/1013) trueno-zram-core compat::tests::test_sysfs_interface_debug
        PASS [   0.019s] ( 570/1013) trueno-zram-core benchmark::tests::test_decompression_faster_than_compression
        PASS [   0.005s] ( 571/1013) trueno-zram-core compat::tests::test_write_attr_reset_not_one
        PASS [   0.011s] ( 572/1013) trueno-zram-core compat::tests::test_format_algorithms
        PASS [   0.006s] ( 573/1013) trueno-zram-core compat::tests::test_write_attr_reset
        PASS [   0.006s] ( 574/1013) trueno-zram-core compat::tests::test_write_attr_invalid_disksize
        PASS [   0.021s] ( 575/1013) trueno-zram-core benchmark::tests::test_f051_scalar_achieves_baseline
        PASS [   0.007s] ( 576/1013) trueno-zram-core compat::tests::test_write_attr_invalid_memlimit
        PASS [   0.006s] ( 577/1013) trueno-zram-core compat::tests::test_write_attr_unknown_algorithm
        PASS [   0.005s] ( 578/1013) trueno-zram-core compat::tests::test_zram_algorithm_clone
        PASS [   0.019s] ( 579/1013) trueno-zram-core benchmark::tests::test_f060_no_performance_regression
        PASS [   0.004s] ( 580/1013) trueno-zram-core error::tests::test_error_display_gpu_not_available
        PASS [   0.007s] ( 581/1013) trueno-zram-core compat::tests::test_write_attr_unsupported_algorithm
        PASS [   0.004s] ( 582/1013) trueno-zram-core gpu::batch::tests::test_batch_result_zero_time_throughput
        PASS [   0.006s] ( 583/1013) trueno-zram-core compat::tests::test_zram_algorithm_hash
        PASS [   0.009s] ( 584/1013) trueno-zram-core compat::tests::test_write_attr_mem_limit
        PASS [   0.010s] ( 585/1013) trueno-zram-core compat::tests::test_write_attr_disksize
        PASS [   0.005s] ( 586/1013) trueno-zram-core gpu::batch::tests::test_batch_result_pcie_rule_satisfied
        PASS [   0.006s] ( 587/1013) trueno-zram-core error::tests::test_error_implements_std_error
        PASS [   0.006s] ( 588/1013) trueno-zram-core gpu::batch::tests::test_batch_result_compression_ratio_empty
        PASS [   0.004s] ( 589/1013) trueno-zram-core gpu::batch::tests::test_f043_compression_ratio
        PASS [   0.008s] ( 590/1013) trueno-zram-core error::tests::test_error_display_invalid_input
        PASS [   0.009s] ( 591/1013) trueno-zram-core error::tests::test_error_display_buffer_too_small
        PASS [   0.008s] ( 592/1013) trueno-zram-core gpu::batch::tests::test_batch_result_debug
        PASS [   0.009s] ( 593/1013) trueno-zram-core gpu::batch::tests::test_batch_result_pcie_rule_not_satisfied
        PASS [   0.037s] ( 594/1013) trueno-zram-adaptive classifier::tests::test_classify_batch_gpu_routing
        PASS [   0.010s] ( 595/1013) trueno-zram-core error::tests::test_error_is_send_sync
        PASS [   0.015s] ( 596/1013) trueno-zram-core compat::tests::test_within_mem_limit
        PASS [   0.011s] ( 597/1013) trueno-zram-core error::tests::test_error_display_corrupted_data
        PASS [   0.013s] ( 598/1013) trueno-zram-core gpu::batch::tests::test_batch_result_clone
        PASS [   0.009s] ( 599/1013) trueno-zram-core gpu::batch::tests::test_f048_ring_buffer_config
        PASS [   0.013s] ( 600/1013) trueno-zram-core gpu::batch::tests::test_batch_result_compression_ratio
        PASS [   0.011s] ( 601/1013) trueno-zram-core gpu::batch::tests::test_f042_throughput_calculation
        PASS [   0.030s] ( 602/1013) trueno-zram-core benchmark::tests::test_f058_entropy_overhead_minimal
        PASS [   0.012s] ( 603/1013) trueno-zram-core gpu::batch::tests::test_f040_pcie_rule_detection
        PASS [   0.012s] ( 604/1013) trueno-zram-core gpu::batch::tests::test_f044_config_defaults
        PASS [   0.011s] ( 605/1013) trueno-zram-core gpu::batch::tests::test_f049_batch_result_throughput
        PASS [   0.011s] ( 606/1013) trueno-zram-core gpu::batch::tests::test_f050_stats_zero_throughput
        PASS [   0.010s] ( 607/1013) trueno-zram-core gpu::batch::tests::test_gpu_batch_stats_debug
        PASS [   0.035s] ( 608/1013) trueno-zram-core benchmark::tests::test_f055_latency_bounded
        PASS [   0.011s] ( 609/1013) trueno-zram-core gpu::batch::tests::test_gpu_batch_stats_clone
        PASS [   0.168s] ( 610/1013) trueno-ublk daemon::tests::test_g114_batch_read_latency
        PASS [   0.012s] ( 611/1013) trueno-zram-core gpu::batch::tests::test_gpu_batch_stats_default_values
        PASS [   0.013s] ( 612/1013) trueno-zram-core gpu::batch::tests::test_gpu_batch_config_debug
        PASS [   0.004s] ( 613/1013) trueno-zram-core gpu::hybrid::tests::test_hybrid_stats_gpu_utilization_zero
        PASS [   0.008s] ( 614/1013) trueno-zram-core gpu::batch::tests::test_would_benefit_large_batch
        PASS [   0.013s] ( 615/1013) trueno-zram-core gpu::batch::tests::test_gpu_batch_config_clone
        PASS [   0.004s] ( 616/1013) trueno-zram-core gpu::hybrid::tests::test_hybrid_stats_gpu_utilization_half
        PASS [   0.005s] ( 617/1013) trueno-zram-core gpu::hybrid::tests::test_hybrid_stats_gpu_utilization_full
        PASS [   0.008s] ( 618/1013) trueno-zram-core gpu::batch::tests::test_would_benefit_small_batch
        PASS [   0.010s] ( 619/1013) trueno-zram-core gpu::batch::tests::test_throughput_with_large_input
        PASS [   0.005s] ( 620/1013) trueno-zram-core gpu::hybrid::tests::test_hybrid_stats_throughput_calculation
        PASS [   0.009s] ( 621/1013) trueno-zram-core gpu::hybrid::tests::test_hybrid_stats_default
        PASS [   0.007s] ( 622/1013) trueno-zram-core gpu::hybrid::tests::test_hybrid_stats_throughput_zero
        PASS [   0.004s] ( 623/1013) trueno-zram-core gpu::tests::test_batch_compression_result_fields
        PASS [   0.006s] ( 624/1013) trueno-zram-core gpu::tests::test_backend_selection_debug
        PASS [   0.005s] ( 625/1013) trueno-zram-core gpu::tests::test_backend_selection_copy
        PASS [   0.007s] ( 626/1013) trueno-zram-core gpu::tests::test_backend_clone
        PASS [   0.010s] ( 627/1013) trueno-zram-core gpu::hybrid::tests::test_hybrid_config_default
        PASS [   0.004s] ( 628/1013) trueno-zram-core gpu::tests::test_backend_selection_equality
        PASS [   0.004s] ( 629/1013) trueno-zram-core gpu::tests::test_batch_compression_request_multiple_pages
        PASS [   0.005s] ( 630/1013) trueno-zram-core gpu::tests::test_batch_compression_result_with_compressed_pages
        PASS [   0.005s] ( 631/1013) trueno-zram-core gpu::tests::test_batch_compression_request_single
        PASS [   0.005s] ( 632/1013) trueno-zram-core gpu::tests::test_batch_compression_request_debug
        PASS [   0.011s] ( 633/1013) trueno-zram-core gpu::hybrid::tests::test_hybrid_scheduler_g119_estimate
        PASS [   0.005s] ( 634/1013) trueno-zram-core gpu::tests::test_batch_compression_result_debug
        PASS [   0.005s] ( 635/1013) trueno-zram-core gpu::tests::test_gpu_available_default
        PASS [   0.006s] ( 636/1013) trueno-zram-core gpu::tests::test_gpu_backend_clone
        PASS [   0.008s] ( 637/1013) trueno-zram-core gpu::tests::test_batch_compression_request_empty
        PASS [   0.004s] ( 638/1013) trueno-zram-core gpu::tests::test_gpu_compressor_without_cuda_feature
        PASS [   0.004s] ( 639/1013) trueno-zram-core gpu::tests::test_gpu_backend_enum_variants
        PASS [   0.004s] ( 640/1013) trueno-zram-core gpu::tests::test_gpu_backend_enum_default
        PASS [   0.004s] ( 641/1013) trueno-zram-core gpu::tests::test_gpu_compressor_debug
        PASS [   0.004s] ( 642/1013) trueno-zram-core gpu::tests::test_gpu_backend_debug
        PASS [   0.004s] ( 643/1013) trueno-zram-core gpu::tests::test_gpu_device_info_debug
        PASS [   0.005s] ( 644/1013) trueno-zram-core gpu::tests::test_gpu_backend_copy
        PASS [   0.005s] ( 645/1013) trueno-zram-core gpu::tests::test_gpu_device_info_is_supported_none
        PASS [   0.005s] ( 646/1013) trueno-zram-core gpu::tests::test_gpu_device_info_clone
        PASS [   0.005s] ( 647/1013) trueno-zram-core gpu::tests::test_gpu_device_info_high_compute_capability
        PASS [   0.005s] ( 648/1013) trueno-zram-core gpu::tests::test_gpu_device_info_is_supported_vulkan
        PASS [   0.006s] ( 649/1013) trueno-zram-core gpu::tests::test_gpu_device_info_is_supported_cuda_sm70
        PASS [   0.004s] ( 650/1013) trueno-zram-core gpu::tests::test_gpu_device_info_small_l2_cache
        PASS [   0.004s] ( 651/1013) trueno-zram-core gpu::tests::test_gpu_device_info_metal
        PASS [   0.004s] ( 652/1013) trueno-zram-core gpu::tests::test_gpu_device_info_optimal_batch_size
        PASS [   0.004s] ( 653/1013) trueno-zram-core gpu::tests::test_gpu_min_batch_size_constant
        PASS [   0.004s] ( 654/1013) trueno-zram-core gpu::tests::test_meets_pcie_rule_high_cpu_throughput_scenario
        PASS [   0.005s] ( 655/1013) trueno-zram-core gpu::tests::test_gpu_device_info_zero_l2_cache
        PASS [   0.004s] ( 656/1013) trueno-zram-core gpu::tests::test_meets_pcie_rule_large_batch
        PASS [   0.004s] ( 657/1013) trueno-zram-core gpu::tests::test_meets_pcie_rule_small_batch
        PASS [   0.004s] ( 658/1013) trueno-zram-core gpu::tests::test_meets_pcie_rule_slow_gpu
        PASS [   0.003s] ( 659/1013) trueno-zram-core gpu::tests::test_pcie_rule_boundary_conditions
        PASS [   0.004s] ( 660/1013) trueno-zram-core gpu::tests::test_pcie_rule_various_bandwidths
        PASS [   0.004s] ( 661/1013) trueno-zram-core gpu::tests::test_select_backend_boundary_at_simd_threshold
        PASS [   0.004s] ( 662/1013) trueno-zram-core gpu::tests::test_select_backend_boundary_at_gpu_threshold
        PASS [   0.004s] ( 663/1013) trueno-zram-core gpu::tests::test_pcie_rule_various_gpu_throughputs
        PASS [   0.004s] ( 664/1013) trueno-zram-core gpu::tests::test_select_backend_gpu_large_batch
        PASS [   0.004s] ( 665/1013) trueno-zram-core gpu::tests::test_select_backend_scalar_small_batch
        PASS [   0.005s] ( 666/1013) trueno-zram-core gpu::tests::test_select_backend_various_batch_sizes
        PASS [   0.005s] ( 667/1013) trueno-zram-core gpu::tests::test_select_backend_no_gpu_large_batch
        PASS [   0.004s] ( 668/1013) trueno-zram-core gpu::tests::test_simd_min_batch_size_constant
        PASS [   0.004s] ( 669/1013) trueno-zram-core integration::tests::test_f089_lambda_lab_tiers_work
        PASS [   0.004s] ( 670/1013) trueno-zram-core integration::tests::test_all_algorithms_work
        PASS [   0.004s] ( 671/1013) trueno-zram-core integration::tests::test_f086_trueno_simd_integration
        PASS [   0.004s] ( 672/1013) trueno-zram-core integration::tests::test_all_backends_available_check
        PASS [   0.004s] ( 673/1013) trueno-zram-core integration::tests::test_f093_feature_flags_compose
        PASS [   0.006s] ( 674/1013) trueno-zram-core gpu::tests::test_select_backend_simd_medium_batch
        PASS [   0.004s] ( 675/1013) trueno-zram-core integration::tests::test_f094_msrv_respected
        PASS [   0.175s] ( 676/1013) trueno-ublk device::tests::popperian_c37_scalability
        PASS [   0.004s] ( 677/1013) trueno-zram-core integration::tests::test_feature_flags_cuda_requires_std
        PASS [   0.004s] ( 678/1013) trueno-zram-core lz4::avx512::tests::test_avx512_compression_ratio
        PASS [   0.005s] ( 679/1013) trueno-zram-core integration::tests::test_lambda_lab_tier_detection
        PASS [   0.005s] ( 680/1013) trueno-zram-core integration::tests::test_tier_config_create_compressor
        PASS [   0.005s] ( 681/1013) trueno-zram-core integration::tests::test_tier_minimal_config
        PASS [   0.005s] ( 682/1013) trueno-zram-core integration::tests::test_tier_full_config
        PASS [   0.005s] ( 683/1013) trueno-zram-core lz4::avx2::tests::test_avx2_roundtrip
        PASS [   0.005s] ( 684/1013) trueno-zram-core integration::tests::test_verify_simd_integration
        PASS [   0.005s] ( 685/1013) trueno-zram-core lz4::avx2::tests::test_avx2_available
        PASS [   0.006s] ( 686/1013) trueno-zram-core integration::tests::test_verify_feature_flags
        PASS [   0.004s] ( 687/1013) trueno-zram-core lz4::avx512::tests::test_avx512_corrupted_truncated
        PASS [   0.003s] ( 688/1013) trueno-zram-core lz4::avx512::tests::test_avx512_empty_input
        PASS [   0.006s] ( 689/1013) trueno-zram-core lz4::avx512::tests::test_avx512_copy_large
        PASS [   0.004s] ( 690/1013) trueno-zram-core lz4::avx512::tests::test_avx512_feature_detection
        PASS [   0.007s] ( 691/1013) trueno-zram-core lz4::avx512::tests::test_avx512_copy_128
        PASS [   0.005s] ( 692/1013) trueno-zram-core lz4::avx512::tests::test_avx512_roundtrip_zeros
        PASS [   0.006s] ( 693/1013) trueno-zram-core lz4::compress::tests::test_compress_empty
        PASS [   0.005s] ( 694/1013) trueno-zram-core lz4::avx512::tests::test_avx512_large_rle
        PASS [   0.005s] ( 695/1013) trueno-zram-core lz4::avx512::tests::test_avx512_long_match_extension
        PASS [   0.006s] ( 696/1013) trueno-zram-core lz4::avx512::tests::test_avx512_roundtrip_rle
        PASS [   0.007s] ( 697/1013) trueno-zram-core lz4::avx512::tests::test_avx512_long_literal_extension
        PASS [   0.007s] ( 698/1013) trueno-zram-core lz4::avx512::tests::test_avx512_medium_literals
        PASS [   0.007s] ( 699/1013) trueno-zram-core lz4::compress::tests::test_compress_small
        PASS [   0.007s] ( 700/1013) trueno-zram-core lz4::avx512::tests::test_avx512_small_rle
        PASS [   0.008s] ( 701/1013) trueno-zram-core lz4::avx512::tests::test_avx512_roundtrip_pattern
        PASS [   0.009s] ( 702/1013) trueno-zram-core lz4::avx512::tests::test_avx512_roundtrip_mixed
        PASS [   0.004s] ( 703/1013) trueno-zram-core lz4::compress::tests::test_hash_distribution
        PASS [   0.008s] ( 704/1013) trueno-zram-core lz4::compress::tests::test_compress_repetitive
        PASS [   0.010s] ( 705/1013) trueno-zram-core lz4::compress::tests::test_compress_incompressible
        PASS [   0.005s] ( 706/1013) trueno-zram-core lz4::decompress::tests::test_decompress_corrupt_missing_offset
        PASS [   0.005s] ( 707/1013) trueno-zram-core lz4::decompress::tests::test_decompress_empty
        PASS [   0.005s] ( 708/1013) trueno-zram-core lz4::decompress::tests::test_decompress_empty_input
        PASS [   0.005s] ( 709/1013) trueno-zram-core lz4::decompress::tests::test_decompress_large_match_extended_length
        PASS [   0.004s] ( 710/1013) trueno-zram-core lz4::decompress::tests::test_decompress_literal_exceeds_output
        PASS [   0.012s] ( 711/1013) trueno-zram-core lz4::avx512::tests::test_avx512_roundtrip_small_patterns
        PASS [   0.005s] ( 712/1013) trueno-zram-core lz4::decompress::tests::test_decompress_large_offset_non_overlap
        PASS [   0.004s] ( 713/1013) trueno-zram-core lz4::decompress::tests::test_decompress_match_buffer_overflow
        PASS [   0.006s] ( 714/1013) trueno-zram-core lz4::decompress::tests::test_decompress_extended_literal_length
        PASS [   0.004s] ( 715/1013) trueno-zram-core lz4::decompress::tests::test_decompress_offset_exceeds_position
        PASS [   0.008s] ( 716/1013) trueno-zram-core lz4::decompress::tests::test_decompress_copy_16_path
        PASS [   0.006s] ( 717/1013) trueno-zram-core lz4::decompress::tests::test_decompress_literal_buffer_too_small
        PASS [   0.007s] ( 718/1013) trueno-zram-core lz4::decompress::tests::test_decompress_literal_extends_past_input
        PASS [   0.005s] ( 719/1013) trueno-zram-core lz4::decompress::tests::test_decompress_truncated_at_offset
        PASS [   0.006s] ( 720/1013) trueno-zram-core lz4::decompress::tests::test_decompress_rle_single_byte_repeat
        PASS [   0.006s] ( 721/1013) trueno-zram-core lz4::decompress::tests::test_decompress_small_offset_overlap
        PASS [   0.005s] ( 722/1013) trueno-zram-core lz4::decompress::tests::test_roundtrip_property
        PASS [   0.006s] ( 723/1013) trueno-zram-core lz4::decompress::tests::test_decompress_truncated_match_extension
        PASS [   0.006s] ( 724/1013) trueno-zram-core lz4::decompress::tests::test_decompress_truncated_match_length
        PASS [   0.004s] ( 725/1013) trueno-zram-core lz4::decompress::tests::test_roundtrip_mixed_data
        PASS [   0.005s] ( 726/1013) trueno-zram-core lz4::tests::test_compress_simd_pattern
        PASS [   0.008s] ( 727/1013) trueno-zram-core lz4::decompress::tests::test_decompress_small_output_buffer
        PASS [   0.007s] ( 728/1013) trueno-zram-core lz4::decompress::tests::test_decompress_truncated_literal_length_extension
        PASS [   0.005s] ( 729/1013) trueno-zram-core lz4::decompress::tests::test_decompress_zero_offset
        PASS [   0.007s] ( 730/1013) trueno-zram-core lz4::decompress::tests::test_roundtrip_small_patterns
        PASS [   0.005s] ( 731/1013) trueno-zram-core lz4::tests::test_compression_ratio_pattern
        PASS [   0.005s] ( 732/1013) trueno-zram-core lz4::tests::test_compress_simd_zeros
        PASS [   0.006s] ( 733/1013) trueno-zram-core lz4::tests::test_decompress_simd_large_literals
        PASS [   0.006s] ( 734/1013) trueno-zram-core lz4::tests::test_compression_ratio_zeros
        PASS [   0.004s] ( 735/1013) trueno-zram-core lz4::tests::test_decompress_simd_pattern
        PASS [   0.004s] ( 736/1013) trueno-zram-core lz4::tests::test_decompress_simd_rle
        PASS [   0.004s] ( 737/1013) trueno-zram-core lz4::tests::test_decompress_simd_medium_offsets
        PASS [   0.004s] ( 738/1013) trueno-zram-core lz4::tests::test_decompress_simd_large_offsets
        PASS [   0.008s] ( 739/1013) trueno-zram-core lz4::decompress::tests::test_decompress_wildcard_copy_path
        PASS [   0.005s] ( 740/1013) trueno-zram-core lz4::tests::test_decompress_simd_zeros
        PASS [   0.004s] ( 741/1013) trueno-zram-core lz4::tests::test_f024_unaligned_input
        PASS [   0.004s] ( 742/1013) trueno-zram-core lz4::tests::test_f027_no_illegal_instructions
        PASS [   0.156s] ( 743/1013) trueno-ublk stats::tests::test_throughput_calculator
        PASS [   0.004s] ( 744/1013) trueno-zram-core lz4::tests::test_f029_cache_line_alignment
        PASS [   0.006s] ( 745/1013) trueno-zram-core lz4::tests::test_f026_scalar_fallback
        PASS [   0.004s] ( 746/1013) trueno-zram-core lz4::tests::test_incompressible_data
        PASS [   0.005s] ( 747/1013) trueno-zram-core lz4::tests::test_f030_no_false_sharing
        PASS [   0.008s] ( 748/1013) trueno-zram-core lz4::tests::test_f025_simd_detection
        PASS [   0.006s] ( 749/1013) trueno-zram-core lz4::tests::test_f035_simd_no_exceptions
        PASS [   0.006s] ( 750/1013) trueno-zram-core lz4::tests::test_f028_feature_flags_respected
        PASS [   0.011s] ( 751/1013) trueno-zram-core lz4::tests::test_decompress_simd_small_offsets
        PASS [   0.005s] ( 752/1013) trueno-zram-core lz4::tests::test_roundtrip_ones
        PASS [   0.003s] ( 753/1013) trueno-zram-core page::tests::test_compressed_page_bytes_saved_no_savings
        PASS [   0.005s] ( 754/1013) trueno-zram-core lz4::tests::test_roundtrip_zeros
        PASS [   0.005s] ( 755/1013) trueno-zram-core lz4::tests::test_roundtrip_sequential
        PASS [   0.007s] ( 756/1013) trueno-zram-core lz4::tests::test_roundtrip_repeating_pattern
        PASS [   0.005s] ( 757/1013) trueno-zram-core page::tests::test_compressed_page_bytes_saved
        PASS [   0.008s] ( 758/1013) trueno-zram-core lz4::tests::test_f032_vector_register_preservation
        PASS [   0.003s] ( 759/1013) trueno-zram-core page::tests::test_compressed_page_is_compressed
        PASS [   0.004s] ( 760/1013) trueno-zram-core page::tests::test_compressed_page_debug
        PASS [   0.004s] ( 761/1013) trueno-zram-core page::tests::test_compressed_page_is_compressed_large_output
        PASS [   0.004s] ( 762/1013) trueno-zram-core page::tests::test_compressed_page_new_invalid_size
        PASS [   0.005s] ( 763/1013) trueno-zram-core page::tests::test_compressed_page_clone
        PASS [   0.004s] ( 764/1013) trueno-zram-core page::tests::test_compressed_page_ratio_empty_data
        PASS [   0.006s] ( 765/1013) trueno-zram-core page::tests::test_compressed_page_new_valid
        PASS [   0.004s] ( 766/1013) trueno-zram-core page::tests::test_compression_stats_throughput
        PASS [   0.004s] ( 767/1013) trueno-zram-core page::tests::test_compression_stats_clone
        PASS [   0.004s] ( 768/1013) trueno-zram-core page::tests::test_compression_stats_ratio
        PASS [   0.004s] ( 769/1013) trueno-zram-core page::tests::test_compression_stats_zero_throughput
        PASS [   0.005s] ( 770/1013) trueno-zram-core page::tests::test_compression_stats_decompress_throughput
        PASS [   0.007s] ( 771/1013) trueno-zram-core page::tests::test_compressed_page_ratio
        PASS [   0.004s] ( 772/1013) trueno-zram-core samefill::tests::test_compact_same_fill_expand
        PASS [   0.005s] ( 773/1013) trueno-zram-core page::tests::test_page_size_constant
        PASS [   0.007s] ( 774/1013) trueno-zram-core page::tests::test_compression_stats_default
        PASS [   0.005s] ( 775/1013) trueno-zram-core samefill::tests::test_compact_same_fill_new
        PASS [   0.005s] ( 776/1013) trueno-zram-core samefill::tests::test_compact_same_fill_roundtrip
        PASS [   0.004s] ( 777/1013) trueno-zram-core samefill::tests::test_different_at_word_boundary
        PASS [   0.004s] ( 778/1013) trueno-zram-core samefill::tests::test_detect_same_fill_efficiency
        PASS [   0.004s] ( 779/1013) trueno-zram-core samefill::tests::test_compact_same_fill_serialization
        PASS [   0.005s] ( 780/1013) trueno-zram-core samefill::tests::test_expand_same_fill_zeros
        PASS [   0.006s] ( 781/1013) trueno-zram-core samefill::tests::test_different_in_remainder
        PASS [   0.005s] ( 782/1013) trueno-zram-core samefill::tests::test_last_byte_different
        PASS [   0.006s] ( 783/1013) trueno-zram-core samefill::tests::test_expand_same_fill_value
        PASS [   0.005s] ( 784/1013) trueno-zram-core samefill::tests::test_random_page_not_same_fill
        PASS [   0.004s] ( 785/1013) trueno-zram-core samefill::tests::test_same_fill_detected
        PASS [   0.005s] ( 786/1013) trueno-zram-core samefill::tests::test_non_same_fill_detected
        PASS [   0.003s] ( 787/1013) trueno-zram-core simd::detect::tests::test_has_avx512
        PASS [   0.004s] ( 788/1013) trueno-zram-core samefill::tests::test_zero_page_detected
        PASS [   0.004s] ( 789/1013) trueno-zram-core simd::detect::tests::test_detect_returns_valid_features
        PASS [   0.004s] ( 790/1013) trueno-zram-core simd::detect::tests::test_detect_backend_consistency
        PASS [   0.004s] ( 791/1013) trueno-zram-core simd::detect::tests::test_has_avx512_partial
        PASS [   0.004s] ( 792/1013) trueno-zram-core simd::detect::tests::test_is_available_all_backends
        PASS [   0.004s] ( 793/1013) trueno-zram-core simd::detect::tests::test_simd_features_copy
        PASS [   0.004s] ( 794/1013) trueno-zram-core simd::detect::tests::test_simd_features_default
        PASS [   0.004s] ( 795/1013) trueno-zram-core simd::detect::tests::test_scalar_always_available
        PASS [   0.004s] ( 796/1013) trueno-zram-core simd::detect::tests::test_x86_has_sse42_or_better
        PASS [   0.004s] ( 797/1013) trueno-zram-core simd::detect::tests::test_simd_features_debug
        PASS [   0.004s] ( 798/1013) trueno-zram-core simd::detect::tests::test_x86_detect_backend
        PASS [   0.010s] ( 799/1013) trueno-zram-core samefill::tests::test_same_fill_all_values
        PASS [   0.005s] ( 800/1013) trueno-zram-core simd::detect::tests::test_simd_features_clone
        PASS [   0.004s] ( 801/1013) trueno-zram-core simd::tests::test_scalar_always_available
        PASS [   0.005s] ( 802/1013) trueno-zram-core simd::tests::test_best_backend_returns_valid
        PASS [   0.232s] ( 803/1013) trueno-ublk device::tests::popperian_c36_latency_high_qd
        PASS [   0.007s] ( 804/1013) trueno-zram-core simd::tests::test_best_backend_at_least_scalar
        PASS [   0.005s] ( 805/1013) trueno-zram-core tests::test_algorithm_default
        PASS [   0.004s] ( 806/1013) trueno-zram-core tests::test_compressor_adaptive
        PASS [   0.004s] ( 807/1013) trueno-zram-core tests::test_compressor_builder_default_impl
        PASS [   0.005s] ( 808/1013) trueno-zram-core tests::test_compressor_adaptive_incompressible
        PASS [   0.004s] ( 809/1013) trueno-zram-core tests::test_compressor_lz4hc_roundtrip
        PASS [   0.005s] ( 810/1013) trueno-zram-core tests::test_compressor_none
        PASS [   0.005s] ( 811/1013) trueno-zram-core tests::test_compressor_builder_default
        PASS [   0.004s] ( 812/1013) trueno-zram-core tests::test_compressor_roundtrip_zstd
        PASS [   0.009s] ( 813/1013) trueno-zram-core tests::test_compressor_roundtrip_lz4
        PASS [   0.007s] ( 814/1013) trueno-zram-core tests::test_compressor_stats_reset
        PASS [   0.007s] ( 815/1013) trueno-zram-core tests::test_compressor_zstd_incompressible
        PASS [   0.239s] ( 816/1013) trueno-ublk device::tests::popperian_b30_fragmentation_stress
        PASS [   0.007s] ( 817/1013) trueno-zram-core tests::test_compressor_stats
        PASS [   0.006s] ( 818/1013) trueno-zram-core tests::test_decompress_adaptive_error
        PASS [   0.006s] ( 819/1013) trueno-zram-core tests::test_decompress_lz4_size_mismatch
        PASS [   0.006s] ( 820/1013) trueno-zram-core tests::test_decompress_zstd_size_mismatch
        PASS [   0.005s] ( 821/1013) trueno-zram-core tests::test_f004_full_entropy_pages
        PASS [   0.007s] ( 822/1013) trueno-zram-core tests::test_corrupted_data_returns_error
        PASS [   0.007s] ( 823/1013) trueno-zram-core tests::test_decompress_wrong_size_uncompressed
        FAIL [   0.094s] ( 824/1013) trueno-zram-core gpu::batch::tests::test_gpu_context_debug
  stdout ───

    running 1 test
    test gpu::batch::tests::test_gpu_context_debug ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_gpu_context_debug

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.08s

  stderr ───

    thread 'gpu::batch::tests::test_gpu_context_debug' (8548) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_gpu_context_debug
                 at ./src/gpu/batch.rs:1530:13
      18: trueno_zram_core::gpu::batch::tests::test_gpu_context_debug::{{closure}}
                 at ./src/gpu/batch.rs:1529:32
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.020s] ( 825/1013) trueno-zram-core samefill::tests::test_same_fill_detection_speed
        PASS [   0.006s] ( 826/1013) trueno-zram-core tests::test_f003_zero_page_optimization
        PASS [   0.012s] ( 827/1013) trueno-zram-core tests::test_empty_page_compress
        FAIL [   0.102s] ( 828/1013) trueno-zram-core gpu::batch::tests::test_f046_throughput_target
  stdout ───

    running 1 test
    test gpu::batch::tests::test_f046_throughput_target ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_f046_throughput_target

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.08s

  stderr ───

    thread 'gpu::batch::tests::test_f046_throughput_target' (8531) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_f046_throughput_target
                 at ./src/gpu/batch.rs:1328:13
      18: trueno_zram_core::gpu::batch::tests::test_f046_throughput_target::{{closure}}
                 at ./src/gpu/batch.rs:1327:37
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.011s] ( 829/1013) trueno-zram-core tests::test_f006_repeated_patterns_compress_well
        PASS [   0.006s] ( 830/1013) trueno-zram-core tests::test_f014_output_buffer_bounds
        PASS [   0.006s] ( 831/1013) trueno-zram-core tests::test_f007_mixed_zeros_data
        PASS [   0.200s] ( 832/1013) trueno-ublk perf::polling::tests::test_polling_loop_maximum_config_no_adaptive
        PASS [   0.006s] ( 833/1013) trueno-zram-core tests::test_f017_level_parameter_respected
        FAIL [   0.105s] ( 834/1013) trueno-zram-core gpu::batch::tests::test_f038_empty_batch
  stdout ───

    running 1 test
    test gpu::batch::tests::test_f038_empty_batch ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_f038_empty_batch

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.09s

  stderr ───

    thread 'gpu::batch::tests::test_f038_empty_batch' (8524) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_f038_empty_batch
                 at ./src/gpu/batch.rs:1119:13
      18: trueno_zram_core::gpu::batch::tests::test_f038_empty_batch::{{closure}}
                 at ./src/gpu/batch.rs:1118:31
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        FAIL [   0.106s] ( 835/1013) trueno-zram-core gpu::batch::tests::test_f036_gpu_batch_compressor_creation
  stdout ───

    running 1 test
    test gpu::batch::tests::test_f036_gpu_batch_compressor_creation ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_f036_gpu_batch_compressor_creation

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.09s

  stderr ───

    thread 'gpu::batch::tests::test_f036_gpu_batch_compressor_creation' (8516) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_f036_gpu_batch_compressor_creation
                 at ./src/gpu/batch.rs:1060:12
      18: trueno_zram_core::gpu::batch::tests::test_f036_gpu_batch_compressor_creation::{{closure}}
                 at ./src/gpu/batch.rs:1056:49
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.008s] ( 836/1013) trueno-zram-core tests::test_f008_mixed_content
        FAIL [   0.101s] ( 837/1013) trueno-zram-core gpu::batch::tests::test_probador_all_random_pages
  stdout ───

    running 1 test
    test gpu::batch::tests::test_probador_all_random_pages ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_probador_all_random_pages

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.08s

  stderr ───

    thread 'gpu::batch::tests::test_probador_all_random_pages' (8550) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_probador_all_random_pages
                 at ./src/gpu/batch.rs:1872:13
      18: trueno_zram_core::gpu::batch::tests::test_probador_all_random_pages::{{closure}}
                 at ./src/gpu/batch.rs:1871:40
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        FAIL [   0.105s] ( 838/1013) trueno-zram-core gpu::batch::tests::test_f045_algorithm_selection
  stdout ───

    running 1 test
    test gpu::batch::tests::test_f045_algorithm_selection ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_f045_algorithm_selection

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.08s

  stderr ───

    thread 'gpu::batch::tests::test_f045_algorithm_selection' (8532) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_f045_algorithm_selection
                 at ./src/gpu/batch.rs:1294:13
      18: trueno_zram_core::gpu::batch::tests::test_f045_algorithm_selection::{{closure}}
                 at ./src/gpu/batch.rs:1293:39
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.008s] ( 839/1013) trueno-zram-core tests::test_f013_page_size_enforced
        PASS [   0.008s] ( 840/1013) trueno-zram-core tests::test_f011_oversized_output_handled
        PASS [   0.008s] ( 841/1013) trueno-zram-core tests::test_f020_stack_usage_bounded
        FAIL [   0.101s] ( 842/1013) trueno-zram-core gpu::batch::tests::test_probador_gpu_data_flow
  stdout ───

    running 1 test
    test gpu::batch::tests::test_probador_gpu_data_flow ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_probador_gpu_data_flow

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.08s

  stderr ───

    thread 'gpu::batch::tests::test_probador_gpu_data_flow' (8567) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_probador_gpu_data_flow
                 at ./src/gpu/batch.rs:1727:13
      18: trueno_zram_core::gpu::batch::tests::test_probador_gpu_data_flow::{{closure}}
                 at ./src/gpu/batch.rs:1726:37
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.009s] ( 843/1013) trueno-zram-core tests::test_f018_compression_ratio_acceptable
        FAIL [   0.109s] ( 844/1013) trueno-zram-core gpu::batch::tests::test_f037_batch_compression_valid_output
  stdout ───

    running 1 test
    test gpu::batch::tests::test_f037_batch_compression_valid_output ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_f037_batch_compression_valid_output

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.09s

  stderr ───

    thread 'gpu::batch::tests::test_f037_batch_compression_valid_output' (8522) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_f037_batch_compression_valid_output
                 at ./src/gpu/batch.rs:1081:13
      18: trueno_zram_core::gpu::batch::tests::test_f037_batch_compression_valid_output::{{closure}}
                 at ./src/gpu/batch.rs:1080:50
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        FAIL [   0.110s] ( 845/1013) trueno-zram-core gpu::batch::tests::test_f039_timing_components
  stdout ───

    running 1 test
    test gpu::batch::tests::test_f039_timing_components ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_f039_timing_components

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.09s

  stderr ───

    thread 'gpu::batch::tests::test_f039_timing_components' (8547) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_f039_timing_components
                 at ./src/gpu/batch.rs:1137:13
      18: trueno_zram_core::gpu::batch::tests::test_f039_timing_components::{{closure}}
                 at ./src/gpu/batch.rs:1136:37
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        FAIL [   0.105s] ( 846/1013) trueno-zram-core gpu::batch::tests::test_probador_all_zero_pages
  stdout ───

    running 1 test
    test gpu::batch::tests::test_probador_all_zero_pages ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_probador_all_zero_pages

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.09s

  stderr ───

    thread 'gpu::batch::tests::test_probador_all_zero_pages' (8555) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_probador_all_zero_pages
                 at ./src/gpu/batch.rs:1827:13
      18: trueno_zram_core::gpu::batch::tests::test_probador_all_zero_pages::{{closure}}
                 at ./src/gpu/batch.rs:1826:38
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        FAIL [   0.104s] ( 847/1013) trueno-zram-core gpu::batch::tests::test_probador_incremental_bytes
  stdout ───

    running 1 test
    test gpu::batch::tests::test_probador_incremental_bytes ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_probador_incremental_bytes

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.08s

  stderr ───

    thread 'gpu::batch::tests::test_probador_incremental_bytes' (8596) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_probador_incremental_bytes
                 at ./src/gpu/batch.rs:1918:13
      18: trueno_zram_core::gpu::batch::tests::test_probador_incremental_bytes::{{closure}}
                 at ./src/gpu/batch.rs:1917:41
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.133s] ( 848/1013) trueno-zram-core benchmark::tests::test_f053_avx512_simd_path_used
        PASS [   0.007s] ( 849/1013) trueno-zram-core tests::test_f081_no_panics_on_valid_input
        PASS [   0.007s] ( 850/1013) trueno-zram-core tests::test_f082_error_types_send_sync
        PASS [   0.053s] ( 851/1013) trueno-zram-core lz4::tests::test_f021_avx2_matches_scalar
        PASS [   0.006s] ( 852/1013) trueno-zram-core zram::device::tests::test_zram_config_default
        PASS [   0.007s] ( 853/1013) trueno-zram-core tests::test_simd_backend_default
        PASS [   0.007s] ( 854/1013) trueno-zram-core tests::test_f080_no_undefined_behavior
        PASS [   0.007s] ( 855/1013) trueno-zram-core tests::test_truncated_data_returns_error
        FAIL [   0.106s] ( 856/1013) trueno-zram-core gpu::batch::tests::test_probador_large_batch_stress
  stdout ───

    running 1 test
    test gpu::batch::tests::test_probador_large_batch_stress ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_probador_large_batch_stress

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.08s

  stderr ───

    thread 'gpu::batch::tests::test_probador_large_batch_stress' (8560) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_probador_large_batch_stress
                 at ./src/gpu/batch.rs:1970:13
      18: trueno_zram_core::gpu::batch::tests::test_probador_large_batch_stress::{{closure}}
                 at ./src/gpu/batch.rs:1969:42
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.008s] ( 857/1013) trueno-zram-core tests::test_max_entropy_page
        PASS [   0.008s] ( 858/1013) trueno-zram-core tests::test_f076_no_buffer_overflows
        FAIL [   0.112s] ( 859/1013) trueno-zram-core gpu::batch::tests::test_f047_async_dma_benefit
  stdout ───

    running 1 test
    test gpu::batch::tests::test_f047_async_dma_benefit ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_f047_async_dma_benefit

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.09s

  stderr ───

    thread 'gpu::batch::tests::test_f047_async_dma_benefit' (8526) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_f047_async_dma_benefit
                 at ./src/gpu/batch.rs:1372:13
      18: trueno_zram_core::gpu::batch::tests::test_f047_async_dma_benefit::{{closure}}
                 at ./src/gpu/batch.rs:1371:37
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        FAIL [   0.112s] ( 860/1013) trueno-zram-core gpu::batch::tests::test_f041_statistics_accumulation
  stdout ───

    running 1 test
    test gpu::batch::tests::test_f041_statistics_accumulation ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_f041_statistics_accumulation

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.09s

  stderr ───

    thread 'gpu::batch::tests::test_f041_statistics_accumulation' (8543) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_f041_statistics_accumulation
                 at ./src/gpu/batch.rs:1211:13
      18: trueno_zram_core::gpu::batch::tests::test_f041_statistics_accumulation::{{closure}}
                 at ./src/gpu/batch.rs:1210:43
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.008s] ( 861/1013) trueno-zram-core tests::test_f084_timing_consistency
        PASS [   0.006s] ( 862/1013) trueno-zram-core zram::device::tests::test_zram_device_configure_nonexistent
        PASS [   0.007s] ( 863/1013) trueno-zram-core tests::test_stats_decompress_time_tracked
        FAIL [   0.092s] ( 864/1013) trueno-zram-core gpu::tests::test_gpu_batch_compression
  stdout ───

    running 1 test
    test gpu::tests::test_gpu_batch_compression ... FAILED

    failures:

    failures:
        gpu::tests::test_gpu_batch_compression

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.07s

  stderr ───

    thread 'gpu::tests::test_gpu_batch_compression' (8642) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::tests::test_gpu_batch_compression
                 at ./src/gpu/mod.rs:606:13
      18: trueno_zram_core::gpu::tests::test_gpu_batch_compression::{{closure}}
                 at ./src/gpu/mod.rs:605:36
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.016s] ( 865/1013) trueno-zram-core tests::test_f012_concurrent_compression_safe
        PASS [   0.008s] ( 866/1013) trueno-zram-core tests::test_f085_no_external_ffi
        FAIL [   0.106s] ( 867/1013) trueno-zram-core gpu::batch::tests::test_probador_single_page
  stdout ───

    running 1 test
    test gpu::batch::tests::test_probador_single_page ... FAILED

    failures:

    failures:
        gpu::batch::tests::test_probador_single_page

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.08s

  stderr ───

    thread 'gpu::batch::tests::test_probador_single_page' (8589) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::batch::tests::test_probador_single_page
                 at ./src/gpu/batch.rs:2041:13
      18: trueno_zram_core::gpu::batch::tests::test_probador_single_page::{{closure}}
                 at ./src/gpu/batch.rs:2040:35
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.054s] ( 868/1013) trueno-zram-core lz4::tests::test_f022_avx512_matches_scalar
        PASS [   0.008s] ( 869/1013) trueno-zram-core zram::device::tests::test_zram_config_clone
        PASS [   0.009s] ( 870/1013) trueno-zram-core tests::test_f082_error_types_implement_error
        PASS [   0.010s] ( 871/1013) trueno-zram-core tests::test_f077_no_integer_overflow_page_size
        PASS [   0.007s] ( 872/1013) trueno-zram-core zram::device::tests::test_zram_device_nonexistent
        PASS [   0.006s] ( 873/1013) trueno-zram-core zram::device::tests::test_zram_device_paths
        PASS [   0.010s] ( 874/1013) trueno-zram-core tests::test_prefer_unavailable_backend
        FAIL [   0.098s] ( 875/1013) trueno-zram-core gpu::tests::test_cuda_device_detection
  stdout ───

    running 1 test
    test gpu::tests::test_cuda_device_detection ... FAILED

    failures:

    failures:
        gpu::tests::test_cuda_device_detection

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.08s

  stderr ───

    thread 'gpu::tests::test_cuda_device_detection' (8622) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::tests::test_cuda_device_detection
                 at ./src/gpu/mod.rs:561:25
      18: trueno_zram_core::gpu::tests::test_cuda_device_detection::{{closure}}
                 at ./src/gpu/mod.rs:559:36
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.004s] ( 876/1013) trueno-zram-core zram::device::tests::test_zram_device_reset_nonexistent
        PASS [   0.004s] ( 877/1013) trueno-zram-core zram::device::tests::test_zram_device_status_nonexistent
        PASS [   0.009s] ( 878/1013) trueno-zram-core zram::device::tests::test_zram_device_debug
        FAIL [   0.096s] ( 879/1013) trueno-zram-core gpu::tests::test_gpu_compressor_creation_with_cuda
  stdout ───

    running 1 test
    test gpu::tests::test_gpu_compressor_creation_with_cuda ... FAILED

    failures:

    failures:
        gpu::tests::test_gpu_compressor_creation_with_cuda

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.08s

  stderr ───

    thread 'gpu::tests::test_gpu_compressor_creation_with_cuda' (8657) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::tests::test_gpu_compressor_creation_with_cuda
                 at ./src/gpu/mod.rs:585:13
      18: trueno_zram_core::gpu::tests::test_gpu_compressor_creation_with_cuda::{{closure}}
                 at ./src/gpu/mod.rs:584:48
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.005s] ( 880/1013) trueno-zram-core zram::device::tests::test_zram_device_read_attr_str_nonexistent
        PASS [   0.005s] ( 881/1013) trueno-zram-core zram::device::tests::test_zram_device_write_attr_nonexistent
        PASS [   0.012s] ( 882/1013) trueno-zram-core tests::test_f083_secure_memory_management
        PASS [   0.005s] ( 883/1013) trueno-zram-core zram::device::tests::test_zram_status_high_ratio
        PASS [   0.005s] ( 884/1013) trueno-zram-core zram::device::tests::test_zram_status_display_zero_compression
        PASS [   0.005s] ( 885/1013) trueno-zram-core zram::device::tests::test_zram_status_clone
        PASS [   0.004s] ( 886/1013) trueno-zram-core zram::device::tests::test_zram_status_debug
        PASS [   0.004s] ( 887/1013) trueno-zram-core zram::device::tests::test_zram_device_read_attr_nonexistent
        PASS [   0.010s] ( 888/1013) trueno-zram-core zram::device::tests::test_zram_config_debug
        PASS [   0.006s] ( 889/1013) trueno-zram-core zram::device::tests::test_zram_status_display
        PASS [   0.004s] ( 890/1013) trueno-zram-core zram::ops::tests::test_hot_add_no_control_path
        PASS [   0.014s] ( 891/1013) trueno-zram-core tests::test_f078_no_use_after_free
        PASS [   0.005s] ( 892/1013) trueno-zram-core zram::ops::tests::test_is_swap_active_device_0
        PASS [   0.005s] ( 893/1013) trueno-zram-core zram::device::tests::test_zram_status_ratio_zero
        PASS [   0.005s] ( 894/1013) trueno-zram-core zram::device::tests::test_zram_status_ratio
        PASS [   0.005s] ( 895/1013) trueno-zram-core zram::ops::tests::test_remove_nonexistent_device
        PASS [   0.015s] ( 896/1013) trueno-zram-core tests::test_f079_no_data_races
        PASS [   0.006s] ( 897/1013) trueno-zram-core zram::ops::tests::test_is_swap_active
        FAIL [   0.100s] ( 898/1013) trueno-zram-core gpu::tests::test_gpu_backend_selection_with_cuda
  stdout ───

    running 1 test
    test gpu::tests::test_gpu_backend_selection_with_cuda ... FAILED

    failures:

    failures:
        gpu::tests::test_gpu_backend_selection_with_cuda

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.09s

  stderr ───

    thread 'gpu::tests::test_gpu_backend_selection_with_cuda' (8637) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::gpu::tests::test_gpu_backend_selection_with_cuda
                 at ./src/gpu/mod.rs:663:13
      18: trueno_zram_core::gpu::tests::test_gpu_backend_selection_with_cuda::{{closure}}
                 at ./src/gpu/mod.rs:662:46
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.004s] ( 899/1013) trueno-zram-core zram::ops::tests::test_status_nonexistent_device
        PASS [   0.004s] ( 900/1013) trueno-zram-core zram::ops::tests::test_remove_without_force_nonexistent
        PASS [   0.007s] ( 901/1013) trueno-zram-core zram::ops::tests::test_is_swap_active_many_devices
        PASS [   0.006s] ( 902/1013) trueno-zram-core zram::ops::tests::test_remove_nonexistent_with_force
        PASS [   0.004s] ( 903/1013) trueno-zram-core zram::tests::test_format_size
        PASS [   0.008s] ( 904/1013) trueno-zram-core zram::ops::tests::test_hot_remove_no_control_path
        PASS [   0.005s] ( 905/1013) trueno-zram-core zram::ops::tests::test_remove_with_force_nonexistent
        PASS [   0.008s] ( 906/1013) trueno-zram-core zram::ops::tests::test_is_available
        PASS [   0.004s] ( 907/1013) trueno-zram-core zram::tests::test_get_total_ram
        PASS [   0.004s] ( 908/1013) trueno-zram-core zram::tests::test_format_size_fractional
        PASS [   0.005s] ( 909/1013) trueno-zram-core zram::tests::test_format_size_edge_cases
        PASS [   0.005s] ( 910/1013) trueno-zram-core zram::ops::tests::test_sysfs_ops_default
        PASS [   0.005s] ( 911/1013) trueno-zram-core zram::ops::tests::test_zram_config_for_create
        PASS [   0.005s] ( 912/1013) trueno-zram-core zram::ops::tests::test_sysfs_ops_debug
        PASS [   0.005s] ( 913/1013) trueno-zram-core zram::ops::tests::test_sysfs_ops_new
        PASS [   0.005s] ( 914/1013) trueno-zram-core zram::tests::test_is_zram_available
        PASS [   0.006s] ( 915/1013) trueno-zram-core zram::ops::tests::test_status_existing_device
        PASS [   0.005s] ( 916/1013) trueno-zram-core zram::tests::test_parse_size_gb
        PASS [   0.005s] ( 917/1013) trueno-zram-core zram::tests::test_parse_size_bytes
        PASS [   0.005s] ( 918/1013) trueno-zram-core zram::tests::test_parse_size_invalid
        PASS [   0.006s] ( 919/1013) trueno-zram-core zram::tests::test_find_devices
        PASS [   0.004s] ( 920/1013) trueno-zram-core zram::tests::test_parse_size_mb
        PASS [   0.004s] ( 921/1013) trueno-zram-core zram::tests::test_parse_size_ram_divisor
        PASS [   0.005s] ( 922/1013) trueno-zram-core zram::tests::test_parse_size_kb
        PASS [   0.011s] ( 923/1013) trueno-zram-core zram::ops::tests::test_list_devices
        PASS [   0.004s] ( 924/1013) trueno-zram-core zram::tests::test_parse_size_ram_invalid_divisor
        PASS [   0.004s] ( 925/1013) trueno-zram-core zram::tests::test_parse_size_tb
        PASS [   0.004s] ( 926/1013) trueno-zram-core zstd::avx2::tests::test_fse_avx2_medium_input
        PASS [   0.005s] ( 927/1013) trueno-zram-core zstd::avx2::tests::test_avx2_feature_detection
        PASS [   0.004s] ( 928/1013) trueno-zram-core zstd::avx2::tests::test_fse_avx2_empty_input
        PASS [   0.005s] ( 929/1013) trueno-zram-core zstd::avx2::tests::test_fse_avx2_small_input
        PASS [   0.005s] ( 930/1013) trueno-zram-core zstd::avx2::tests::test_huffman_avx2_empty_input
        PASS [   0.012s] ( 931/1013) trueno-zram-core zram::ops::tests::test_list_includes_existing_devices
        PASS [   0.004s] ( 932/1013) trueno-zram-core zstd::avx2::tests::test_huffman_avx2_large_table
        PASS [   0.004s] ( 933/1013) trueno-zram-core zstd::avx2::tests::test_huffman_scalar_fallback
        PASS [   0.005s] ( 934/1013) trueno-zram-core zstd::avx2::tests::test_huffman_avx2_batch_path
        PASS [   0.005s] ( 935/1013) trueno-zram-core zstd::avx2::tests::test_avx2_module_compiles
        PASS [   0.013s] ( 936/1013) trueno-zram-core zram::ops::tests::test_list_devices_returns_vec
        PASS [   0.005s] ( 937/1013) trueno-zram-core zstd::avx2::tests::test_huffman_avx2_large_input
        PASS [   0.009s] ( 938/1013) trueno-zram-core zram::ops::tests::test_zram_ops_trait_object
        PASS [   0.009s] ( 939/1013) trueno-zram-core zram::ops::tests::test_status_various_device_numbers
        PASS [   0.004s] ( 940/1013) trueno-zram-core zstd::compress::tests::test_compress_empty
        PASS [   0.004s] ( 941/1013) trueno-zram-core zstd::avx2::tests::test_huffman_avx2_small_input
        PASS [   0.004s] ( 942/1013) trueno-zram-core zstd::compress::tests::test_compress_level_clamp_low
        PASS [   0.004s] ( 943/1013) trueno-zram-core zstd::compress::tests::test_compress_medium_literals
        PASS [   0.013s] ( 944/1013) trueno-zram-core zram::ops::tests::test_list_returns_valid_statuses
        PASS [   0.005s] ( 945/1013) trueno-zram-core zstd::avx2::tests::test_huffman_avx2_small_output
        PASS [   0.004s] ( 946/1013) trueno-zram-core zstd::compress::tests::test_compress_level_clamp_high
        PASS [   0.004s] ( 947/1013) trueno-zram-core zstd::compress::tests::test_compress_large_content
        PASS [   0.004s] ( 948/1013) trueno-zram-core zstd::compress::tests::test_compress_medium_content
        PASS [   0.005s] ( 949/1013) trueno-zram-core zstd::compress::tests::test_compress_large_literals
        PASS [   0.004s] ( 950/1013) trueno-zram-core zstd::compress::tests::test_compress_produces_valid_header
        PASS [   0.004s] ( 951/1013) trueno-zram-core zstd::compress::tests::test_compress_rle_detection
        PASS [   0.005s] ( 952/1013) trueno-zram-core zstd::compress::tests::test_compress_mixed_content
        PASS [   0.004s] ( 953/1013) trueno-zram-core zstd::compress::tests::test_compress_small_content
        PASS [   0.004s] ( 954/1013) trueno-zram-core zstd::compress::tests::test_compress_small_literals
        PASS [   0.004s] ( 955/1013) trueno-zram-core zstd::decompress::tests::test_decompress_block_raw_literals
        PASS [   0.006s] ( 956/1013) trueno-zram-core zstd::compress::tests::test_compress_multiple_blocks
        PASS [   0.005s] ( 957/1013) trueno-zram-core zstd::decompress::tests::test_decompress_block_buffer_too_small
        PASS [   0.004s] ( 958/1013) trueno-zram-core zstd::decompress::tests::test_input_too_short
        PASS [   0.004s] ( 959/1013) trueno-zram-core zstd::decompress::tests::test_decompress_block_literals_past_input
        PASS [   0.004s] ( 960/1013) trueno-zram-core zstd::decompress::tests::test_empty_input
        PASS [   0.004s] ( 961/1013) trueno-zram-core zstd::decompress::tests::test_read_block_header_rle
        PASS [   0.004s] ( 962/1013) trueno-zram-core zstd::decompress::tests::test_read_block_header_compressed
        PASS [   0.004s] ( 963/1013) trueno-zram-core zstd::decompress::tests::test_read_block_header
        PASS [   0.005s] ( 964/1013) trueno-zram-core zstd::decompress::tests::test_read_block_header_reserved
        PASS [   0.005s] ( 965/1013) trueno-zram-core zstd::decompress::tests::test_decompress_block_rle_literals
        PASS [   0.005s] ( 966/1013) trueno-zram-core zstd::decompress::tests::test_decompress_block_empty
        PASS [   0.005s] ( 967/1013) trueno-zram-core zstd::decompress::tests::test_read_frame_header_single_segment_with_fcs
        PASS [   0.004s] ( 968/1013) trueno-zram-core zstd::decompress::tests::test_read_literals_header_1byte
        PASS [   0.005s] ( 969/1013) trueno-zram-core zstd::decompress::tests::test_read_frame_header_fcs_2bytes
        PASS [   0.005s] ( 970/1013) trueno-zram-core zstd::decompress::tests::test_read_frame_header_dict_id_2bytes
        PASS [   0.005s] ( 971/1013) trueno-zram-core zstd::decompress::tests::test_read_frame_header_dict_id_1byte
        PASS [   0.005s] ( 972/1013) trueno-zram-core zstd::decompress::tests::test_read_frame_header_missing_fcs
        PASS [   0.005s] ( 973/1013) trueno-zram-core zstd::decompress::tests::test_read_frame_header_fcs_8bytes
        PASS [   0.005s] ( 974/1013) trueno-zram-core zstd::decompress::tests::test_read_block_header_truncated
        PASS [   0.005s] ( 975/1013) trueno-zram-core zstd::decompress::tests::test_read_frame_header_dict_id_4bytes
        PASS [   0.005s] ( 976/1013) trueno-zram-core zstd::decompress::tests::test_read_frame_header_missing_window
        PASS [   0.005s] ( 977/1013) trueno-zram-core zstd::decompress::tests::test_read_frame_header_with_window_descriptor
        PASS [   0.005s] ( 978/1013) trueno-zram-core zstd::decompress::tests::test_read_frame_header_fcs_4bytes
        PASS [   0.006s] ( 979/1013) trueno-zram-core zstd::decompress::tests::test_invalid_magic
        PASS [   0.006s] ( 980/1013) trueno-zram-core zstd::decompress::tests::test_read_frame_header_checksum_flag
        PASS [   0.004s] ( 981/1013) trueno-zram-core zstd::decompress::tests::test_read_literals_header_3byte
        PASS [   0.004s] ( 982/1013) trueno-zram-core zstd::decompress::tests::test_read_literals_header_truncated_2byte
        PASS [   0.005s] ( 983/1013) trueno-zram-core zstd::decompress::tests::test_read_literals_header_2byte
        PASS [   0.004s] ( 984/1013) trueno-zram-core zstd::decompress::tests::test_read_literals_header_empty
        PASS [   0.004s] ( 985/1013) trueno-zram-core zstd::huffman::tests::test_empty_weights_error
        PASS [   0.004s] ( 986/1013) trueno-zram-core zstd::huffman::tests::test_read_weights_direct
        PASS [   0.004s] ( 987/1013) trueno-zram-core zstd::fse::tests::test_default_distributions_valid
        PASS [   0.005s] ( 988/1013) trueno-zram-core zstd::decompress::tests::test_read_literals_header_truncated_3byte
        PASS [   0.004s] ( 989/1013) trueno-zram-core zstd::huffman::tests::test_huffman_table_creation
        PASS [   0.004s] ( 990/1013) trueno-zram-core zstd::fse::tests::test_fse_table_creation
        PASS [   0.004s] ( 991/1013) trueno-zram-core zstd::tests::test_block_type_conversion
        PASS [   0.004s] ( 992/1013) trueno-zram-core zstd::tests::test_roundtrip_zeros
        PASS [   0.004s] ( 993/1013) trueno-zram-core zstd::huffman::tests::test_read_weights_two_symbols
        PASS [   0.004s] ( 994/1013) trueno-zram-core zstd::tests::test_roundtrip_pattern
        PASS [   0.004s] ( 995/1013) trueno-zram-core zstd::tests::test_roundtrip_text
        PASS [   0.004s] ( 996/1013) trueno-zram-core zstd::tests::test_compression_level
        FAIL [   0.104s] ( 997/1013) trueno-zram-core integration::tests::test_f095_wasm_excluded_correctly
  stdout ───

    running 1 test
    test integration::tests::test_f095_wasm_excluded_correctly ... FAILED

    failures:

    failures:
        integration::tests::test_f095_wasm_excluded_correctly

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 478 filtered out; finished in 0.10s

  stderr ───

    thread 'integration::tests::test_f095_wasm_excluded_correctly' (8714) panicked at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5:
    Unable to dynamically load the "cuda" shared library - searched for library names: ["libcuda.so", "libcuda64.so", "libcuda64_12.so", "libcuda64_128.so", "libcuda64_128_0.so", "libcuda64_120_8.so", "libcuda64_10.so", "libcuda64_11.so", "libcuda64_120_0.so", "libcuda64_9.so", "libcuda.so.12", "libcuda.so.11", "libcuda.so.10", "libcuda.so.1", "libnvcuda.so", "libnvcuda64.so", "libnvcuda64_12.so", "libnvcuda64_128.so", "libnvcuda64_128_0.so", "libnvcuda64_120_8.so", "libnvcuda64_10.so", "libnvcuda64_11.so", "libnvcuda64_120_0.so", "libnvcuda64_9.so", "libnvcuda.so.12", "libnvcuda.so.11", "libnvcuda.so.10", "libnvcuda.so.1"]. Ensure that `LD_LIBRARY_PATH` has the correct path to the installed library. If the shared library is present on the system under a different name than one of those listed above, please open a GitHub issue.
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: cudarc::panic_no_lib_found
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/lib.rs:181:5
       3: cudarc::driver::sys::loaded::culib::{{closure}}
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26728:13
       4: std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:50
       5: std::sync::once_lock::OnceLock<T>::initialize::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:528:19
       6: std::sync::once::Once::call_once_force::{{closure}}
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:40
       7: std::sys::sync::once::futex::Once::call
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sys/sync/once/futex.rs:178:21
       8: std::sync::once::Once::call_once_force
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once.rs:217:20
       9: std::sync::once_lock::OnceLock<T>::initialize
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:527:19
      10: std::sync::once_lock::OnceLock<T>::get_or_try_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:403:14
      11: std::sync::once_lock::OnceLock<T>::get_or_init
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/sync/once_lock.rs:315:20
      12: cudarc::driver::sys::loaded::culib
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:26716:13
      13: cudarc::driver::sys::loaded::cuInit
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/sys/mod.rs:14988:10
      14: cudarc::driver::result::init
                 at /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cudarc-0.18.2/src/driver/result.rs:89:14
      15: trueno_zram_core::gpu::detect_cuda_devices
                 at ./src/gpu/mod.rs:214:5
      16: trueno_zram_core::gpu::gpu_available
                 at ./src/gpu/mod.rs:199:9
      17: trueno_zram_core::integration::tests::test_f095_wasm_excluded_correctly
                 at ./src/integration.rs:217:30
      18: trueno_zram_core::integration::tests::test_f095_wasm_excluded_correctly::{{closure}}
                 at ./src/integration.rs:210:43
      19: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
      20: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.068s] ( 998/1013) trueno-zram-core tests::test_f019_no_memory_leaks
        FAIL [   0.324s] ( 999/1013) trueno-ublk daemon::tests::test_perf002_sequential_write_throughput
  stdout ───

    running 1 test
    PERF-002.3: Sequential write throughput: 0.58 GB/s
      25600 pages in 180.28ms
    test daemon::tests::test_perf002_sequential_write_throughput ... FAILED

    failures:

    failures:
        daemon::tests::test_perf002_sequential_write_throughput

    test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 506 filtered out; finished in 0.30s

  stderr ───

    thread 'daemon::tests::test_perf002_sequential_write_throughput' (6610) panicked at bins/trueno-ublk/src/daemon.rs:2754:9:
    PERF-002.3 REFUTED: 0.58 GB/s < 0.80 GB/s target
    stack backtrace:
       0: __rustc::rust_begin_unwind
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/std/src/panicking.rs:698:5
       1: core::panicking::panic_fmt
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/panicking.rs:80:14
       2: trueno_ublk::daemon::tests::test_perf002_sequential_write_throughput
                 at ./src/daemon.rs:2754:9
       3: trueno_ublk::daemon::tests::test_perf002_sequential_write_throughput::{{closure}}
                 at ./src/daemon.rs:2708:50
       4: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
       5: core::ops::function::FnOnce::call_once
                 at /rustc/ded5c06cf21d2b93bffd5d884aa6e96934ee4234/library/core/src/ops/function.rs:250:5
    note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

        PASS [   0.415s] (1000/1013) trueno-ublk device::tests::popperian_c33_random_write_iops
        PASS [   0.467s] (1001/1013) trueno-ublk device::tests::popperian_c34_random_read_iops
        PASS [   0.475s] (1002/1013) trueno-ublk device::tests::popperian_c31_sequential_write_throughput
        PASS [   0.499s] (1003/1013) trueno-ublk daemon::tests::test_g112_batch_flush_latency
        PASS [   0.296s] (1004/1013) trueno-zram-core zram::ops::tests::test_create_with_high_device_number
        PASS [   0.804s] (1005/1013) trueno-ublk daemon::tests::test_g104_popperian_10gbps_throughput
        PASS [   0.836s] (1006/1013) trueno-ublk device::tests::popperian_c32_sequential_read_throughput
        PASS [   0.898s] (1007/1013) trueno-ublk device::tests::popperian_b28_buffer_pool_exhaustion
        PASS [   4.048s] (1008/1013) trueno-ublk perf::hiperf_daemon::tests::test_hiperf_resume_polling
        SLOW [> 60.000s] (─────────) trueno-zram-core zram::ops::tests::test_create_config_with_various_streams
        SLOW [> 60.000s] (─────────) trueno-zram-core zram::ops::tests::test_create_config_with_various_sizes
        SLOW [> 60.000s] (─────────) trueno-zram-core zram::ops::tests::test_create_config_with_all_algorithms
        SLOW [> 60.000s] (─────────) trueno-zram-core zram::ops::tests::test_create_nonexistent_no_control
        SLOW [> 60.000s] (─────────) trueno-zram-core zram::ops::tests::test_zram_ops_trait_all_methods
 TERMINATING [>120.000s] (─────────) trueno-zram-core zram::ops::tests::test_create_nonexistent_no_control
 TERMINATING [>120.000s] (─────────) trueno-zram-core zram::ops::tests::test_create_config_with_various_sizes
 TERMINATING [>120.000s] (─────────) trueno-zram-core zram::ops::tests::test_create_config_with_various_streams
 TERMINATING [>120.000s] (─────────) trueno-zram-core zram::ops::tests::test_create_config_with_all_algorithms
     TIMEOUT [ 120.003s] (1009/1013) trueno-zram-core zram::ops::tests::test_create_config_with_all_algorithms
  stdout ───

    running 1 test
    test zram::ops::tests::test_create_config_with_all_algorithms has been running for over 60 seconds

    (test timed out)

     TIMEOUT [ 120.004s] (1010/1013) trueno-zram-core zram::ops::tests::test_create_nonexistent_no_control
  stdout ───

    running 1 test
    test zram::ops::tests::test_create_nonexistent_no_control has been running for over 60 seconds

    (test timed out)

     TIMEOUT [ 120.005s] (1011/1013) trueno-zram-core zram::ops::tests::test_create_config_with_various_streams
  stdout ───

    running 1 test
    test zram::ops::tests::test_create_config_with_various_streams has been running for over 60 seconds

    (test timed out)

     TIMEOUT [ 120.005s] (1012/1013) trueno-zram-core zram::ops::tests::test_create_config_with_various_sizes
  stdout ───

    running 1 test
    test zram::ops::tests::test_create_config_with_various_sizes has been running for over 60 seconds

    (test timed out)

 TERMINATING [>120.000s] (─────────) trueno-zram-core zram::ops::tests::test_zram_ops_trait_all_methods
     TIMEOUT [ 120.004s] (1013/1013) trueno-zram-core zram::ops::tests::test_zram_ops_trait_all_methods
  stdout ───

    running 1 test
    test zram::ops::tests::test_zram_ops_trait_all_methods has been running for over 60 seconds

    (test timed out)

────────────
     Summary [ 120.275s] 1013 tests run: 987 passed, 21 failed, 5 timed out, 12 skipped
        FAIL [   0.094s] ( 824/1013) trueno-zram-core gpu::batch::tests::test_gpu_context_debug
        FAIL [   0.102s] ( 828/1013) trueno-zram-core gpu::batch::tests::test_f046_throughput_target
        FAIL [   0.105s] ( 834/1013) trueno-zram-core gpu::batch::tests::test_f038_empty_batch
        FAIL [   0.106s] ( 835/1013) trueno-zram-core gpu::batch::tests::test_f036_gpu_batch_compressor_creation
        FAIL [   0.101s] ( 837/1013) trueno-zram-core gpu::batch::tests::test_probador_all_random_pages
        FAIL [   0.105s] ( 838/1013) trueno-zram-core gpu::batch::tests::test_f045_algorithm_selection
        FAIL [   0.101s] ( 842/1013) trueno-zram-core gpu::batch::tests::test_probador_gpu_data_flow
        FAIL [   0.109s] ( 844/1013) trueno-zram-core gpu::batch::tests::test_f037_batch_compression_valid_output
        FAIL [   0.110s] ( 845/1013) trueno-zram-core gpu::batch::tests::test_f039_timing_components
        FAIL [   0.105s] ( 846/1013) trueno-zram-core gpu::batch::tests::test_probador_all_zero_pages
        FAIL [   0.104s] ( 847/1013) trueno-zram-core gpu::batch::tests::test_probador_incremental_bytes
        FAIL [   0.106s] ( 856/1013) trueno-zram-core gpu::batch::tests::test_probador_large_batch_stress
        FAIL [   0.112s] ( 859/1013) trueno-zram-core gpu::batch::tests::test_f047_async_dma_benefit
        FAIL [   0.112s] ( 860/1013) trueno-zram-core gpu::batch::tests::test_f041_statistics_accumulation
        FAIL [   0.092s] ( 864/1013) trueno-zram-core gpu::tests::test_gpu_batch_compression
        FAIL [   0.106s] ( 867/1013) trueno-zram-core gpu::batch::tests::test_probador_single_page
        FAIL [   0.098s] ( 875/1013) trueno-zram-core gpu::tests::test_cuda_device_detection
        FAIL [   0.096s] ( 879/1013) trueno-zram-core gpu::tests::test_gpu_compressor_creation_with_cuda
        FAIL [   0.100s] ( 898/1013) trueno-zram-core gpu::tests::test_gpu_backend_selection_with_cuda
        FAIL [   0.104s] ( 997/1013) trueno-zram-core integration::tests::test_f095_wasm_excluded_correctly
        FAIL [   0.324s] ( 999/1013) trueno-ublk daemon::tests::test_perf002_sequential_write_throughput
     TIMEOUT [ 120.003s] (1009/1013) trueno-zram-core zram::ops::tests::test_create_config_with_all_algorithms
     TIMEOUT [ 120.004s] (1010/1013) trueno-zram-core zram::ops::tests::test_create_nonexistent_no_control
     TIMEOUT [ 120.005s] (1011/1013) trueno-zram-core zram::ops::tests::test_create_config_with_various_streams
     TIMEOUT [ 120.005s] (1012/1013) trueno-zram-core zram::ops::tests::test_create_config_with_various_sizes
     TIMEOUT [ 120.004s] (1013/1013) trueno-zram-core zram::ops::tests::test_zram_ops_trait_all_methods
error: test run failed