ferrotorch-gpu 0.5.6

CUDA GPU backend for ferrotorch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
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
//! cuSPARSE-backed sparse primitives.
//!
//! This module implements the `spmm_csr_f32`/`spmm_csr_f64` GPU paths used
//! by `ferrotorch_core::sparse::SparseTensor::spmm` when the dense operand
//! is a CUDA tensor (P2), plus the `sparse_to_dense_csr` and
//! `dense_to_sparse_csr` paths used by `SparseTensor::to_dense_on` and
//! `SparseTensor::from_dense` against CUDA tensors (P3).
//!
//! PyTorch's `torch.sparse.mm`, `torch.Tensor.to_dense`, and
//! `torch.Tensor.to_sparse` all run on cuSPARSE when the input lives on
//! CUDA; ferrotorch mirrors that per `rust-gpu-discipline §3`.
//!
//! # Storage
//!
//! ferrotorch's `SparseTensor` stores indices/values on the host (COO).
//! We coalesce on the host (sort by `(row, col)`, sum duplicates), build
//! a CSR triple `(crow_indices, col_indices, values)` on the host, upload
//! all three to device buffers, then dispatch `cusparseSpMM` with
//! `CUSPARSE_SPMM_ALG_DEFAULT`. The dense operand is already on device.
//!
//! # Handle lifetime
//!
//! cuSPARSE handles are expensive to create. [`CudaBackendImpl`] caches
//! one handle per CUDA device via `OnceLock`, created on first use. The
//! handle is bound to the device's default stream via `cusparseSetStream`
//! before each call so that subsequent `cusparseSpMM` enqueues on the
//! same stream as cuBLAS / kernel launches.

#![cfg(feature = "cuda")]

use cudarc::cusparse::sys as csys;
use cudarc::driver::{DevicePtr, DevicePtrMut};

use crate::buffer::CudaBuffer;
use crate::device::GpuDevice;
use crate::error::{GpuError, GpuResult};
use crate::transfer::{alloc_zeros_f32, alloc_zeros_f64, cpu_to_gpu};

// ---------------------------------------------------------------------------
// Handle wrapper
// ---------------------------------------------------------------------------

/// Owning wrapper around a `cusparseHandle_t` that destroys the handle on
/// drop. cuSPARSE handles are not thread-safe in general, but the only
/// caller is [`CudaBackendImpl`] which holds them inside `Mutex`-style
/// `OnceLock` slots and binds the stream per call.
#[derive(Debug)]
pub struct CusparseHandle {
    inner: csys::cusparseHandle_t,
}

// SAFETY:
// `cusparseHandle_t` is a raw pointer to an opaque cuSPARSE context.
// Sending the handle between threads is safe as long as the cuSPARSE
// API is called from one thread at a time, which `CudaBackendImpl`
// guarantees by binding the stream and serialising calls per device.
unsafe impl Send for CusparseHandle {}
// SAFETY:
// Same reasoning as `Send` — the handle is opaque and cuSPARSE calls
// take it via the API which is documented thread-safe when distinct
// streams are used. We don't use it concurrently across threads in
// ferrotorch, so this is at most a sound over-approximation.
unsafe impl Sync for CusparseHandle {}

impl CusparseHandle {
    /// Create a fresh cuSPARSE handle on the current CUDA context.
    pub fn new() -> GpuResult<Self> {
        let inner = cudarc::cusparse::result::create().map_err(|e| GpuError::InvalidState {
            message: format!("cusparseCreate failed: {e:?}"),
        })?;
        Ok(Self { inner })
    }

    /// Raw handle, for FFI calls.
    #[inline]
    pub fn raw(&self) -> csys::cusparseHandle_t {
        self.inner
    }
}

impl Drop for CusparseHandle {
    fn drop(&mut self) {
        // SAFETY: `self.inner` was created via `cusparseCreate` in `new`
        // and has not been destroyed yet. `Drop` runs at most once.
        unsafe {
            let _ = cudarc::cusparse::result::destroy(self.inner);
        }
    }
}

// ---------------------------------------------------------------------------
// Status helper
// ---------------------------------------------------------------------------

fn check(status: csys::cusparseStatus_t, op: &'static str) -> GpuResult<()> {
    if status == csys::cusparseStatus_t::CUSPARSE_STATUS_SUCCESS {
        Ok(())
    } else {
        Err(GpuError::InvalidState {
            message: format!("{op} returned cuSPARSE status {status:?}"),
        })
    }
}

/// Bind the cuSPARSE handle to the given device's stream so subsequent
/// SpMM calls enqueue on the same stream as the rest of the GPU work.
fn set_stream(handle: &CusparseHandle, device: &GpuDevice) -> GpuResult<()> {
    // SAFETY:
    // - `handle` is a valid, non-destroyed `cusparseHandle_t` (CusparseHandle
    //   only exposes a raw handle through `raw()` and destroys on drop).
    // - The stream pointer comes from `device.stream().cu_stream()` which
    //   is a valid `CUstream` for the lifetime of the `Arc<CudaStream>`.
    //   `cudaStream_t` and `CUstream` are both `*mut CUstream_st` (the
    //   driver/runtime ABI is unified at this typedef level), so the
    //   `as *mut _` cast between cudarc's `driver::sys::CUstream_st` and
    //   `cusparse::sys::CUstream_st` opaque structs is a safe re-typing
    //   of the same pointer.
    let stream = device.stream();
    let cu_stream_ptr = stream.cu_stream() as *mut csys::CUstream_st;
    let status =
        unsafe { csys::cusparseSetStream(handle.raw(), cu_stream_ptr as csys::cudaStream_t) };
    check(status, "cusparseSetStream")
}

// ---------------------------------------------------------------------------
// SpMM (f32)
// ---------------------------------------------------------------------------

/// Compute `C = A @ B` on the GPU via `cusparseSpMM` for a CSR sparse `A`
/// (`m × k`) and a dense `B` (`k × n`) row-major. Returns a row-major
/// dense `C` (`m × n`) on the same device.
///
/// `crow_indices` (length `m + 1`), `col_indices` (length `nnz`), and
/// `values` (length `nnz`) describe the CSR structure on the host. They
/// are uploaded just-in-time. `dense` is already on device.
#[allow(clippy::too_many_arguments)]
pub fn gpu_spmm_csr_f32(
    handle: &CusparseHandle,
    crow_indices: &[u32],
    col_indices: &[u32],
    values: &[f32],
    dense: &CudaBuffer<f32>,
    m: usize,
    k: usize,
    n: usize,
    device: &GpuDevice,
) -> GpuResult<CudaBuffer<f32>> {
    if crow_indices.len() != m + 1 {
        return Err(GpuError::ShapeMismatch {
            op: "spmm_csr_f32",
            expected: vec![m + 1],
            got: vec![crow_indices.len()],
        });
    }
    if col_indices.len() != values.len() {
        return Err(GpuError::ShapeMismatch {
            op: "spmm_csr_f32",
            expected: vec![values.len()],
            got: vec![col_indices.len()],
        });
    }
    if dense.len() != k * n {
        return Err(GpuError::ShapeMismatch {
            op: "spmm_csr_f32",
            expected: vec![k, n],
            got: vec![dense.len()],
        });
    }

    if m == 0 || n == 0 {
        return alloc_zeros_f32(m * n, device);
    }
    // For a zero-row sparse matrix or all-zero K dimension, the result
    // is all zeros. Skip cuSPARSE — it accepts nnz=0 in modern toolkits
    // but allocating + zeroing is cheaper and guaranteed correct.
    let nnz = values.len();
    if nnz == 0 || k == 0 {
        return alloc_zeros_f32(m * n, device);
    }

    set_stream(handle, device)?;

    // Upload CSR to device.
    let mut d_crow = cpu_to_gpu(crow_indices, device)?;
    let mut d_col = cpu_to_gpu(col_indices, device)?;
    let mut d_vals = cpu_to_gpu(values, device)?;

    // Output buffer.
    let mut out = alloc_zeros_f32(m * n, device)?;

    let stream = device.stream();

    let mut sp_mat: csys::cusparseSpMatDescr_t = std::ptr::null_mut();
    let mut dn_b: csys::cusparseDnMatDescr_t = std::ptr::null_mut();
    let mut dn_c: csys::cusparseDnMatDescr_t = std::ptr::null_mut();

    // Convert dimensions to i64 for cuSPARSE descriptors.
    let m_i64 = i64::try_from(m).map_err(|_| GpuError::ShapeMismatch {
        op: "spmm_csr_f32",
        expected: vec![i64::MAX as usize],
        got: vec![m],
    })?;
    let k_i64 = i64::try_from(k).map_err(|_| GpuError::ShapeMismatch {
        op: "spmm_csr_f32",
        expected: vec![i64::MAX as usize],
        got: vec![k],
    })?;
    let n_i64 = i64::try_from(n).map_err(|_| GpuError::ShapeMismatch {
        op: "spmm_csr_f32",
        expected: vec![i64::MAX as usize],
        got: vec![n],
    })?;
    let nnz_i64 = i64::try_from(nnz).map_err(|_| GpuError::ShapeMismatch {
        op: "spmm_csr_f32",
        expected: vec![i64::MAX as usize],
        got: vec![nnz],
    })?;

    let alpha: f32 = 1.0;
    let beta: f32 = 0.0;

    // Build the cuSPARSE descriptors. Use unsafe to drive the raw FFI
    // and make sure each descriptor is destroyed below.
    //
    // SAFETY:
    // - `cusparseCreateCsr` requires three device pointers of the
    //   appropriate types (i32 row offsets, i32 col indices, f32 values)
    //   with exactly `nnz` (or `m+1`) elements. Buffers were uploaded
    //   from `crow_indices`/`col_indices`/`values` which we sized above.
    // - `cusparseCreateDnMat` requires a row-major dense buffer of size
    //   `rows * ld` elements; `dense` is `k*n` and `ld = n` matches.
    //   `out` is `m*n` and we pass `ld = n`. Both buffers stay live for
    //   the lifetime of the descriptors.
    // - `i32` index type matches the `u32` host data: cuSPARSE stores
    //   indices in 32-bit ints; we use unsigned u32 host-side which has
    //   identical layout. cuSPARSE's `CUSPARSE_INDEX_32I` reads them as
    //   signed, but for a non-negative index domain (which CSR is) the
    //   bit pattern is identical.
    let result = (|| -> GpuResult<()> {
        // Acquire device pointers inside the closure so the cudarc
        // `SyncOnDrop` guards drop here, freeing the borrow on `out`
        // before we return it from the outer function.
        let (crow_ptr, _crow_sync) = d_crow.inner_mut().device_ptr_mut(&stream);
        let (col_ptr, _col_sync) = d_col.inner_mut().device_ptr_mut(&stream);
        let (vals_ptr, _vals_sync) = d_vals.inner_mut().device_ptr_mut(&stream);
        let (dense_ptr, _dense_sync) = dense.inner().device_ptr(&stream);
        let (out_ptr, _out_sync) = out.inner_mut().device_ptr_mut(&stream);

        let status = unsafe {
            csys::cusparseCreateCsr(
                &mut sp_mat,
                m_i64,
                k_i64,
                nnz_i64,
                crow_ptr as *mut std::ffi::c_void,
                col_ptr as *mut std::ffi::c_void,
                vals_ptr as *mut std::ffi::c_void,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
                csys::cudaDataType_t::CUDA_R_32F,
            )
        };
        check(status, "cusparseCreateCsr")?;

        let status = unsafe {
            csys::cusparseCreateDnMat(
                &mut dn_b,
                k_i64,
                n_i64,
                n_i64,
                dense_ptr as *mut std::ffi::c_void,
                csys::cudaDataType_t::CUDA_R_32F,
                csys::cusparseOrder_t::CUSPARSE_ORDER_ROW,
            )
        };
        check(status, "cusparseCreateDnMat (B)")?;

        let status = unsafe {
            csys::cusparseCreateDnMat(
                &mut dn_c,
                m_i64,
                n_i64,
                n_i64,
                out_ptr as *mut std::ffi::c_void,
                csys::cudaDataType_t::CUDA_R_32F,
                csys::cusparseOrder_t::CUSPARSE_ORDER_ROW,
            )
        };
        check(status, "cusparseCreateDnMat (C)")?;

        // Query workspace size.
        let mut buffer_size: usize = 0;
        let status = unsafe {
            csys::cusparseSpMM_bufferSize(
                handle.raw(),
                csys::cusparseOperation_t::CUSPARSE_OPERATION_NON_TRANSPOSE,
                csys::cusparseOperation_t::CUSPARSE_OPERATION_NON_TRANSPOSE,
                std::ptr::from_ref::<f32>(&alpha).cast::<std::ffi::c_void>(),
                sp_mat,
                dn_b,
                std::ptr::from_ref::<f32>(&beta).cast::<std::ffi::c_void>(),
                dn_c,
                csys::cudaDataType_t::CUDA_R_32F,
                csys::cusparseSpMMAlg_t::CUSPARSE_SPMM_ALG_DEFAULT,
                &mut buffer_size,
            )
        };
        check(status, "cusparseSpMM_bufferSize")?;

        // Allocate workspace as a u8 buffer.
        let workspace_bytes = buffer_size;
        let mut workspace_slice = if workspace_bytes > 0 {
            Some(stream.alloc_zeros::<u8>(workspace_bytes)?)
        } else {
            None
        };
        let workspace_ptr = match workspace_slice.as_mut() {
            Some(s) => {
                let (p, _sync) = s.device_ptr_mut(&stream);
                p as *mut std::ffi::c_void
            }
            None => std::ptr::null_mut(),
        };

        let status = unsafe {
            csys::cusparseSpMM(
                handle.raw(),
                csys::cusparseOperation_t::CUSPARSE_OPERATION_NON_TRANSPOSE,
                csys::cusparseOperation_t::CUSPARSE_OPERATION_NON_TRANSPOSE,
                std::ptr::from_ref::<f32>(&alpha).cast::<std::ffi::c_void>(),
                sp_mat,
                dn_b,
                std::ptr::from_ref::<f32>(&beta).cast::<std::ffi::c_void>(),
                dn_c,
                csys::cudaDataType_t::CUDA_R_32F,
                csys::cusparseSpMMAlg_t::CUSPARSE_SPMM_ALG_DEFAULT,
                workspace_ptr,
            )
        };
        check(status, "cusparseSpMM")?;

        drop(workspace_slice);
        Ok(())
    })();

    // Always destroy descriptors, in reverse creation order.
    //
    // SAFETY: Each pointer was either left null (creation failed) or set
    // by a successful Create*. cuSPARSE's Destroy* tolerates a null arg
    // by returning SUCCESS for safe destruction. We ignore destruction
    // errors so a primary failure isn't masked.
    unsafe {
        if !dn_c.is_null() {
            let _ = csys::cusparseDestroyDnMat(dn_c);
        }
        if !dn_b.is_null() {
            let _ = csys::cusparseDestroyDnMat(dn_b);
        }
        if !sp_mat.is_null() {
            let _ = csys::cusparseDestroySpMat(sp_mat);
        }
    }

    result?;
    Ok(out)
}

// ---------------------------------------------------------------------------
// SpMM (f64) — mirrors f32 with `CUDA_R_64F` and f64 alpha/beta.
// ---------------------------------------------------------------------------

/// Compute `C = A @ B` on the GPU via `cusparseSpMM` for a CSR sparse `A`
/// (`m × k`) and a dense `B` (`k × n`) row-major (f64). Returns a row-major
/// dense `C` (`m × n`) on the same device. Mirrors [`gpu_spmm_csr_f32`].
#[allow(clippy::too_many_arguments)]
pub fn gpu_spmm_csr_f64(
    handle: &CusparseHandle,
    crow_indices: &[u32],
    col_indices: &[u32],
    values: &[f64],
    dense: &CudaBuffer<f64>,
    m: usize,
    k: usize,
    n: usize,
    device: &GpuDevice,
) -> GpuResult<CudaBuffer<f64>> {
    if crow_indices.len() != m + 1 {
        return Err(GpuError::ShapeMismatch {
            op: "spmm_csr_f64",
            expected: vec![m + 1],
            got: vec![crow_indices.len()],
        });
    }
    if col_indices.len() != values.len() {
        return Err(GpuError::ShapeMismatch {
            op: "spmm_csr_f64",
            expected: vec![values.len()],
            got: vec![col_indices.len()],
        });
    }
    if dense.len() != k * n {
        return Err(GpuError::ShapeMismatch {
            op: "spmm_csr_f64",
            expected: vec![k, n],
            got: vec![dense.len()],
        });
    }

    if m == 0 || n == 0 {
        return alloc_zeros_f64(m * n, device);
    }
    let nnz = values.len();
    if nnz == 0 || k == 0 {
        return alloc_zeros_f64(m * n, device);
    }

    set_stream(handle, device)?;

    let mut d_crow = cpu_to_gpu(crow_indices, device)?;
    let mut d_col = cpu_to_gpu(col_indices, device)?;
    let mut d_vals = cpu_to_gpu(values, device)?;
    let mut out = alloc_zeros_f64(m * n, device)?;

    let stream = device.stream();

    let mut sp_mat: csys::cusparseSpMatDescr_t = std::ptr::null_mut();
    let mut dn_b: csys::cusparseDnMatDescr_t = std::ptr::null_mut();
    let mut dn_c: csys::cusparseDnMatDescr_t = std::ptr::null_mut();

    let m_i64 = i64::try_from(m).map_err(|_| GpuError::ShapeMismatch {
        op: "spmm_csr_f64",
        expected: vec![i64::MAX as usize],
        got: vec![m],
    })?;
    let k_i64 = i64::try_from(k).map_err(|_| GpuError::ShapeMismatch {
        op: "spmm_csr_f64",
        expected: vec![i64::MAX as usize],
        got: vec![k],
    })?;
    let n_i64 = i64::try_from(n).map_err(|_| GpuError::ShapeMismatch {
        op: "spmm_csr_f64",
        expected: vec![i64::MAX as usize],
        got: vec![n],
    })?;
    let nnz_i64 = i64::try_from(nnz).map_err(|_| GpuError::ShapeMismatch {
        op: "spmm_csr_f64",
        expected: vec![i64::MAX as usize],
        got: vec![nnz],
    })?;

    let alpha: f64 = 1.0;
    let beta: f64 = 0.0;

    // SAFETY: Same obligations as the f32 path; `CUDA_R_64F` + `f64`
    // alpha/beta substituted for the dtype change. All descriptors are
    // destroyed in the reverse-order block below.
    let result = (|| -> GpuResult<()> {
        // Acquire device pointers inside the closure so cudarc's
        // `SyncOnDrop` guards drop here, freeing the borrow on `out`
        // before the outer function returns it.
        let (crow_ptr, _crow_sync) = d_crow.inner_mut().device_ptr_mut(&stream);
        let (col_ptr, _col_sync) = d_col.inner_mut().device_ptr_mut(&stream);
        let (vals_ptr, _vals_sync) = d_vals.inner_mut().device_ptr_mut(&stream);
        let (dense_ptr, _dense_sync) = dense.inner().device_ptr(&stream);
        let (out_ptr, _out_sync) = out.inner_mut().device_ptr_mut(&stream);

        let status = unsafe {
            csys::cusparseCreateCsr(
                &mut sp_mat,
                m_i64,
                k_i64,
                nnz_i64,
                crow_ptr as *mut std::ffi::c_void,
                col_ptr as *mut std::ffi::c_void,
                vals_ptr as *mut std::ffi::c_void,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
                csys::cudaDataType_t::CUDA_R_64F,
            )
        };
        check(status, "cusparseCreateCsr (f64)")?;

        let status = unsafe {
            csys::cusparseCreateDnMat(
                &mut dn_b,
                k_i64,
                n_i64,
                n_i64,
                dense_ptr as *mut std::ffi::c_void,
                csys::cudaDataType_t::CUDA_R_64F,
                csys::cusparseOrder_t::CUSPARSE_ORDER_ROW,
            )
        };
        check(status, "cusparseCreateDnMat B (f64)")?;

        let status = unsafe {
            csys::cusparseCreateDnMat(
                &mut dn_c,
                m_i64,
                n_i64,
                n_i64,
                out_ptr as *mut std::ffi::c_void,
                csys::cudaDataType_t::CUDA_R_64F,
                csys::cusparseOrder_t::CUSPARSE_ORDER_ROW,
            )
        };
        check(status, "cusparseCreateDnMat C (f64)")?;

        let mut buffer_size: usize = 0;
        let status = unsafe {
            csys::cusparseSpMM_bufferSize(
                handle.raw(),
                csys::cusparseOperation_t::CUSPARSE_OPERATION_NON_TRANSPOSE,
                csys::cusparseOperation_t::CUSPARSE_OPERATION_NON_TRANSPOSE,
                std::ptr::from_ref::<f64>(&alpha).cast::<std::ffi::c_void>(),
                sp_mat,
                dn_b,
                std::ptr::from_ref::<f64>(&beta).cast::<std::ffi::c_void>(),
                dn_c,
                csys::cudaDataType_t::CUDA_R_64F,
                csys::cusparseSpMMAlg_t::CUSPARSE_SPMM_ALG_DEFAULT,
                &mut buffer_size,
            )
        };
        check(status, "cusparseSpMM_bufferSize (f64)")?;

        let workspace_bytes = buffer_size;
        let mut workspace_slice = if workspace_bytes > 0 {
            Some(stream.alloc_zeros::<u8>(workspace_bytes)?)
        } else {
            None
        };
        let workspace_ptr = match workspace_slice.as_mut() {
            Some(s) => {
                let (p, _sync) = s.device_ptr_mut(&stream);
                p as *mut std::ffi::c_void
            }
            None => std::ptr::null_mut(),
        };

        let status = unsafe {
            csys::cusparseSpMM(
                handle.raw(),
                csys::cusparseOperation_t::CUSPARSE_OPERATION_NON_TRANSPOSE,
                csys::cusparseOperation_t::CUSPARSE_OPERATION_NON_TRANSPOSE,
                std::ptr::from_ref::<f64>(&alpha).cast::<std::ffi::c_void>(),
                sp_mat,
                dn_b,
                std::ptr::from_ref::<f64>(&beta).cast::<std::ffi::c_void>(),
                dn_c,
                csys::cudaDataType_t::CUDA_R_64F,
                csys::cusparseSpMMAlg_t::CUSPARSE_SPMM_ALG_DEFAULT,
                workspace_ptr,
            )
        };
        check(status, "cusparseSpMM (f64)")?;

        drop(workspace_slice);
        Ok(())
    })();

    // SAFETY: same as f32 destroy block.
    unsafe {
        if !dn_c.is_null() {
            let _ = csys::cusparseDestroyDnMat(dn_c);
        }
        if !dn_b.is_null() {
            let _ = csys::cusparseDestroyDnMat(dn_b);
        }
        if !sp_mat.is_null() {
            let _ = csys::cusparseDestroySpMat(sp_mat);
        }
    }

    result?;
    Ok(out)
}

// ---------------------------------------------------------------------------
// SparseToDense (f32) — `cusparseSparseToDense` (P3)
// ---------------------------------------------------------------------------

/// Materialize a CSR sparse matrix into a dense `[m, n]` row-major device
/// buffer (f32). PyTorch parity: `torch.Tensor.to_dense()` on a CUDA sparse
/// tensor runs through `cusparseSparseToDense`.
///
/// `crow_indices` (length `m + 1`), `col_indices` (length `nnz`) and
/// `values` (length `nnz`) describe the CSR structure on the host. They
/// are uploaded just-in-time. Output `[m, n]` lives on `device`.
#[allow(clippy::too_many_arguments)]
pub fn gpu_sparse_to_dense_csr_f32(
    handle: &CusparseHandle,
    crow_indices: &[u32],
    col_indices: &[u32],
    values: &[f32],
    m: usize,
    n: usize,
    device: &GpuDevice,
) -> GpuResult<CudaBuffer<f32>> {
    if crow_indices.len() != m + 1 {
        return Err(GpuError::ShapeMismatch {
            op: "sparse_to_dense_csr_f32",
            expected: vec![m + 1],
            got: vec![crow_indices.len()],
        });
    }
    if col_indices.len() != values.len() {
        return Err(GpuError::ShapeMismatch {
            op: "sparse_to_dense_csr_f32",
            expected: vec![values.len()],
            got: vec![col_indices.len()],
        });
    }

    // Empty output: return a zero buffer without invoking cuSPARSE. cuSPARSE
    // tolerates nnz = 0 in modern toolkits but this avoids descriptor churn
    // for the common all-zeros case.
    if m == 0 || n == 0 {
        return alloc_zeros_f32(m * n, device);
    }
    let nnz = values.len();
    if nnz == 0 {
        return alloc_zeros_f32(m * n, device);
    }

    set_stream(handle, device)?;

    // Upload CSR to device. The buffers must outlive the descriptors which
    // outlive the cuSPARSE call.
    let mut d_crow = cpu_to_gpu(crow_indices, device)?;
    let mut d_col = cpu_to_gpu(col_indices, device)?;
    let mut d_vals = cpu_to_gpu(values, device)?;

    // Output dense buffer, zero-initialized so missing CSR entries are 0.
    let mut out = alloc_zeros_f32(m * n, device)?;

    let stream = device.stream();

    let mut sp_mat: csys::cusparseConstSpMatDescr_t = std::ptr::null_mut();
    let mut dn_c: csys::cusparseDnMatDescr_t = std::ptr::null_mut();

    let m_i64 = i64::try_from(m).map_err(|_| GpuError::ShapeMismatch {
        op: "sparse_to_dense_csr_f32",
        expected: vec![i64::MAX as usize],
        got: vec![m],
    })?;
    let n_i64 = i64::try_from(n).map_err(|_| GpuError::ShapeMismatch {
        op: "sparse_to_dense_csr_f32",
        expected: vec![i64::MAX as usize],
        got: vec![n],
    })?;
    let nnz_i64 = i64::try_from(nnz).map_err(|_| GpuError::ShapeMismatch {
        op: "sparse_to_dense_csr_f32",
        expected: vec![i64::MAX as usize],
        got: vec![nnz],
    })?;

    // SAFETY: see SAFETY block in `gpu_spmm_csr_f32` — same descriptor
    // ownership and lifetime obligations apply here. The CSR descriptor is
    // const (read-only on the device side), the dense descriptor is mutable
    // and points to `out`.
    let result = (|| -> GpuResult<()> {
        let (crow_ptr, _crow_sync) = d_crow.inner_mut().device_ptr_mut(&stream);
        let (col_ptr, _col_sync) = d_col.inner_mut().device_ptr_mut(&stream);
        let (vals_ptr, _vals_sync) = d_vals.inner_mut().device_ptr_mut(&stream);
        let (out_ptr, _out_sync) = out.inner_mut().device_ptr_mut(&stream);

        let status = unsafe {
            csys::cusparseCreateConstCsr(
                &mut sp_mat,
                m_i64,
                n_i64,
                nnz_i64,
                crow_ptr as *const std::ffi::c_void,
                col_ptr as *const std::ffi::c_void,
                vals_ptr as *const std::ffi::c_void,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
                csys::cudaDataType_t::CUDA_R_32F,
            )
        };
        check(status, "cusparseCreateConstCsr (s2d f32)")?;

        let status = unsafe {
            csys::cusparseCreateDnMat(
                &mut dn_c,
                m_i64,
                n_i64,
                n_i64,
                out_ptr as *mut std::ffi::c_void,
                csys::cudaDataType_t::CUDA_R_32F,
                csys::cusparseOrder_t::CUSPARSE_ORDER_ROW,
            )
        };
        check(status, "cusparseCreateDnMat (s2d f32 C)")?;

        // Query workspace.
        let mut buffer_size: usize = 0;
        let status = unsafe {
            csys::cusparseSparseToDense_bufferSize(
                handle.raw(),
                sp_mat,
                dn_c,
                csys::cusparseSparseToDenseAlg_t::CUSPARSE_SPARSETODENSE_ALG_DEFAULT,
                &mut buffer_size,
            )
        };
        check(status, "cusparseSparseToDense_bufferSize (f32)")?;

        let mut workspace_slice = if buffer_size > 0 {
            Some(stream.alloc_zeros::<u8>(buffer_size)?)
        } else {
            None
        };
        let workspace_ptr = match workspace_slice.as_mut() {
            Some(s) => {
                let (p, _sync) = s.device_ptr_mut(&stream);
                p as *mut std::ffi::c_void
            }
            None => std::ptr::null_mut(),
        };

        let status = unsafe {
            csys::cusparseSparseToDense(
                handle.raw(),
                sp_mat,
                dn_c,
                csys::cusparseSparseToDenseAlg_t::CUSPARSE_SPARSETODENSE_ALG_DEFAULT,
                workspace_ptr,
            )
        };
        check(status, "cusparseSparseToDense (f32)")?;

        drop(workspace_slice);
        Ok(())
    })();

    // SAFETY: see destroy block in `gpu_spmm_csr_f32` for the same null-
    // tolerance and reverse-creation-order rationale. Note: const descriptors
    // share the same `cusparseDestroySpMat` overload.
    unsafe {
        if !dn_c.is_null() {
            let _ = csys::cusparseDestroyDnMat(dn_c);
        }
        if !sp_mat.is_null() {
            let _ = csys::cusparseDestroySpMat(sp_mat);
        }
    }

    result?;
    Ok(out)
}

// ---------------------------------------------------------------------------
// SparseToDense (f64)
// ---------------------------------------------------------------------------

/// f64 companion of [`gpu_sparse_to_dense_csr_f32`].
#[allow(clippy::too_many_arguments)]
pub fn gpu_sparse_to_dense_csr_f64(
    handle: &CusparseHandle,
    crow_indices: &[u32],
    col_indices: &[u32],
    values: &[f64],
    m: usize,
    n: usize,
    device: &GpuDevice,
) -> GpuResult<CudaBuffer<f64>> {
    if crow_indices.len() != m + 1 {
        return Err(GpuError::ShapeMismatch {
            op: "sparse_to_dense_csr_f64",
            expected: vec![m + 1],
            got: vec![crow_indices.len()],
        });
    }
    if col_indices.len() != values.len() {
        return Err(GpuError::ShapeMismatch {
            op: "sparse_to_dense_csr_f64",
            expected: vec![values.len()],
            got: vec![col_indices.len()],
        });
    }

    if m == 0 || n == 0 {
        return alloc_zeros_f64(m * n, device);
    }
    let nnz = values.len();
    if nnz == 0 {
        return alloc_zeros_f64(m * n, device);
    }

    set_stream(handle, device)?;

    let mut d_crow = cpu_to_gpu(crow_indices, device)?;
    let mut d_col = cpu_to_gpu(col_indices, device)?;
    let mut d_vals = cpu_to_gpu(values, device)?;
    let mut out = alloc_zeros_f64(m * n, device)?;

    let stream = device.stream();

    let mut sp_mat: csys::cusparseConstSpMatDescr_t = std::ptr::null_mut();
    let mut dn_c: csys::cusparseDnMatDescr_t = std::ptr::null_mut();

    let m_i64 = i64::try_from(m).map_err(|_| GpuError::ShapeMismatch {
        op: "sparse_to_dense_csr_f64",
        expected: vec![i64::MAX as usize],
        got: vec![m],
    })?;
    let n_i64 = i64::try_from(n).map_err(|_| GpuError::ShapeMismatch {
        op: "sparse_to_dense_csr_f64",
        expected: vec![i64::MAX as usize],
        got: vec![n],
    })?;
    let nnz_i64 = i64::try_from(nnz).map_err(|_| GpuError::ShapeMismatch {
        op: "sparse_to_dense_csr_f64",
        expected: vec![i64::MAX as usize],
        got: vec![nnz],
    })?;

    // SAFETY: see f32 path; the only difference is the dtype tag.
    let result = (|| -> GpuResult<()> {
        let (crow_ptr, _crow_sync) = d_crow.inner_mut().device_ptr_mut(&stream);
        let (col_ptr, _col_sync) = d_col.inner_mut().device_ptr_mut(&stream);
        let (vals_ptr, _vals_sync) = d_vals.inner_mut().device_ptr_mut(&stream);
        let (out_ptr, _out_sync) = out.inner_mut().device_ptr_mut(&stream);

        let status = unsafe {
            csys::cusparseCreateConstCsr(
                &mut sp_mat,
                m_i64,
                n_i64,
                nnz_i64,
                crow_ptr as *const std::ffi::c_void,
                col_ptr as *const std::ffi::c_void,
                vals_ptr as *const std::ffi::c_void,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
                csys::cudaDataType_t::CUDA_R_64F,
            )
        };
        check(status, "cusparseCreateConstCsr (s2d f64)")?;

        let status = unsafe {
            csys::cusparseCreateDnMat(
                &mut dn_c,
                m_i64,
                n_i64,
                n_i64,
                out_ptr as *mut std::ffi::c_void,
                csys::cudaDataType_t::CUDA_R_64F,
                csys::cusparseOrder_t::CUSPARSE_ORDER_ROW,
            )
        };
        check(status, "cusparseCreateDnMat (s2d f64 C)")?;

        let mut buffer_size: usize = 0;
        let status = unsafe {
            csys::cusparseSparseToDense_bufferSize(
                handle.raw(),
                sp_mat,
                dn_c,
                csys::cusparseSparseToDenseAlg_t::CUSPARSE_SPARSETODENSE_ALG_DEFAULT,
                &mut buffer_size,
            )
        };
        check(status, "cusparseSparseToDense_bufferSize (f64)")?;

        let mut workspace_slice = if buffer_size > 0 {
            Some(stream.alloc_zeros::<u8>(buffer_size)?)
        } else {
            None
        };
        let workspace_ptr = match workspace_slice.as_mut() {
            Some(s) => {
                let (p, _sync) = s.device_ptr_mut(&stream);
                p as *mut std::ffi::c_void
            }
            None => std::ptr::null_mut(),
        };

        let status = unsafe {
            csys::cusparseSparseToDense(
                handle.raw(),
                sp_mat,
                dn_c,
                csys::cusparseSparseToDenseAlg_t::CUSPARSE_SPARSETODENSE_ALG_DEFAULT,
                workspace_ptr,
            )
        };
        check(status, "cusparseSparseToDense (f64)")?;

        drop(workspace_slice);
        Ok(())
    })();

    unsafe {
        if !dn_c.is_null() {
            let _ = csys::cusparseDestroyDnMat(dn_c);
        }
        if !sp_mat.is_null() {
            let _ = csys::cusparseDestroySpMat(sp_mat);
        }
    }

    result?;
    Ok(out)
}

// ---------------------------------------------------------------------------
// DenseToSparse (f32) — `cusparseDenseToSparse_*` (P3)
// ---------------------------------------------------------------------------

/// Extract the CSR triplet of a row-major `[m, n]` dense f32 device matrix.
/// PyTorch parity: `torch.Tensor.to_sparse()` on a CUDA tensor dispatches
/// to `cusparseDenseToSparse_*`. Only **exact-zero** entries are dropped.
///
/// Returns `(crow_indices, col_indices, values)` host-side; the caller is
/// responsible for placement (`SparseTensor` is CPU-resident, so this
/// is the natural shape).
pub fn gpu_dense_to_sparse_csr_f32(
    handle: &CusparseHandle,
    dense: &CudaBuffer<f32>,
    m: usize,
    n: usize,
    device: &GpuDevice,
) -> GpuResult<(Vec<u32>, Vec<u32>, Vec<f32>)> {
    if dense.len() != m * n {
        return Err(GpuError::ShapeMismatch {
            op: "dense_to_sparse_csr_f32",
            expected: vec![m, n],
            got: vec![dense.len()],
        });
    }

    if m == 0 || n == 0 {
        // Empty dense: empty CSR. crow_indices length is m+1.
        return Ok((vec![0; m + 1], Vec::new(), Vec::new()));
    }

    set_stream(handle, device)?;

    let stream = device.stream();

    // Allocate CSR row offsets up-front; cuSPARSE writes them in
    // `DenseToSparse_analysis`. Column indices/values are sized after
    // analysis via `cusparseSpMatGetSize`.
    let mut d_crow = stream.alloc_zeros::<u32>(m + 1)?;

    let mut sp_mat: csys::cusparseSpMatDescr_t = std::ptr::null_mut();
    let mut dn_a: csys::cusparseConstDnMatDescr_t = std::ptr::null_mut();

    let m_i64 = i64::try_from(m).map_err(|_| GpuError::ShapeMismatch {
        op: "dense_to_sparse_csr_f32",
        expected: vec![i64::MAX as usize],
        got: vec![m],
    })?;
    let n_i64 = i64::try_from(n).map_err(|_| GpuError::ShapeMismatch {
        op: "dense_to_sparse_csr_f32",
        expected: vec![i64::MAX as usize],
        got: vec![n],
    })?;

    // We track placeholders for the final col-indices / values device
    // buffers — they must outlive `cusparseDenseToSparse_convert` and the
    // descriptor's internal pointers, so we carry them out of the analysis
    // closure via Option<Vec<...>>-shaped slots.
    let mut d_col_storage: Option<cudarc::driver::CudaSlice<u32>> = None;
    let mut d_vals_storage: Option<cudarc::driver::CudaSlice<f32>> = None;
    let mut nnz_out: i64 = 0;

    // SAFETY: cuSPARSE descriptor lifetimes mirror the SpMM path. The
    // dense descriptor is `const` (read-only A), the sparse descriptor is
    // mutable (cuSPARSE writes the structure). Buffers stay live for the
    // whole closure which destroys descriptors before returning.
    let result = (|| -> GpuResult<()> {
        let (dense_ptr, _dense_sync) = dense.inner().device_ptr(&stream);
        let (crow_ptr, _crow_sync) = d_crow.device_ptr_mut(&stream);

        let status = unsafe {
            csys::cusparseCreateConstDnMat(
                &mut dn_a,
                m_i64,
                n_i64,
                n_i64,
                dense_ptr as *const std::ffi::c_void,
                csys::cudaDataType_t::CUDA_R_32F,
                csys::cusparseOrder_t::CUSPARSE_ORDER_ROW,
            )
        };
        check(status, "cusparseCreateConstDnMat (d2s f32)")?;

        // Initial sparse descriptor with crow pointer set; col & values
        // pointers are null until we have nnz from the analysis pass.
        let status = unsafe {
            csys::cusparseCreateCsr(
                &mut sp_mat,
                m_i64,
                n_i64,
                0,
                crow_ptr as *mut std::ffi::c_void,
                std::ptr::null_mut(),
                std::ptr::null_mut(),
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
                csys::cudaDataType_t::CUDA_R_32F,
            )
        };
        check(status, "cusparseCreateCsr (d2s f32 init)")?;

        // Workspace for analysis + convert.
        let mut buffer_size: usize = 0;
        let status = unsafe {
            csys::cusparseDenseToSparse_bufferSize(
                handle.raw(),
                dn_a,
                sp_mat,
                csys::cusparseDenseToSparseAlg_t::CUSPARSE_DENSETOSPARSE_ALG_DEFAULT,
                &mut buffer_size,
            )
        };
        check(status, "cusparseDenseToSparse_bufferSize (f32)")?;

        let mut workspace_slice = if buffer_size > 0 {
            Some(stream.alloc_zeros::<u8>(buffer_size)?)
        } else {
            None
        };
        let workspace_ptr = match workspace_slice.as_mut() {
            Some(s) => {
                let (p, _sync) = s.device_ptr_mut(&stream);
                p as *mut std::ffi::c_void
            }
            None => std::ptr::null_mut(),
        };

        // Analysis: cuSPARSE fills crow_indices and counts nnz.
        let status = unsafe {
            csys::cusparseDenseToSparse_analysis(
                handle.raw(),
                dn_a,
                sp_mat,
                csys::cusparseDenseToSparseAlg_t::CUSPARSE_DENSETOSPARSE_ALG_DEFAULT,
                workspace_ptr,
            )
        };
        check(status, "cusparseDenseToSparse_analysis (f32)")?;

        // Read the discovered nnz.
        let mut rows_out: i64 = 0;
        let mut cols_out: i64 = 0;
        let status = unsafe {
            csys::cusparseSpMatGetSize(sp_mat, &mut rows_out, &mut cols_out, &mut nnz_out)
        };
        check(status, "cusparseSpMatGetSize (d2s f32)")?;

        // Allocate col-indices and values buffers sized to nnz, then bind
        // them to the descriptor for the convert step.
        let nnz_usize = usize::try_from(nnz_out).map_err(|_| GpuError::ShapeMismatch {
            op: "dense_to_sparse_csr_f32",
            expected: vec![0],
            got: vec![usize::MAX],
        })?;
        let mut d_col_local = stream.alloc_zeros::<u32>(nnz_usize.max(1))?;
        let mut d_vals_local = stream.alloc_zeros::<f32>(nnz_usize.max(1))?;

        // Scope the mutable-pointer borrows so the SyncOnDrop guards drop
        // before we move `d_col_local`/`d_vals_local` into the storage slots.
        {
            let (col_ptr, _col_sync) = d_col_local.device_ptr_mut(&stream);
            let (vals_ptr, _vals_sync) = d_vals_local.device_ptr_mut(&stream);

            let status = unsafe {
                csys::cusparseCsrSetPointers(
                    sp_mat,
                    crow_ptr as *mut std::ffi::c_void,
                    col_ptr as *mut std::ffi::c_void,
                    vals_ptr as *mut std::ffi::c_void,
                )
            };
            check(status, "cusparseCsrSetPointers (d2s f32)")?;

            let status = unsafe {
                csys::cusparseDenseToSparse_convert(
                    handle.raw(),
                    dn_a,
                    sp_mat,
                    csys::cusparseDenseToSparseAlg_t::CUSPARSE_DENSETOSPARSE_ALG_DEFAULT,
                    workspace_ptr,
                )
            };
            check(status, "cusparseDenseToSparse_convert (f32)")?;
        }

        drop(workspace_slice);
        d_col_storage = Some(d_col_local);
        d_vals_storage = Some(d_vals_local);
        Ok(())
    })();

    // SAFETY: descriptors created above; null-tolerant destroy.
    unsafe {
        if !sp_mat.is_null() {
            let _ = csys::cusparseDestroySpMat(sp_mat);
        }
        if !dn_a.is_null() {
            let _ = csys::cusparseDestroyDnMat(dn_a);
        }
    }

    result?;

    // D2H readback. crow_indices is exactly m+1 elements. col_indices and
    // values are nnz_out elements (we sized buffers with `.max(1)` to keep
    // the alloc valid when nnz==0; truncate to nnz on the host side).
    let mut crow = stream.clone_dtoh(&d_crow)?;
    crow.truncate(m + 1);

    let nnz_usize = usize::try_from(nnz_out).map_err(|_| GpuError::ShapeMismatch {
        op: "dense_to_sparse_csr_f32",
        expected: vec![0],
        got: vec![usize::MAX],
    })?;
    let (col, vals) = if nnz_usize == 0 {
        (Vec::new(), Vec::new())
    } else {
        let d_col = d_col_storage.expect("col buffer set on success");
        let d_vals = d_vals_storage.expect("values buffer set on success");
        let mut col_h = stream.clone_dtoh(&d_col)?;
        col_h.truncate(nnz_usize);
        let mut vals_h = stream.clone_dtoh(&d_vals)?;
        vals_h.truncate(nnz_usize);
        (col_h, vals_h)
    };

    Ok((crow, col, vals))
}

// ---------------------------------------------------------------------------
// DenseToSparse (f64)
// ---------------------------------------------------------------------------

/// f64 companion of [`gpu_dense_to_sparse_csr_f32`].
pub fn gpu_dense_to_sparse_csr_f64(
    handle: &CusparseHandle,
    dense: &CudaBuffer<f64>,
    m: usize,
    n: usize,
    device: &GpuDevice,
) -> GpuResult<(Vec<u32>, Vec<u32>, Vec<f64>)> {
    if dense.len() != m * n {
        return Err(GpuError::ShapeMismatch {
            op: "dense_to_sparse_csr_f64",
            expected: vec![m, n],
            got: vec![dense.len()],
        });
    }

    if m == 0 || n == 0 {
        return Ok((vec![0; m + 1], Vec::new(), Vec::new()));
    }

    set_stream(handle, device)?;
    let stream = device.stream();

    let mut d_crow = stream.alloc_zeros::<u32>(m + 1)?;

    let mut sp_mat: csys::cusparseSpMatDescr_t = std::ptr::null_mut();
    let mut dn_a: csys::cusparseConstDnMatDescr_t = std::ptr::null_mut();

    let m_i64 = i64::try_from(m).map_err(|_| GpuError::ShapeMismatch {
        op: "dense_to_sparse_csr_f64",
        expected: vec![i64::MAX as usize],
        got: vec![m],
    })?;
    let n_i64 = i64::try_from(n).map_err(|_| GpuError::ShapeMismatch {
        op: "dense_to_sparse_csr_f64",
        expected: vec![i64::MAX as usize],
        got: vec![n],
    })?;

    let mut d_col_storage: Option<cudarc::driver::CudaSlice<u32>> = None;
    let mut d_vals_storage: Option<cudarc::driver::CudaSlice<f64>> = None;
    let mut nnz_out: i64 = 0;

    // SAFETY: same as f32 path with CUDA_R_64F substituted.
    let result = (|| -> GpuResult<()> {
        let (dense_ptr, _dense_sync) = dense.inner().device_ptr(&stream);
        let (crow_ptr, _crow_sync) = d_crow.device_ptr_mut(&stream);

        let status = unsafe {
            csys::cusparseCreateConstDnMat(
                &mut dn_a,
                m_i64,
                n_i64,
                n_i64,
                dense_ptr as *const std::ffi::c_void,
                csys::cudaDataType_t::CUDA_R_64F,
                csys::cusparseOrder_t::CUSPARSE_ORDER_ROW,
            )
        };
        check(status, "cusparseCreateConstDnMat (d2s f64)")?;

        let status = unsafe {
            csys::cusparseCreateCsr(
                &mut sp_mat,
                m_i64,
                n_i64,
                0,
                crow_ptr as *mut std::ffi::c_void,
                std::ptr::null_mut(),
                std::ptr::null_mut(),
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
                csys::cudaDataType_t::CUDA_R_64F,
            )
        };
        check(status, "cusparseCreateCsr (d2s f64 init)")?;

        let mut buffer_size: usize = 0;
        let status = unsafe {
            csys::cusparseDenseToSparse_bufferSize(
                handle.raw(),
                dn_a,
                sp_mat,
                csys::cusparseDenseToSparseAlg_t::CUSPARSE_DENSETOSPARSE_ALG_DEFAULT,
                &mut buffer_size,
            )
        };
        check(status, "cusparseDenseToSparse_bufferSize (f64)")?;

        let mut workspace_slice = if buffer_size > 0 {
            Some(stream.alloc_zeros::<u8>(buffer_size)?)
        } else {
            None
        };
        let workspace_ptr = match workspace_slice.as_mut() {
            Some(s) => {
                let (p, _sync) = s.device_ptr_mut(&stream);
                p as *mut std::ffi::c_void
            }
            None => std::ptr::null_mut(),
        };

        let status = unsafe {
            csys::cusparseDenseToSparse_analysis(
                handle.raw(),
                dn_a,
                sp_mat,
                csys::cusparseDenseToSparseAlg_t::CUSPARSE_DENSETOSPARSE_ALG_DEFAULT,
                workspace_ptr,
            )
        };
        check(status, "cusparseDenseToSparse_analysis (f64)")?;

        let mut rows_out: i64 = 0;
        let mut cols_out: i64 = 0;
        let status = unsafe {
            csys::cusparseSpMatGetSize(sp_mat, &mut rows_out, &mut cols_out, &mut nnz_out)
        };
        check(status, "cusparseSpMatGetSize (d2s f64)")?;

        let nnz_usize = usize::try_from(nnz_out).map_err(|_| GpuError::ShapeMismatch {
            op: "dense_to_sparse_csr_f64",
            expected: vec![0],
            got: vec![usize::MAX],
        })?;
        let mut d_col_local = stream.alloc_zeros::<u32>(nnz_usize.max(1))?;
        let mut d_vals_local = stream.alloc_zeros::<f64>(nnz_usize.max(1))?;

        // Scope the SyncOnDrop guards so they release before we move the
        // buffers into storage slots.
        {
            let (col_ptr, _col_sync) = d_col_local.device_ptr_mut(&stream);
            let (vals_ptr, _vals_sync) = d_vals_local.device_ptr_mut(&stream);

            let status = unsafe {
                csys::cusparseCsrSetPointers(
                    sp_mat,
                    crow_ptr as *mut std::ffi::c_void,
                    col_ptr as *mut std::ffi::c_void,
                    vals_ptr as *mut std::ffi::c_void,
                )
            };
            check(status, "cusparseCsrSetPointers (d2s f64)")?;

            let status = unsafe {
                csys::cusparseDenseToSparse_convert(
                    handle.raw(),
                    dn_a,
                    sp_mat,
                    csys::cusparseDenseToSparseAlg_t::CUSPARSE_DENSETOSPARSE_ALG_DEFAULT,
                    workspace_ptr,
                )
            };
            check(status, "cusparseDenseToSparse_convert (f64)")?;
        }

        drop(workspace_slice);
        d_col_storage = Some(d_col_local);
        d_vals_storage = Some(d_vals_local);
        Ok(())
    })();

    unsafe {
        if !sp_mat.is_null() {
            let _ = csys::cusparseDestroySpMat(sp_mat);
        }
        if !dn_a.is_null() {
            let _ = csys::cusparseDestroyDnMat(dn_a);
        }
    }

    result?;

    let mut crow = stream.clone_dtoh(&d_crow)?;
    crow.truncate(m + 1);

    let nnz_usize = usize::try_from(nnz_out).map_err(|_| GpuError::ShapeMismatch {
        op: "dense_to_sparse_csr_f64",
        expected: vec![0],
        got: vec![usize::MAX],
    })?;
    let (col, vals) = if nnz_usize == 0 {
        (Vec::new(), Vec::new())
    } else {
        let d_col = d_col_storage.expect("col buffer set on success");
        let d_vals = d_vals_storage.expect("values buffer set on success");
        let mut col_h = stream.clone_dtoh(&d_col)?;
        col_h.truncate(nnz_usize);
        let mut vals_h = stream.clone_dtoh(&d_vals)?;
        vals_h.truncate(nnz_usize);
        (col_h, vals_h)
    };

    Ok((crow, col, vals))
}

// ===========================================================================
// P7 — CSR/CSC/COO conversions + CSC → dense
// ===========================================================================
//
// PyTorch parity (rust-gpu-discipline §3): `torch.sparse_csr_tensor` /
// `torch.sparse_csc_tensor` / `torch.sparse_coo_tensor` keep results on the
// input device. The format-conversion helpers (`.to_sparse_csr()`,
// `.to_sparse_csc()`, `.to_dense()` on a CSR/CSC/COO tensor) dispatch to
// cuSPARSE on CUDA. ferrotorch routes:
//   - CSC → dense via `cusparseSparseToDense` with a CSC descriptor (built
//     via `cusparseCreateConstCsc`).
//   - CSR ↔ CSC via `cusparseCsr2cscEx2` (the cuSPARSE dual conversion).
//   - COO ↔ CSR via `cusparseXcoo2csr` / `cusparseXcsr2coo` (header-only
//     row-pointer compaction; values pass through unchanged).
//
// The CSR-shaped sparse-to-dense already exists above (P3); the CSC variant
// is the dual.

// ---------------------------------------------------------------------------
// SparseToDense CSC (f32)
// ---------------------------------------------------------------------------

/// Materialize a CSC sparse matrix into a dense `[m, n]` row-major device
/// buffer (f32). PyTorch parity: `torch.sparse_csc_tensor(...).to_dense()`
/// on CUDA dispatches to `cusparseSparseToDense` with a CSC descriptor.
///
/// `col_ptrs` (length `n + 1`), `row_indices` (length `nnz`) and `values`
/// (length `nnz`) describe the CSC structure on the host. They are
/// uploaded just-in-time. Output `[m, n]` lives on `device`.
#[allow(clippy::too_many_arguments)]
pub fn gpu_csc_to_dense_f32(
    handle: &CusparseHandle,
    col_ptrs: &[u32],
    row_indices: &[u32],
    values: &[f32],
    m: usize,
    n: usize,
    device: &GpuDevice,
) -> GpuResult<CudaBuffer<f32>> {
    if col_ptrs.len() != n + 1 {
        return Err(GpuError::ShapeMismatch {
            op: "csc_to_dense_f32",
            expected: vec![n + 1],
            got: vec![col_ptrs.len()],
        });
    }
    if row_indices.len() != values.len() {
        return Err(GpuError::ShapeMismatch {
            op: "csc_to_dense_f32",
            expected: vec![values.len()],
            got: vec![row_indices.len()],
        });
    }

    if m == 0 || n == 0 {
        return alloc_zeros_f32(m * n, device);
    }
    let nnz = values.len();
    if nnz == 0 {
        return alloc_zeros_f32(m * n, device);
    }

    set_stream(handle, device)?;

    let mut d_col = cpu_to_gpu(col_ptrs, device)?;
    let mut d_row = cpu_to_gpu(row_indices, device)?;
    let mut d_vals = cpu_to_gpu(values, device)?;

    let mut out = alloc_zeros_f32(m * n, device)?;

    let stream = device.stream();

    let mut sp_mat: csys::cusparseConstSpMatDescr_t = std::ptr::null_mut();
    let mut dn_c: csys::cusparseDnMatDescr_t = std::ptr::null_mut();

    let m_i64 = i64::try_from(m).map_err(|_| GpuError::ShapeMismatch {
        op: "csc_to_dense_f32",
        expected: vec![i64::MAX as usize],
        got: vec![m],
    })?;
    let n_i64 = i64::try_from(n).map_err(|_| GpuError::ShapeMismatch {
        op: "csc_to_dense_f32",
        expected: vec![i64::MAX as usize],
        got: vec![n],
    })?;
    let nnz_i64 = i64::try_from(nnz).map_err(|_| GpuError::ShapeMismatch {
        op: "csc_to_dense_f32",
        expected: vec![i64::MAX as usize],
        got: vec![nnz],
    })?;

    // SAFETY: descriptor lifetimes mirror `gpu_sparse_to_dense_csr_f32`. The
    // CSC descriptor is `const` (cuSPARSE only reads the structure for
    // `SparseToDense`). The dense descriptor is mutable and writes into
    // `out`. Buffers `d_col`, `d_row`, `d_vals`, `out` outlive the closure
    // which runs `cusparseSparseToDense` and destroys the descriptors before
    // returning, so the descriptor-internal pointers stay valid for the
    // entire FFI window.
    let result = (|| -> GpuResult<()> {
        let (col_ptr, _col_sync) = d_col.inner_mut().device_ptr_mut(&stream);
        let (row_ptr, _row_sync) = d_row.inner_mut().device_ptr_mut(&stream);
        let (vals_ptr, _vals_sync) = d_vals.inner_mut().device_ptr_mut(&stream);
        let (out_ptr, _out_sync) = out.inner_mut().device_ptr_mut(&stream);

        let status = unsafe {
            csys::cusparseCreateConstCsc(
                &mut sp_mat,
                m_i64,
                n_i64,
                nnz_i64,
                col_ptr as *const std::ffi::c_void,
                row_ptr as *const std::ffi::c_void,
                vals_ptr as *const std::ffi::c_void,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
                csys::cudaDataType_t::CUDA_R_32F,
            )
        };
        check(status, "cusparseCreateConstCsc (s2d f32)")?;

        let status = unsafe {
            csys::cusparseCreateDnMat(
                &mut dn_c,
                m_i64,
                n_i64,
                n_i64,
                out_ptr as *mut std::ffi::c_void,
                csys::cudaDataType_t::CUDA_R_32F,
                csys::cusparseOrder_t::CUSPARSE_ORDER_ROW,
            )
        };
        check(status, "cusparseCreateDnMat (csc s2d f32 C)")?;

        let mut buffer_size: usize = 0;
        let status = unsafe {
            csys::cusparseSparseToDense_bufferSize(
                handle.raw(),
                sp_mat,
                dn_c,
                csys::cusparseSparseToDenseAlg_t::CUSPARSE_SPARSETODENSE_ALG_DEFAULT,
                &mut buffer_size,
            )
        };
        check(status, "cusparseSparseToDense_bufferSize (csc f32)")?;

        let mut workspace_slice = if buffer_size > 0 {
            Some(stream.alloc_zeros::<u8>(buffer_size)?)
        } else {
            None
        };
        let workspace_ptr = match workspace_slice.as_mut() {
            Some(s) => {
                let (p, _sync) = s.device_ptr_mut(&stream);
                p as *mut std::ffi::c_void
            }
            None => std::ptr::null_mut(),
        };

        let status = unsafe {
            csys::cusparseSparseToDense(
                handle.raw(),
                sp_mat,
                dn_c,
                csys::cusparseSparseToDenseAlg_t::CUSPARSE_SPARSETODENSE_ALG_DEFAULT,
                workspace_ptr,
            )
        };
        check(status, "cusparseSparseToDense (csc f32)")?;

        drop(workspace_slice);
        Ok(())
    })();

    unsafe {
        if !dn_c.is_null() {
            let _ = csys::cusparseDestroyDnMat(dn_c);
        }
        if !sp_mat.is_null() {
            let _ = csys::cusparseDestroySpMat(sp_mat);
        }
    }

    result?;
    Ok(out)
}

// ---------------------------------------------------------------------------
// SparseToDense CSC (f64)
// ---------------------------------------------------------------------------

/// f64 companion of [`gpu_csc_to_dense_f32`].
#[allow(clippy::too_many_arguments)]
pub fn gpu_csc_to_dense_f64(
    handle: &CusparseHandle,
    col_ptrs: &[u32],
    row_indices: &[u32],
    values: &[f64],
    m: usize,
    n: usize,
    device: &GpuDevice,
) -> GpuResult<CudaBuffer<f64>> {
    if col_ptrs.len() != n + 1 {
        return Err(GpuError::ShapeMismatch {
            op: "csc_to_dense_f64",
            expected: vec![n + 1],
            got: vec![col_ptrs.len()],
        });
    }
    if row_indices.len() != values.len() {
        return Err(GpuError::ShapeMismatch {
            op: "csc_to_dense_f64",
            expected: vec![values.len()],
            got: vec![row_indices.len()],
        });
    }

    if m == 0 || n == 0 {
        return alloc_zeros_f64(m * n, device);
    }
    let nnz = values.len();
    if nnz == 0 {
        return alloc_zeros_f64(m * n, device);
    }

    set_stream(handle, device)?;

    let mut d_col = cpu_to_gpu(col_ptrs, device)?;
    let mut d_row = cpu_to_gpu(row_indices, device)?;
    let mut d_vals = cpu_to_gpu(values, device)?;

    let mut out = alloc_zeros_f64(m * n, device)?;

    let stream = device.stream();

    let mut sp_mat: csys::cusparseConstSpMatDescr_t = std::ptr::null_mut();
    let mut dn_c: csys::cusparseDnMatDescr_t = std::ptr::null_mut();

    let m_i64 = i64::try_from(m).map_err(|_| GpuError::ShapeMismatch {
        op: "csc_to_dense_f64",
        expected: vec![i64::MAX as usize],
        got: vec![m],
    })?;
    let n_i64 = i64::try_from(n).map_err(|_| GpuError::ShapeMismatch {
        op: "csc_to_dense_f64",
        expected: vec![i64::MAX as usize],
        got: vec![n],
    })?;
    let nnz_i64 = i64::try_from(nnz).map_err(|_| GpuError::ShapeMismatch {
        op: "csc_to_dense_f64",
        expected: vec![i64::MAX as usize],
        got: vec![nnz],
    })?;

    // SAFETY: same descriptor-lifetime / pointer-stability obligations as
    // the f32 sibling above; only the dtype enum changes.
    let result = (|| -> GpuResult<()> {
        let (col_ptr, _col_sync) = d_col.inner_mut().device_ptr_mut(&stream);
        let (row_ptr, _row_sync) = d_row.inner_mut().device_ptr_mut(&stream);
        let (vals_ptr, _vals_sync) = d_vals.inner_mut().device_ptr_mut(&stream);
        let (out_ptr, _out_sync) = out.inner_mut().device_ptr_mut(&stream);

        let status = unsafe {
            csys::cusparseCreateConstCsc(
                &mut sp_mat,
                m_i64,
                n_i64,
                nnz_i64,
                col_ptr as *const std::ffi::c_void,
                row_ptr as *const std::ffi::c_void,
                vals_ptr as *const std::ffi::c_void,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexType_t::CUSPARSE_INDEX_32I,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
                csys::cudaDataType_t::CUDA_R_64F,
            )
        };
        check(status, "cusparseCreateConstCsc (s2d f64)")?;

        let status = unsafe {
            csys::cusparseCreateDnMat(
                &mut dn_c,
                m_i64,
                n_i64,
                n_i64,
                out_ptr as *mut std::ffi::c_void,
                csys::cudaDataType_t::CUDA_R_64F,
                csys::cusparseOrder_t::CUSPARSE_ORDER_ROW,
            )
        };
        check(status, "cusparseCreateDnMat (csc s2d f64 C)")?;

        let mut buffer_size: usize = 0;
        let status = unsafe {
            csys::cusparseSparseToDense_bufferSize(
                handle.raw(),
                sp_mat,
                dn_c,
                csys::cusparseSparseToDenseAlg_t::CUSPARSE_SPARSETODENSE_ALG_DEFAULT,
                &mut buffer_size,
            )
        };
        check(status, "cusparseSparseToDense_bufferSize (csc f64)")?;

        let mut workspace_slice = if buffer_size > 0 {
            Some(stream.alloc_zeros::<u8>(buffer_size)?)
        } else {
            None
        };
        let workspace_ptr = match workspace_slice.as_mut() {
            Some(s) => {
                let (p, _sync) = s.device_ptr_mut(&stream);
                p as *mut std::ffi::c_void
            }
            None => std::ptr::null_mut(),
        };

        let status = unsafe {
            csys::cusparseSparseToDense(
                handle.raw(),
                sp_mat,
                dn_c,
                csys::cusparseSparseToDenseAlg_t::CUSPARSE_SPARSETODENSE_ALG_DEFAULT,
                workspace_ptr,
            )
        };
        check(status, "cusparseSparseToDense (csc f64)")?;

        drop(workspace_slice);
        Ok(())
    })();

    unsafe {
        if !dn_c.is_null() {
            let _ = csys::cusparseDestroyDnMat(dn_c);
        }
        if !sp_mat.is_null() {
            let _ = csys::cusparseDestroySpMat(sp_mat);
        }
    }

    result?;
    Ok(out)
}

// ---------------------------------------------------------------------------
// CSR → CSC (f32) — cusparseCsr2cscEx2
// ---------------------------------------------------------------------------

/// Convert CSR `(crow_indices, col_indices, values)` into the dual CSC
/// `(col_ptrs, row_indices, values_csc)` triplet via `cusparseCsr2cscEx2`.
///
/// PyTorch parity: `torch.sparse_csr_tensor(...).to_sparse_csc()` on CUDA.
/// Inputs are host buffers; outputs are returned as host `Vec`s
/// (`CscTensor` is CPU-resident).
#[allow(clippy::too_many_arguments)]
pub fn gpu_csr_to_csc_f32(
    handle: &CusparseHandle,
    crow_indices: &[u32],
    col_indices: &[u32],
    values: &[f32],
    m: usize,
    n: usize,
    device: &GpuDevice,
) -> GpuResult<(Vec<u32>, Vec<u32>, Vec<f32>)> {
    if crow_indices.len() != m + 1 {
        return Err(GpuError::ShapeMismatch {
            op: "csr_to_csc_f32",
            expected: vec![m + 1],
            got: vec![crow_indices.len()],
        });
    }
    if col_indices.len() != values.len() {
        return Err(GpuError::ShapeMismatch {
            op: "csr_to_csc_f32",
            expected: vec![values.len()],
            got: vec![col_indices.len()],
        });
    }

    // Empty CSR — empty CSC. col_ptrs has length n+1.
    if values.is_empty() {
        return Ok((vec![0u32; n + 1], Vec::new(), Vec::new()));
    }

    set_stream(handle, device)?;

    let nnz = values.len();
    let m_i = i32::try_from(m).map_err(|_| GpuError::ShapeMismatch {
        op: "csr_to_csc_f32",
        expected: vec![i32::MAX as usize],
        got: vec![m],
    })?;
    let n_i = i32::try_from(n).map_err(|_| GpuError::ShapeMismatch {
        op: "csr_to_csc_f32",
        expected: vec![i32::MAX as usize],
        got: vec![n],
    })?;
    let nnz_i = i32::try_from(nnz).map_err(|_| GpuError::ShapeMismatch {
        op: "csr_to_csc_f32",
        expected: vec![i32::MAX as usize],
        got: vec![nnz],
    })?;

    // Upload CSR triplet.
    let mut d_crow = cpu_to_gpu(crow_indices, device)?;
    let mut d_col = cpu_to_gpu(col_indices, device)?;
    let mut d_vals = cpu_to_gpu(values, device)?;

    let stream = device.stream();

    // Allocate destination CSC buffers on device.
    let mut d_col_ptrs = stream.alloc_zeros::<u32>(n + 1)?;
    let mut d_row_idx = stream.alloc_zeros::<u32>(nnz)?;
    let mut d_vals_csc = stream.alloc_zeros::<f32>(nnz)?;

    // SAFETY: `cusparseCsr2cscEx2_bufferSize` reads the descriptor pointers
    // but does not dereference them; afterwards `cusparseCsr2cscEx2` writes
    // CSC outputs into `d_col_ptrs`, `d_row_idx`, `d_vals_csc`. All buffers
    // outlive the FFI window. Index types are `i32` (CSR2CSC uses `int`),
    // matching `cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO`.
    let buffer_size = {
        let (crow_ptr, _crow_sync) = d_crow.inner_mut().device_ptr_mut(&stream);
        let (col_ptr, _col_sync) = d_col.inner_mut().device_ptr_mut(&stream);
        let (vals_ptr, _vals_sync) = d_vals.inner_mut().device_ptr_mut(&stream);
        let (cp_ptr, _cp_sync) = d_col_ptrs.device_ptr_mut(&stream);
        let (ri_ptr, _ri_sync) = d_row_idx.device_ptr_mut(&stream);
        let (vc_ptr, _vc_sync) = d_vals_csc.device_ptr_mut(&stream);

        let mut sz: usize = 0;
        let status = unsafe {
            csys::cusparseCsr2cscEx2_bufferSize(
                handle.raw(),
                m_i,
                n_i,
                nnz_i,
                vals_ptr as *const std::ffi::c_void,
                crow_ptr as *const i32,
                col_ptr as *const i32,
                vc_ptr as *mut std::ffi::c_void,
                cp_ptr as *mut i32,
                ri_ptr as *mut i32,
                csys::cudaDataType_t::CUDA_R_32F,
                csys::cusparseAction_t::CUSPARSE_ACTION_NUMERIC,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
                csys::cusparseCsr2CscAlg_t::CUSPARSE_CSR2CSC_ALG_DEFAULT,
                &mut sz,
            )
        };
        check(status, "cusparseCsr2cscEx2_bufferSize (f32)")?;
        sz
    };

    let mut workspace = if buffer_size > 0 {
        Some(stream.alloc_zeros::<u8>(buffer_size)?)
    } else {
        None
    };

    {
        let (crow_ptr, _crow_sync) = d_crow.inner_mut().device_ptr_mut(&stream);
        let (col_ptr, _col_sync) = d_col.inner_mut().device_ptr_mut(&stream);
        let (vals_ptr, _vals_sync) = d_vals.inner_mut().device_ptr_mut(&stream);
        let (cp_ptr, _cp_sync) = d_col_ptrs.device_ptr_mut(&stream);
        let (ri_ptr, _ri_sync) = d_row_idx.device_ptr_mut(&stream);
        let (vc_ptr, _vc_sync) = d_vals_csc.device_ptr_mut(&stream);
        let ws_ptr = match workspace.as_mut() {
            Some(s) => {
                let (p, _sync) = s.device_ptr_mut(&stream);
                p as *mut std::ffi::c_void
            }
            None => std::ptr::null_mut(),
        };

        let status = unsafe {
            csys::cusparseCsr2cscEx2(
                handle.raw(),
                m_i,
                n_i,
                nnz_i,
                vals_ptr as *const std::ffi::c_void,
                crow_ptr as *const i32,
                col_ptr as *const i32,
                vc_ptr as *mut std::ffi::c_void,
                cp_ptr as *mut i32,
                ri_ptr as *mut i32,
                csys::cudaDataType_t::CUDA_R_32F,
                csys::cusparseAction_t::CUSPARSE_ACTION_NUMERIC,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
                csys::cusparseCsr2CscAlg_t::CUSPARSE_CSR2CSC_ALG_DEFAULT,
                ws_ptr,
            )
        };
        check(status, "cusparseCsr2cscEx2 (f32)")?;
    }

    drop(workspace);

    let col_ptrs_h = stream.clone_dtoh(&d_col_ptrs)?;
    let row_idx_h = stream.clone_dtoh(&d_row_idx)?;
    let vals_h = stream.clone_dtoh(&d_vals_csc)?;
    Ok((col_ptrs_h, row_idx_h, vals_h))
}

// ---------------------------------------------------------------------------
// CSR → CSC (f64)
// ---------------------------------------------------------------------------

/// f64 companion of [`gpu_csr_to_csc_f32`].
#[allow(clippy::too_many_arguments)]
pub fn gpu_csr_to_csc_f64(
    handle: &CusparseHandle,
    crow_indices: &[u32],
    col_indices: &[u32],
    values: &[f64],
    m: usize,
    n: usize,
    device: &GpuDevice,
) -> GpuResult<(Vec<u32>, Vec<u32>, Vec<f64>)> {
    if crow_indices.len() != m + 1 {
        return Err(GpuError::ShapeMismatch {
            op: "csr_to_csc_f64",
            expected: vec![m + 1],
            got: vec![crow_indices.len()],
        });
    }
    if col_indices.len() != values.len() {
        return Err(GpuError::ShapeMismatch {
            op: "csr_to_csc_f64",
            expected: vec![values.len()],
            got: vec![col_indices.len()],
        });
    }

    if values.is_empty() {
        return Ok((vec![0u32; n + 1], Vec::new(), Vec::new()));
    }

    set_stream(handle, device)?;

    let nnz = values.len();
    let m_i = i32::try_from(m).map_err(|_| GpuError::ShapeMismatch {
        op: "csr_to_csc_f64",
        expected: vec![i32::MAX as usize],
        got: vec![m],
    })?;
    let n_i = i32::try_from(n).map_err(|_| GpuError::ShapeMismatch {
        op: "csr_to_csc_f64",
        expected: vec![i32::MAX as usize],
        got: vec![n],
    })?;
    let nnz_i = i32::try_from(nnz).map_err(|_| GpuError::ShapeMismatch {
        op: "csr_to_csc_f64",
        expected: vec![i32::MAX as usize],
        got: vec![nnz],
    })?;

    let mut d_crow = cpu_to_gpu(crow_indices, device)?;
    let mut d_col = cpu_to_gpu(col_indices, device)?;
    let mut d_vals = cpu_to_gpu(values, device)?;

    let stream = device.stream();

    let mut d_col_ptrs = stream.alloc_zeros::<u32>(n + 1)?;
    let mut d_row_idx = stream.alloc_zeros::<u32>(nnz)?;
    let mut d_vals_csc = stream.alloc_zeros::<f64>(nnz)?;

    // SAFETY: identical to f32 sibling; only `cudaDataType_t` changes.
    let buffer_size = {
        let (crow_ptr, _crow_sync) = d_crow.inner_mut().device_ptr_mut(&stream);
        let (col_ptr, _col_sync) = d_col.inner_mut().device_ptr_mut(&stream);
        let (vals_ptr, _vals_sync) = d_vals.inner_mut().device_ptr_mut(&stream);
        let (cp_ptr, _cp_sync) = d_col_ptrs.device_ptr_mut(&stream);
        let (ri_ptr, _ri_sync) = d_row_idx.device_ptr_mut(&stream);
        let (vc_ptr, _vc_sync) = d_vals_csc.device_ptr_mut(&stream);

        let mut sz: usize = 0;
        let status = unsafe {
            csys::cusparseCsr2cscEx2_bufferSize(
                handle.raw(),
                m_i,
                n_i,
                nnz_i,
                vals_ptr as *const std::ffi::c_void,
                crow_ptr as *const i32,
                col_ptr as *const i32,
                vc_ptr as *mut std::ffi::c_void,
                cp_ptr as *mut i32,
                ri_ptr as *mut i32,
                csys::cudaDataType_t::CUDA_R_64F,
                csys::cusparseAction_t::CUSPARSE_ACTION_NUMERIC,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
                csys::cusparseCsr2CscAlg_t::CUSPARSE_CSR2CSC_ALG_DEFAULT,
                &mut sz,
            )
        };
        check(status, "cusparseCsr2cscEx2_bufferSize (f64)")?;
        sz
    };

    let mut workspace = if buffer_size > 0 {
        Some(stream.alloc_zeros::<u8>(buffer_size)?)
    } else {
        None
    };

    {
        let (crow_ptr, _crow_sync) = d_crow.inner_mut().device_ptr_mut(&stream);
        let (col_ptr, _col_sync) = d_col.inner_mut().device_ptr_mut(&stream);
        let (vals_ptr, _vals_sync) = d_vals.inner_mut().device_ptr_mut(&stream);
        let (cp_ptr, _cp_sync) = d_col_ptrs.device_ptr_mut(&stream);
        let (ri_ptr, _ri_sync) = d_row_idx.device_ptr_mut(&stream);
        let (vc_ptr, _vc_sync) = d_vals_csc.device_ptr_mut(&stream);
        let ws_ptr = match workspace.as_mut() {
            Some(s) => {
                let (p, _sync) = s.device_ptr_mut(&stream);
                p as *mut std::ffi::c_void
            }
            None => std::ptr::null_mut(),
        };

        let status = unsafe {
            csys::cusparseCsr2cscEx2(
                handle.raw(),
                m_i,
                n_i,
                nnz_i,
                vals_ptr as *const std::ffi::c_void,
                crow_ptr as *const i32,
                col_ptr as *const i32,
                vc_ptr as *mut std::ffi::c_void,
                cp_ptr as *mut i32,
                ri_ptr as *mut i32,
                csys::cudaDataType_t::CUDA_R_64F,
                csys::cusparseAction_t::CUSPARSE_ACTION_NUMERIC,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
                csys::cusparseCsr2CscAlg_t::CUSPARSE_CSR2CSC_ALG_DEFAULT,
                ws_ptr,
            )
        };
        check(status, "cusparseCsr2cscEx2 (f64)")?;
    }

    drop(workspace);

    let col_ptrs_h = stream.clone_dtoh(&d_col_ptrs)?;
    let row_idx_h = stream.clone_dtoh(&d_row_idx)?;
    let vals_h = stream.clone_dtoh(&d_vals_csc)?;
    Ok((col_ptrs_h, row_idx_h, vals_h))
}

// ---------------------------------------------------------------------------
// COO → CSR — cusparseXcoo2csr
// ---------------------------------------------------------------------------
//
// `cusparseXcoo2csr` consumes a row-sorted COO row-index array and emits
// the CSR row-pointer array. `col_indices` and `values` pass through
// unchanged. Caller pre-sorts on the host before invocation. The function
// is dtype-agnostic at the API boundary; we expose f32/f64 wrappers that
// pass values through to keep the dispatch shape symmetric with the rest
// of the cuSPARSE wrappers.

fn gpu_coo_to_csr_indices(
    handle: &CusparseHandle,
    row_indices: &[u32],
    m: usize,
    device: &GpuDevice,
) -> GpuResult<Vec<u32>> {
    let nnz = row_indices.len();
    if nnz == 0 {
        return Ok(vec![0u32; m + 1]);
    }

    set_stream(handle, device)?;

    let m_i = i32::try_from(m).map_err(|_| GpuError::ShapeMismatch {
        op: "coo_to_csr_indices",
        expected: vec![i32::MAX as usize],
        got: vec![m],
    })?;
    let nnz_i = i32::try_from(nnz).map_err(|_| GpuError::ShapeMismatch {
        op: "coo_to_csr_indices",
        expected: vec![i32::MAX as usize],
        got: vec![nnz],
    })?;

    let mut d_rows = cpu_to_gpu(row_indices, device)?;
    let stream = device.stream();
    let mut d_crow = stream.alloc_zeros::<u32>(m + 1)?;

    // SAFETY: `cusparseXcoo2csr` reads `nnz` ints from `cooRowInd` and
    // writes `m+1` ints into `csrSortedRowPtr`. Both buffers have the
    // required capacity (`u32` and `i32` are both 32-bit). The cuSPARSE
    // contract requires `cooRowInd` be sorted in ascending row order; the
    // caller pre-sorts on the host (the f32/f64 wrappers above sort before
    // dispatch).
    {
        let (rows_ptr, _rows_sync) = d_rows.inner_mut().device_ptr_mut(&stream);
        let (crow_ptr, _crow_sync) = d_crow.device_ptr_mut(&stream);
        let status = unsafe {
            csys::cusparseXcoo2csr(
                handle.raw(),
                rows_ptr as *const i32,
                nnz_i,
                m_i,
                crow_ptr as *mut i32,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
            )
        };
        check(status, "cusparseXcoo2csr")?;
    }

    Ok(stream.clone_dtoh(&d_crow)?)
}

/// Convert COO `(row_indices, col_indices, values)` (host, **row-sorted**)
/// into the CSR triplet `(crow_indices, col_indices, values)`. Wraps
/// `cusparseXcoo2csr`. PyTorch parity: `torch.sparse_coo_tensor(...)
/// .to_sparse_csr()` on CUDA.
///
/// Caller responsibility: `row_indices` must be sorted in non-descending
/// order. With ferrotorch's `CooTensor::coalesce()`, that holds by
/// construction (sort key is `(row, col)`).
pub fn gpu_coo_to_csr_f32(
    handle: &CusparseHandle,
    row_indices: &[u32],
    col_indices: &[u32],
    values: &[f32],
    m: usize,
    _n: usize,
    device: &GpuDevice,
) -> GpuResult<(Vec<u32>, Vec<u32>, Vec<f32>)> {
    if row_indices.len() != values.len() || col_indices.len() != values.len() {
        return Err(GpuError::ShapeMismatch {
            op: "coo_to_csr_f32",
            expected: vec![values.len()],
            got: vec![row_indices.len(), col_indices.len()],
        });
    }
    let crow = gpu_coo_to_csr_indices(handle, row_indices, m, device)?;
    Ok((crow, col_indices.to_vec(), values.to_vec()))
}

/// f64 companion of [`gpu_coo_to_csr_f32`].
pub fn gpu_coo_to_csr_f64(
    handle: &CusparseHandle,
    row_indices: &[u32],
    col_indices: &[u32],
    values: &[f64],
    m: usize,
    _n: usize,
    device: &GpuDevice,
) -> GpuResult<(Vec<u32>, Vec<u32>, Vec<f64>)> {
    if row_indices.len() != values.len() || col_indices.len() != values.len() {
        return Err(GpuError::ShapeMismatch {
            op: "coo_to_csr_f64",
            expected: vec![values.len()],
            got: vec![row_indices.len(), col_indices.len()],
        });
    }
    let crow = gpu_coo_to_csr_indices(handle, row_indices, m, device)?;
    Ok((crow, col_indices.to_vec(), values.to_vec()))
}

// ---------------------------------------------------------------------------
// CSR → COO — cusparseXcsr2coo
// ---------------------------------------------------------------------------

fn gpu_csr_to_coo_indices(
    handle: &CusparseHandle,
    crow_indices: &[u32],
    nnz: usize,
    m: usize,
    device: &GpuDevice,
) -> GpuResult<Vec<u32>> {
    if nnz == 0 {
        return Ok(Vec::new());
    }
    set_stream(handle, device)?;

    let m_i = i32::try_from(m).map_err(|_| GpuError::ShapeMismatch {
        op: "csr_to_coo_indices",
        expected: vec![i32::MAX as usize],
        got: vec![m],
    })?;
    let nnz_i = i32::try_from(nnz).map_err(|_| GpuError::ShapeMismatch {
        op: "csr_to_coo_indices",
        expected: vec![i32::MAX as usize],
        got: vec![nnz],
    })?;

    let mut d_crow = cpu_to_gpu(crow_indices, device)?;
    let stream = device.stream();
    let mut d_rows = stream.alloc_zeros::<u32>(nnz)?;

    // SAFETY: `cusparseXcsr2coo` reads `m+1` row pointers and writes `nnz`
    // row indices. Both buffers have the required capacity.
    {
        let (crow_ptr, _crow_sync) = d_crow.inner_mut().device_ptr_mut(&stream);
        let (rows_ptr, _rows_sync) = d_rows.device_ptr_mut(&stream);
        let status = unsafe {
            csys::cusparseXcsr2coo(
                handle.raw(),
                crow_ptr as *const i32,
                nnz_i,
                m_i,
                rows_ptr as *mut i32,
                csys::cusparseIndexBase_t::CUSPARSE_INDEX_BASE_ZERO,
            )
        };
        check(status, "cusparseXcsr2coo")?;
    }

    Ok(stream.clone_dtoh(&d_rows)?)
}

/// Convert CSR `(crow_indices, col_indices, values)` to COO
/// `(row_indices, col_indices, values)`. Wraps `cusparseXcsr2coo`. PyTorch
/// parity: `torch.sparse_csr_tensor(...).to_sparse_coo()` on CUDA. Values
/// and column indices pass through unchanged.
pub fn gpu_csr_to_coo_f32(
    handle: &CusparseHandle,
    crow_indices: &[u32],
    col_indices: &[u32],
    values: &[f32],
    m: usize,
    _n: usize,
    device: &GpuDevice,
) -> GpuResult<(Vec<u32>, Vec<u32>, Vec<f32>)> {
    if crow_indices.len() != m + 1 {
        return Err(GpuError::ShapeMismatch {
            op: "csr_to_coo_f32",
            expected: vec![m + 1],
            got: vec![crow_indices.len()],
        });
    }
    if col_indices.len() != values.len() {
        return Err(GpuError::ShapeMismatch {
            op: "csr_to_coo_f32",
            expected: vec![values.len()],
            got: vec![col_indices.len()],
        });
    }
    let rows = gpu_csr_to_coo_indices(handle, crow_indices, values.len(), m, device)?;
    Ok((rows, col_indices.to_vec(), values.to_vec()))
}

/// f64 companion of [`gpu_csr_to_coo_f32`].
pub fn gpu_csr_to_coo_f64(
    handle: &CusparseHandle,
    crow_indices: &[u32],
    col_indices: &[u32],
    values: &[f64],
    m: usize,
    _n: usize,
    device: &GpuDevice,
) -> GpuResult<(Vec<u32>, Vec<u32>, Vec<f64>)> {
    if crow_indices.len() != m + 1 {
        return Err(GpuError::ShapeMismatch {
            op: "csr_to_coo_f64",
            expected: vec![m + 1],
            got: vec![crow_indices.len()],
        });
    }
    if col_indices.len() != values.len() {
        return Err(GpuError::ShapeMismatch {
            op: "csr_to_coo_f64",
            expected: vec![values.len()],
            got: vec![col_indices.len()],
        });
    }
    let rows = gpu_csr_to_coo_indices(handle, crow_indices, values.len(), m, device)?;
    Ok((rows, col_indices.to_vec(), values.to_vec()))
}