phastft 0.4.0-rc.1

A high-performance, quantum-inspired, implementation of FFT in pure Rust
Documentation
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
//! Real-to-Complex FFT (R2C) and Complex-to-Real IFFT (C2R)
//!
//! Computes the FFT of a purely real-valued input signal using the
//! "pack-into-half-length-complex" trick:
//!
//! 1. Deinterleave N real values into even/odd halves (N/2 each)
//! 2. Treat (even, odd) as a complex signal and run a complex FFT of size N/2
//! 3. "Untangle" the result with a twiddle-factor post-processing step to
//!    recover the N/2+1 unique bins of the spectrum
//!
//! The C2R inverse mirrors the forward path: a per-bin pre-processing step,
//! a half-length complex IFFT in scratch, and a SIMD re-interleave back into
//! the caller's real output buffer.
//!
//! This halves the work compared to calling the complex FFT with a zeroed
//! imaginary array, and halves the output memory compared to materializing
//! the full N-point spectrum (which is conjugate-symmetric for real input).
//!
//! # Output layout (N/2+1 "compact")
//!
//! For real input the DFT satisfies `X[N-k] = conj(X[k])`, so only bins
//! `0..=N/2` are independent. R2C writes `output_re` and `output_im` of length
//! `N/2 + 1`. C2R consumes the same layout. This matches the FFTW R2C and
//! `realfft` conventions.
//!
//! # Allocation
//!
//! - **R2C** is in-place: the output buffers double as scratch for the inner
//!   half-length complex FFT, so the hot path performs zero allocations.
//! - **C2R** requires `N/2` reals of scratch per array (re + im). The caller
//!   provides reusable scratch buffers, so the hot path allocates nothing.
//!
//! # References
//!
//! Based on the approach described by Levente Kovács:
//! <https://kovleventer.com/blog/fft_real/>

use fearless_simd::{dispatch, f32x8, f64x4, Simd, SimdBase, SimdFloat};

use crate::algorithms::dit::{fft_32_dit_with_planner_and_opts, fft_64_dit_with_planner_and_opts};
use crate::options::Options;
use crate::planner::{Direction, PlannerR2c32, PlannerR2c64};

// ---------------------------------------------------------------------------
// SIMD helpers
// ---------------------------------------------------------------------------

// Reverse the lane order of an f64x4. Compiles to a single permute/shuffle on
// AVX2 / NEON / SSE4.2 once `#[inline(always)]` lets LLVM see the compile-time
// indices.
#[inline(always)]
fn rev_f64x4<S: Simd>(simd: S, v: f64x4<S>) -> f64x4<S> {
    let arr = simd.as_array_f64x4(v);
    let rev = [arr[3], arr[2], arr[1], arr[0]];
    f64x4::from_slice(simd, &rev)
}

#[inline(always)]
fn rev_f32x8<S: Simd>(simd: S, v: f32x8<S>) -> f32x8<S> {
    let arr = simd.as_array_f32x8(v);
    let rev = [
        arr[7], arr[6], arr[5], arr[4], arr[3], arr[2], arr[1], arr[0],
    ];
    f32x8::from_slice(simd, &rev)
}

// ---------------------------------------------------------------------------
// SIMD deinterleave: input[2k] -> output_re[k], input[2k+1] -> output_im[k]
// ---------------------------------------------------------------------------

#[inline(always)] // required by fearless_simd
fn simd_deinterleave_f64<S: Simd>(
    simd: S,
    input: &[f64],
    output_re: &mut [f64],
    output_im: &mut [f64],
) {
    const LANES: usize = 4;
    let half = output_re.len();
    debug_assert_eq!(input.len(), 2 * half);
    debug_assert_eq!(output_im.len(), half);

    let n_blocks = half / LANES;
    for blk in 0..n_blocks {
        let in_off = blk * (2 * LANES);
        let out_off = blk * LANES;
        let a = f64x4::from_slice(simd, &input[in_off..in_off + LANES]);
        let b = f64x4::from_slice(simd, &input[in_off + LANES..in_off + 2 * LANES]);
        a.unzip_low(b)
            .store_slice(&mut output_re[out_off..out_off + LANES]);
        a.unzip_high(b)
            .store_slice(&mut output_im[out_off..out_off + LANES]);
    }
    for k in (n_blocks * LANES)..half {
        output_re[k] = input[2 * k];
        output_im[k] = input[2 * k + 1];
    }
}

#[inline(always)] // required by fearless_simd
fn simd_deinterleave_f32<S: Simd>(
    simd: S,
    input: &[f32],
    output_re: &mut [f32],
    output_im: &mut [f32],
) {
    const LANES: usize = 8;
    let half = output_re.len();
    debug_assert_eq!(input.len(), 2 * half);
    debug_assert_eq!(output_im.len(), half);

    let n_blocks = half / LANES;
    for blk in 0..n_blocks {
        let in_off = blk * (2 * LANES);
        let out_off = blk * LANES;
        let a = f32x8::from_slice(simd, &input[in_off..in_off + LANES]);
        let b = f32x8::from_slice(simd, &input[in_off + LANES..in_off + 2 * LANES]);
        a.unzip_low(b)
            .store_slice(&mut output_re[out_off..out_off + LANES]);
        a.unzip_high(b)
            .store_slice(&mut output_im[out_off..out_off + LANES]);
    }
    for k in (n_blocks * LANES)..half {
        output_re[k] = input[2 * k];
        output_im[k] = input[2 * k + 1];
    }
}

// ---------------------------------------------------------------------------
// SIMD untangle: in-place R2C post-processing
// ---------------------------------------------------------------------------
//
// Per-bin math (planner's W^k already pre-multiplied by 0.5):
//   s_re = 0.5*(a + c),  s_im = 0.5*(b - d)
//   t_re = b + d,        t_im = c - a
//   wzr  = wkr_h*t_re - wki_h*t_im
//   wzi  = wkr_h*t_im + wki_h*t_re
//   X[k]      = (s_re + wzr,  s_im + wzi)
//   X[mirror] = (s_re - wzr, -s_im + wzi)
// where (a, b) = Z[k], (c, d) = Z[mirror], mirror = half - k.
//
// SIMD scheme: process LANES front k's at k_block. The corresponding mirror
// indices are descending from `half - k_block` down. Loading the contiguous
// memory window `[mirror_low, mirror_low + LANES)` (mirror_low = half - k_block
// - LANES + 1) gives a vector whose lane i corresponds to k_block + (LANES-1-i)
// - the reverse of the front lanes. We reverse once on load, do all math in
// the front-lane convention, then reverse-store the mirror writes.

macro_rules! impl_simd_untangle_inplace {
    ($name:ident, $T:ty, $V:ident, $rev:ident, $lanes:expr) => {
        #[inline(always)] // required by fearless_simd
        fn $name<S: Simd>(
            simd: S,
            output_re: &mut [$T],
            output_im: &mut [$T],
            w_re: &[$T],
            w_im: &[$T],
            half: usize,
        ) {
            let a0 = output_re[0];
            let b0 = output_im[0];
            output_re[0] = a0 + b0;
            output_im[0] = 0.0;
            output_re[half] = a0 - b0;
            output_im[half] = 0.0;

            let q = half / 2;
            const LANES: usize = $lanes;
            let half_v = $V::splat(simd, 0.5);

            let mut k = 1;
            // Process while a full LANES-block stays strictly below the self-pair at q.
            while k + LANES <= q {
                let mirror_low = half - k - (LANES - 1);

                let a = $V::from_slice(simd, &output_re[k..k + LANES]);
                let b = $V::from_slice(simd, &output_im[k..k + LANES]);
                let c_loaded = $V::from_slice(simd, &output_re[mirror_low..mirror_low + LANES]);
                let d_loaded = $V::from_slice(simd, &output_im[mirror_low..mirror_low + LANES]);
                let c = $rev(simd, c_loaded);
                let d = $rev(simd, d_loaded);

                let s_re = half_v * (a + c);
                let s_im = half_v * (b - d);
                let t_re = b + d;
                let t_im = c - a;

                let wkr_h = $V::from_slice(simd, &w_re[k..k + LANES]);
                let wki_h = $V::from_slice(simd, &w_im[k..k + LANES]);
                let wzr = wkr_h * t_re - wki_h * t_im;
                let wzi = wkr_h * t_im + wki_h * t_re;

                let out_re_k = s_re + wzr;
                let out_im_k = s_im + wzi;
                let out_re_m = s_re - wzr;
                let out_im_m = wzi - s_im;

                out_re_k.store_slice(&mut output_re[k..k + LANES]);
                out_im_k.store_slice(&mut output_im[k..k + LANES]);
                $rev(simd, out_re_m).store_slice(&mut output_re[mirror_low..mirror_low + LANES]);
                $rev(simd, out_im_m).store_slice(&mut output_im[mirror_low..mirror_low + LANES]);

                k += LANES;
            }

            // Scalar tail (k in [k, q)) — typically <LANES iterations.
            while k < q {
                let mirror = half - k;
                let a = output_re[k];
                let b = output_im[k];
                let c = output_re[mirror];
                let d = output_im[mirror];

                let s_re = 0.5 * (a + c);
                let s_im = 0.5 * (b - d);
                let t_re = b + d;
                let t_im = c - a;

                let wkr_h = w_re[k];
                let wki_h = w_im[k];
                let wzr = wkr_h * t_re - wki_h * t_im;
                let wzi = wkr_h * t_im + wki_h * t_re;

                output_re[k] = s_re + wzr;
                output_im[k] = s_im + wzi;
                output_re[mirror] = s_re - wzr;
                output_im[mirror] = wzi - s_im;
                k += 1;
            }

            // Self-pair at k = q (always exists since N >= 4 ⇒ q >= 1).
            let a = output_re[q];
            let b = output_im[q];
            output_re[q] = a + 2.0 * w_re[q] * b;
            output_im[q] = 2.0 * w_im[q] * b;
        }
    };
}

impl_simd_untangle_inplace!(simd_untangle_inplace_f64, f64, f64x4, rev_f64x4, 4);
impl_simd_untangle_inplace!(simd_untangle_inplace_f32, f32, f32x8, rev_f32x8, 8);

// ---------------------------------------------------------------------------
// SIMD c2r preprocess
// ---------------------------------------------------------------------------
//
// Per-bin math (planner's 0.5*W^k):
//   re_first = input_re[k],          im_first = input_im[k]
//   re_second = input_re[mirror],    im_second = -input_im[mirror]   (conjugate)
//   zx_re = 0.5*(re_first + re_second),  zx_im = 0.5*(im_first + im_second)
//   dr = re_first - re_second,           di = im_first - im_second
//   zy_re =  c_h*dr + s_h*di
//   zy_im =  c_h*di - s_h*dr
//   z_re[k] = zx_re - zy_im
//   z_im[k] = zx_im + zy_re
//
// SIMD scheme: process LANES front k's at k_block. Mirror values at descending
// indices; load contiguous mirror window then reverse. k=0 (mirror = half,
// which is the Nyquist slot) is handled scalar-first.

#[inline(always)] // required by fearless_simd
fn simd_c2r_preprocess_f64<S: Simd>(
    simd: S,
    input_re: &[f64],
    input_im: &[f64],
    w_re: &[f64],
    w_im: &[f64],
    z_re: &mut [f64],
    z_im: &mut [f64],
) {
    let half = z_re.len();
    debug_assert_eq!(z_im.len(), half);
    debug_assert_eq!(input_re.len(), half + 1);
    debug_assert_eq!(input_im.len(), half + 1);

    // k = 0 special case: mirror = half (Nyquist bin), handled scalar.
    {
        let re_first = input_re[0];
        let im_first = input_im[0];
        let re_second = input_re[half];
        let im_second = -input_im[half];
        let zx_re = 0.5 * (re_first + re_second);
        let zx_im = 0.5 * (im_first + im_second);
        let dr = re_first - re_second;
        let di = im_first - im_second;
        let c_h = w_re[0];
        let s_h = w_im[0];
        let zy_re = c_h * dr + s_h * di;
        let zy_im = c_h * di - s_h * dr;
        z_re[0] = zx_re - zy_im;
        z_im[0] = zx_im + zy_re;
    }

    const LANES: usize = 4;
    let half_v = f64x4::splat(simd, 0.5);

    let mut k = 1;
    while k + LANES <= half {
        let mirror_low = half - k - (LANES - 1);

        let re_f = f64x4::from_slice(simd, &input_re[k..k + LANES]);
        let im_f = f64x4::from_slice(simd, &input_im[k..k + LANES]);
        let re_s_loaded = f64x4::from_slice(simd, &input_re[mirror_low..mirror_low + LANES]);
        let im_s_loaded = f64x4::from_slice(simd, &input_im[mirror_low..mirror_low + LANES]);
        // Reverse to align with front-lane convention; im is also negated for conjugate.
        let re_s = rev_f64x4(simd, re_s_loaded);
        let im_s = -rev_f64x4(simd, im_s_loaded);

        let zx_re = half_v * (re_f + re_s);
        let zx_im = half_v * (im_f + im_s);
        let dr = re_f - re_s;
        let di = im_f - im_s;

        let c_h = f64x4::from_slice(simd, &w_re[k..k + LANES]);
        let s_h = f64x4::from_slice(simd, &w_im[k..k + LANES]);
        let zy_re = c_h * dr + s_h * di;
        let zy_im = c_h * di - s_h * dr;

        (zx_re - zy_im).store_slice(&mut z_re[k..k + LANES]);
        (zx_im + zy_re).store_slice(&mut z_im[k..k + LANES]);

        k += LANES;
    }

    while k < half {
        let mirror = half - k;
        let re_first = input_re[k];
        let im_first = input_im[k];
        let re_second = input_re[mirror];
        let im_second = -input_im[mirror];

        let zx_re = 0.5 * (re_first + re_second);
        let zx_im = 0.5 * (im_first + im_second);
        let dr = re_first - re_second;
        let di = im_first - im_second;

        let c_h = w_re[k];
        let s_h = w_im[k];
        let zy_re = c_h * dr + s_h * di;
        let zy_im = c_h * di - s_h * dr;

        z_re[k] = zx_re - zy_im;
        z_im[k] = zx_im + zy_re;
        k += 1;
    }
}

#[inline(always)] // required by fearless_simd
fn simd_c2r_preprocess_f32<S: Simd>(
    simd: S,
    input_re: &[f32],
    input_im: &[f32],
    w_re: &[f32],
    w_im: &[f32],
    z_re: &mut [f32],
    z_im: &mut [f32],
) {
    let half = z_re.len();
    debug_assert_eq!(z_im.len(), half);
    debug_assert_eq!(input_re.len(), half + 1);
    debug_assert_eq!(input_im.len(), half + 1);

    {
        let re_first = input_re[0];
        let im_first = input_im[0];
        let re_second = input_re[half];
        let im_second = -input_im[half];
        let zx_re = 0.5 * (re_first + re_second);
        let zx_im = 0.5 * (im_first + im_second);
        let dr = re_first - re_second;
        let di = im_first - im_second;
        let c_h = w_re[0];
        let s_h = w_im[0];
        let zy_re = c_h * dr + s_h * di;
        let zy_im = c_h * di - s_h * dr;
        z_re[0] = zx_re - zy_im;
        z_im[0] = zx_im + zy_re;
    }

    const LANES: usize = 8;
    let half_v = f32x8::splat(simd, 0.5);

    let mut k = 1;
    while k + LANES <= half {
        let mirror_low = half - k - (LANES - 1);

        let re_f = f32x8::from_slice(simd, &input_re[k..k + LANES]);
        let im_f = f32x8::from_slice(simd, &input_im[k..k + LANES]);
        let re_s_loaded = f32x8::from_slice(simd, &input_re[mirror_low..mirror_low + LANES]);
        let im_s_loaded = f32x8::from_slice(simd, &input_im[mirror_low..mirror_low + LANES]);
        let re_s = rev_f32x8(simd, re_s_loaded);
        let im_s = -rev_f32x8(simd, im_s_loaded);

        let zx_re = half_v * (re_f + re_s);
        let zx_im = half_v * (im_f + im_s);
        let dr = re_f - re_s;
        let di = im_f - im_s;

        let c_h = f32x8::from_slice(simd, &w_re[k..k + LANES]);
        let s_h = f32x8::from_slice(simd, &w_im[k..k + LANES]);
        let zy_re = c_h * dr + s_h * di;
        let zy_im = c_h * di - s_h * dr;

        (zx_re - zy_im).store_slice(&mut z_re[k..k + LANES]);
        (zx_im + zy_re).store_slice(&mut z_im[k..k + LANES]);

        k += LANES;
    }

    while k < half {
        let mirror = half - k;
        let re_first = input_re[k];
        let im_first = input_im[k];
        let re_second = input_re[mirror];
        let im_second = -input_im[mirror];

        let zx_re = 0.5 * (re_first + re_second);
        let zx_im = 0.5 * (im_first + im_second);
        let dr = re_first - re_second;
        let di = im_first - im_second;

        let c_h = w_re[k];
        let s_h = w_im[k];
        let zy_re = c_h * dr + s_h * di;
        let zy_im = c_h * di - s_h * dr;

        z_re[k] = zx_re - zy_im;
        z_im[k] = zx_im + zy_re;
        k += 1;
    }
}

// ---------------------------------------------------------------------------
// SIMD interleave: z_re[k] -> output[2k], z_im[k] -> output[2k+1]
// ---------------------------------------------------------------------------
//
// Inverse of `simd_deinterleave_*`. Reads LANES contiguous reals from each of
// z_re / z_im and stores 2*LANES interleaved reals to output, using
// zip_low/zip_high (the inverse of unzip_low/unzip_high). On NEON the pair
// lowers to two register-level interleave ops; on AVX2 it's two `vunpck*`s.

#[inline(always)] // required by fearless_simd
fn simd_interleave_f64<S: Simd>(simd: S, z_re: &[f64], z_im: &[f64], output: &mut [f64]) {
    const LANES: usize = 4;
    let half = z_re.len();
    debug_assert_eq!(z_im.len(), half);
    debug_assert_eq!(output.len(), 2 * half);

    let n_blocks = half / LANES;
    for blk in 0..n_blocks {
        let in_off = blk * LANES;
        let out_off = blk * (2 * LANES);
        let re = f64x4::from_slice(simd, &z_re[in_off..in_off + LANES]);
        let im = f64x4::from_slice(simd, &z_im[in_off..in_off + LANES]);
        re.zip_low(im)
            .store_slice(&mut output[out_off..out_off + LANES]);
        re.zip_high(im)
            .store_slice(&mut output[out_off + LANES..out_off + 2 * LANES]);
    }
    for k in (n_blocks * LANES)..half {
        output[2 * k] = z_re[k];
        output[2 * k + 1] = z_im[k];
    }
}

#[inline(always)] // required by fearless_simd
fn simd_interleave_f32<S: Simd>(simd: S, z_re: &[f32], z_im: &[f32], output: &mut [f32]) {
    const LANES: usize = 8;
    let half = z_re.len();
    debug_assert_eq!(z_im.len(), half);
    debug_assert_eq!(output.len(), 2 * half);

    let n_blocks = half / LANES;
    for blk in 0..n_blocks {
        let in_off = blk * LANES;
        let out_off = blk * (2 * LANES);
        let re = f32x8::from_slice(simd, &z_re[in_off..in_off + LANES]);
        let im = f32x8::from_slice(simd, &z_im[in_off..in_off + LANES]);
        re.zip_low(im)
            .store_slice(&mut output[out_off..out_off + LANES]);
        re.zip_high(im)
            .store_slice(&mut output[out_off + LANES..out_off + 2 * LANES]);
    }
    for k in (n_blocks * LANES)..half {
        output[2 * k] = z_re[k];
        output[2 * k + 1] = z_im[k];
    }
}

// ===========================================================================
// R2C: real (length N) → complex (length N/2 + 1)
// ===========================================================================

/// Performs a real-valued FFT on `f64` input data.
///
/// Computes the forward FFT of `input_re` (length `N`, real) and writes the
/// `N/2 + 1` independent complex bins into `output_re` / `output_im`. The
/// remaining `N/2 - 1` bins are determined by conjugate symmetry:
/// `X[N - k] = conj(X[k])`.
///
/// In-place: the output buffers double as scratch for the inner half-length
/// complex FFT, so this function performs zero allocations.
///
/// # Panics
///
/// Panics if `input_re.len()` does not match the planner size, or if
/// `output_re` / `output_im` are not length `N / 2 + 1`.
///
/// # Example
///
/// ```
/// use phastft::{options::Options, planner::PlannerR2c64, r2c_fft_f64};
///
/// let n = 16;
/// let input: Vec<f64> = (1..=n).map(|x| x as f64).collect();
/// let mut out_re = vec![0.0; n / 2 + 1];
/// let mut out_im = vec![0.0; n / 2 + 1];
///
/// let planner = PlannerR2c64::new(n);
/// let opts = Options::guess_options(n / 2);
/// r2c_fft_f64(&input, &mut out_re, &mut out_im, &planner, &opts);
/// ```
pub fn r2c_fft_f64(
    input_re: &[f64],
    output_re: &mut [f64],
    output_im: &mut [f64],
    planner: &PlannerR2c64,
    opts: &Options,
) {
    let n = planner.n;
    let half = n / 2;
    assert_eq!(input_re.len(), n, "input length must match planner size");
    assert_eq!(
        output_re.len(),
        half + 1,
        "output_re must have length N/2 + 1"
    );
    assert_eq!(
        output_im.len(),
        half + 1,
        "output_im must have length N/2 + 1"
    );

    // Deinterleave input into the first `half` slots of output_re/output_im.
    // The Nyquist slot at index `half` stays untouched until the untangle.
    {
        let (z_re, _) = output_re.split_at_mut(half);
        let (z_im, _) = output_im.split_at_mut(half);
        dispatch!(
            planner.dit_planner.simd_level,
            simd => {
                simd.vectorize(
                    #[inline(always)]
                    || simd_deinterleave_f64(simd, input_re, z_re, z_im),
                );
            }
        );
    }

    // Inner half-length complex FFT in place on the deinterleaved data.
    {
        let z_re = &mut output_re[..half];
        let z_im = &mut output_im[..half];
        fft_64_dit_with_planner_and_opts(
            z_re,
            z_im,
            Direction::Forward,
            &planner.dit_planner,
            opts,
        );
    }

    dispatch!(
        planner.dit_planner.simd_level,
        simd => {
            simd.vectorize(
                #[inline(always)]
                || simd_untangle_inplace_f64(simd, output_re, output_im, &planner.w_re, &planner.w_im, half),
            );
        }
    );
}

/// Performs a real-valued FFT on `f32` input data.
///
/// Single-precision variant of [`r2c_fft_f64`]; see that function for the
/// layout contract and example.
pub fn r2c_fft_f32(
    input_re: &[f32],
    output_re: &mut [f32],
    output_im: &mut [f32],
    planner: &PlannerR2c32,
    opts: &Options,
) {
    let n = planner.n;
    let half = n / 2;
    assert_eq!(input_re.len(), n, "input length must match planner size");
    assert_eq!(
        output_re.len(),
        half + 1,
        "output_re must have length N/2 + 1"
    );
    assert_eq!(
        output_im.len(),
        half + 1,
        "output_im must have length N/2 + 1"
    );

    {
        let (z_re, _) = output_re.split_at_mut(half);
        let (z_im, _) = output_im.split_at_mut(half);
        dispatch!(
            planner.dit_planner.simd_level,
            simd => {
                simd.vectorize(
                    #[inline(always)]
                    || simd_deinterleave_f32(simd, input_re, z_re, z_im),
                );
            }
        );
    }

    {
        let z_re = &mut output_re[..half];
        let z_im = &mut output_im[..half];
        fft_32_dit_with_planner_and_opts(
            z_re,
            z_im,
            Direction::Forward,
            &planner.dit_planner,
            opts,
        );
    }

    dispatch!(
        planner.dit_planner.simd_level,
        simd => {
            simd.vectorize(
                #[inline(always)]
                || simd_untangle_inplace_f32(simd, output_re, output_im, &planner.w_re, &planner.w_im, half),
            );
        }
    );
}

// ===========================================================================
// C2R: complex (length N/2 + 1) → real (length N)
// ===========================================================================

/// Performs the inverse real-valued FFT on `f64` data.
///
/// Given the `N/2 + 1` independent complex bins produced by [`r2c_fft_f64`]
/// (conjugate-symmetric redundancy stripped), recovers the original `N` real
/// samples. Performs zero allocations: `scratch_re` and `scratch_im` must
/// each be length `N / 2`; their contents on entry are ignored and on exit
/// are unspecified (callers may reuse the buffers across calls).
///
/// # Panics
///
/// Panics if `output.len()` does not match the planner size, if `input_re` /
/// `input_im` are not length `N / 2 + 1`, or if either scratch slice is not
/// length `N / 2`.
///
/// # Example
///
/// ```
/// use phastft::{c2r_fft_f64, options::Options, planner::PlannerR2c64, r2c_fft_f64};
///
/// let n = 16;
/// let signal: Vec<f64> = (1..=n).map(|x| x as f64).collect();
///
/// let planner = PlannerR2c64::new(n);
/// let opts = Options::guess_options(n / 2);
///
/// let mut spec_re = vec![0.0; n / 2 + 1];
/// let mut spec_im = vec![0.0; n / 2 + 1];
/// r2c_fft_f64(&signal, &mut spec_re, &mut spec_im, &planner, &opts);
///
/// let mut scratch_re = vec![0.0; n / 2];
/// let mut scratch_im = vec![0.0; n / 2];
/// let mut recovered = vec![0.0; n];
/// c2r_fft_f64(
///     &spec_re,
///     &spec_im,
///     &mut recovered,
///     &planner,
///     &opts,
///     &mut scratch_re,
///     &mut scratch_im,
/// );
/// ```
pub fn c2r_fft_f64(
    input_re: &[f64],
    input_im: &[f64],
    output: &mut [f64],
    planner: &PlannerR2c64,
    opts: &Options,
    scratch_re: &mut [f64],
    scratch_im: &mut [f64],
) {
    let n = planner.n;
    let half = n / 2;
    assert_eq!(output.len(), n, "output length must match planner size");
    assert_eq!(
        input_re.len(),
        half + 1,
        "input_re must have length N/2 + 1"
    );
    assert_eq!(
        input_im.len(),
        half + 1,
        "input_im must have length N/2 + 1"
    );
    assert_eq!(scratch_re.len(), half, "scratch_re must have length N/2");
    assert_eq!(scratch_im.len(), half, "scratch_im must have length N/2");

    dispatch!(
        planner.dit_planner.simd_level,
        simd => {
            simd.vectorize(
                #[inline(always)]
                || simd_c2r_preprocess_f64(
                    simd,
                    input_re,
                    input_im,
                    &planner.w_re,
                    &planner.w_im,
                    scratch_re,
                    scratch_im,
                ),
            );
        }
    );

    fft_64_dit_with_planner_and_opts(
        scratch_re,
        scratch_im,
        Direction::Reverse,
        &planner.dit_planner,
        opts,
    );

    dispatch!(
        planner.dit_planner.simd_level,
        simd => {
            simd.vectorize(
                #[inline(always)]
                || simd_interleave_f64(simd, scratch_re, scratch_im, output),
            );
        }
    );
}

/// Performs the inverse real-valued FFT on `f32` data.
///
/// Single-precision variant of [`c2r_fft_f64`]; see that function for details.
pub fn c2r_fft_f32(
    input_re: &[f32],
    input_im: &[f32],
    output: &mut [f32],
    planner: &PlannerR2c32,
    opts: &Options,
    scratch_re: &mut [f32],
    scratch_im: &mut [f32],
) {
    let n = planner.n;
    let half = n / 2;
    assert_eq!(output.len(), n, "output length must match planner size");
    assert_eq!(
        input_re.len(),
        half + 1,
        "input_re must have length N/2 + 1"
    );
    assert_eq!(
        input_im.len(),
        half + 1,
        "input_im must have length N/2 + 1"
    );
    assert_eq!(scratch_re.len(), half, "scratch_re must have length N/2");
    assert_eq!(scratch_im.len(), half, "scratch_im must have length N/2");

    dispatch!(
        planner.dit_planner.simd_level,
        simd => {
            simd.vectorize(
                #[inline(always)]
                || simd_c2r_preprocess_f32(
                    simd,
                    input_re,
                    input_im,
                    &planner.w_re,
                    &planner.w_im,
                    scratch_re,
                    scratch_im,
                ),
            );
        }
    );

    fft_32_dit_with_planner_and_opts(
        scratch_re,
        scratch_im,
        Direction::Reverse,
        &planner.dit_planner,
        opts,
    );

    dispatch!(
        planner.dit_planner.simd_level,
        simd => {
            simd.vectorize(
                #[inline(always)]
                || simd_interleave_f32(simd, scratch_re, scratch_im, output),
            );
        }
    );
}

#[cfg(test)]
mod tests {
    use utilities::{assert_float_closeness, gen_random_signal_f32, gen_random_signal_f64};

    use super::*;
    use crate::planner::Direction;
    use crate::{fft_32_dit, fft_64_dit};

    fn assert_f32_relative_closeness(actual: f32, expected: f32, rel_eps: f32) {
        let denom = expected.abs().max(f32::EPSILON);
        let rel_err = (actual - expected).abs() / denom;
        assert!(
            rel_err < rel_eps,
            "relative error {rel_err} >= {rel_eps} (actual={actual}, expected={expected})"
        );
    }

    // Drive the public R2C/C2R API end-to-end (planner + opts + scratch) so
    // each test stays focused on its assertion rather than plumbing.
    fn run_r2c_f64(input: &[f64], out_re: &mut [f64], out_im: &mut [f64]) {
        let planner = PlannerR2c64::new(input.len());
        let opts = Options::guess_options(input.len() / 2);
        r2c_fft_f64(input, out_re, out_im, &planner, &opts);
    }

    fn run_r2c_f32(input: &[f32], out_re: &mut [f32], out_im: &mut [f32]) {
        let planner = PlannerR2c32::new(input.len());
        let opts = Options::guess_options(input.len() / 2);
        r2c_fft_f32(input, out_re, out_im, &planner, &opts);
    }

    fn run_c2r_f64(input_re: &[f64], input_im: &[f64], output: &mut [f64]) {
        let n = output.len();
        let planner = PlannerR2c64::new(n);
        let opts = Options::guess_options(n / 2);
        let mut scratch_re = vec![0.0; n / 2];
        let mut scratch_im = vec![0.0; n / 2];
        c2r_fft_f64(
            input_re,
            input_im,
            output,
            &planner,
            &opts,
            &mut scratch_re,
            &mut scratch_im,
        );
    }

    fn run_c2r_f32(input_re: &[f32], input_im: &[f32], output: &mut [f32]) {
        let n = output.len();
        let planner = PlannerR2c32::new(n);
        let opts = Options::guess_options(n / 2);
        let mut scratch_re = vec![0.0f32; n / 2];
        let mut scratch_im = vec![0.0f32; n / 2];
        c2r_fft_f32(
            input_re,
            input_im,
            output,
            &planner,
            &opts,
            &mut scratch_re,
            &mut scratch_im,
        );
    }

    #[test]
    fn r2c_vs_c2c_f64() {
        for n_log in 2..=14 {
            let n = 1 << n_log;
            let half = n / 2;
            let input: Vec<f64> = (1..=n).map(|i| i as f64).collect();

            let mut r2c_re = vec![0.0; half + 1];
            let mut r2c_im = vec![0.0; half + 1];
            run_r2c_f64(&input, &mut r2c_re, &mut r2c_im);

            let mut ref_re = input.clone();
            let mut ref_im = vec![0.0; n];
            fft_64_dit(&mut ref_re, &mut ref_im, Direction::Forward);

            for k in 0..=half {
                assert_float_closeness(r2c_re[k], ref_re[k], 1e-4);
                assert_float_closeness(r2c_im[k], ref_im[k], 1e-4);
            }
        }
    }

    #[test]
    fn r2c_vs_c2c_f32() {
        for n_log in 2..=10 {
            let n = 1 << n_log;
            let half = n / 2;
            let input: Vec<f32> = (1..=n).map(|i| i as f32).collect();

            let mut r2c_re = vec![0.0f32; half + 1];
            let mut r2c_im = vec![0.0f32; half + 1];
            run_r2c_f32(&input, &mut r2c_re, &mut r2c_im);

            let mut ref_re: Vec<f32> = input.clone();
            let mut ref_im = vec![0.0f32; n];
            fft_32_dit(&mut ref_re, &mut ref_im, Direction::Forward);

            for k in 0..=half {
                assert_f32_relative_closeness(r2c_re[k], ref_re[k], 1e-2);
                assert_f32_relative_closeness(r2c_im[k], ref_im[k], 1e-2);
            }
        }
    }

    #[test]
    fn roundtrip_f64() {
        for n_log in 2..=14 {
            let n = 1 << n_log;
            let half = n / 2;
            let original: Vec<f64> = (1..=n).map(|i| i as f64).collect();

            let mut spec_re = vec![0.0; half + 1];
            let mut spec_im = vec![0.0; half + 1];
            run_r2c_f64(&original, &mut spec_re, &mut spec_im);

            let mut recovered = vec![0.0; n];
            run_c2r_f64(&spec_re, &spec_im, &mut recovered);

            for k in 0..n {
                assert_float_closeness(recovered[k], original[k], 1e-6);
            }
        }
    }

    #[test]
    fn c2r_scratch_reuse_across_calls_f64() {
        // Same scratch buffer drives several c2r calls; each result must
        // match an independently-computed reference.
        let n = 256;
        let half = n / 2;
        let planner = PlannerR2c64::new(n);
        let opts = Options::guess_options(half);

        let mut scratch_re = vec![0.0; half];
        let mut scratch_im = vec![0.0; half];

        for seed in 0..4 {
            let input: Vec<f64> = (0..n).map(|i| ((i + seed) as f64).sin()).collect();

            let mut spec_re = vec![0.0; half + 1];
            let mut spec_im = vec![0.0; half + 1];
            r2c_fft_f64(&input, &mut spec_re, &mut spec_im, &planner, &opts);

            let mut reused = vec![0.0; n];
            c2r_fft_f64(
                &spec_re,
                &spec_im,
                &mut reused,
                &planner,
                &opts,
                &mut scratch_re,
                &mut scratch_im,
            );

            for k in 0..n {
                assert_float_closeness(reused[k], input[k], 1e-6);
            }
        }
    }

    #[test]
    fn roundtrip_random_f64() {
        for n_log in 4..=14 {
            let n = 1 << n_log;
            let half = n / 2;
            let mut original_re = vec![0.0f64; n];
            let mut dummy_im = vec![0.0f64; n];
            gen_random_signal_f64(&mut original_re, &mut dummy_im);

            let mut spec_re = vec![0.0; half + 1];
            let mut spec_im = vec![0.0; half + 1];
            run_r2c_f64(&original_re, &mut spec_re, &mut spec_im);

            let mut recovered = vec![0.0; n];
            run_c2r_f64(&spec_re, &spec_im, &mut recovered);

            for k in 0..n {
                assert_float_closeness(recovered[k], original_re[k], 1e-6);
            }
        }
    }

    #[test]
    fn roundtrip_f32() {
        for n_log in 2..=10 {
            let n = 1 << n_log;
            let half = n / 2;
            let original: Vec<f32> = (1..=n).map(|i| i as f32).collect();

            let mut spec_re = vec![0.0f32; half + 1];
            let mut spec_im = vec![0.0f32; half + 1];
            run_r2c_f32(&original, &mut spec_re, &mut spec_im);

            let mut recovered = vec![0.0f32; n];
            run_c2r_f32(&spec_re, &spec_im, &mut recovered);

            for k in 0..n {
                assert_f32_relative_closeness(recovered[k], original[k], 1e-2);
            }
        }
    }

    #[test]
    fn roundtrip_random_f32() {
        for n_log in 4..=12 {
            let n = 1 << n_log;
            let half = n / 2;
            let mut original_re = vec![0.0f32; n];
            let mut dummy_im = vec![0.0f32; n];
            gen_random_signal_f32(&mut original_re, &mut dummy_im);

            let mut spec_re = vec![0.0f32; half + 1];
            let mut spec_im = vec![0.0f32; half + 1];
            run_r2c_f32(&original_re, &mut spec_re, &mut spec_im);

            let mut recovered = vec![0.0f32; n];
            run_c2r_f32(&spec_re, &spec_im, &mut recovered);

            for k in 0..n {
                assert_float_closeness(recovered[k], original_re[k], 1e-5);
            }
        }
    }

    // -----------------------------------------------------------------------
    // Edge cases
    // -----------------------------------------------------------------------

    #[test]
    fn dc_only_f64() {
        // DFT of a constant 1: X[0] = N, all other bins zero.
        let n = 16;
        let half = n / 2;
        let input = vec![1.0f64; n];
        let mut out_re = vec![0.0; half + 1];
        let mut out_im = vec![0.0; half + 1];
        run_r2c_f64(&input, &mut out_re, &mut out_im);

        assert_float_closeness(out_re[0], n as f64, 1e-10);
        assert_float_closeness(out_im[0], 0.0, 1e-10);
        for k in 1..=half {
            assert_float_closeness(out_re[k], 0.0, 1e-10);
            assert_float_closeness(out_im[k], 0.0, 1e-10);
        }
    }

    #[test]
    fn nyquist_only_f64() {
        // Alternating ±1 -> all energy at bin N/2 (Nyquist).
        let n = 16;
        let half = n / 2;
        let input: Vec<f64> = (0..n)
            .map(|i| if i % 2 == 0 { 1.0 } else { -1.0 })
            .collect();
        let mut out_re = vec![0.0; half + 1];
        let mut out_im = vec![0.0; half + 1];
        run_r2c_f64(&input, &mut out_re, &mut out_im);

        for k in 0..=half {
            let expected_re = if k == half { n as f64 } else { 0.0 };
            assert_float_closeness(out_re[k], expected_re, 1e-10);
            assert_float_closeness(out_im[k], 0.0, 1e-10);
        }
    }

    #[test]
    fn single_tone_f64() {
        // cos(2π·j/N) -> X[1] = X[N-1] = N/2; in N/2+1 layout only X[1] appears.
        let n = 32;
        let half = n / 2;
        let input: Vec<f64> = (0..n)
            .map(|j| (2.0 * std::f64::consts::PI * j as f64 / n as f64).cos())
            .collect();
        let mut out_re = vec![0.0; half + 1];
        let mut out_im = vec![0.0; half + 1];
        run_r2c_f64(&input, &mut out_re, &mut out_im);

        for k in 0..=half {
            let expected_re = if k == 1 { n as f64 / 2.0 } else { 0.0 };
            assert_float_closeness(out_re[k], expected_re, 1e-9);
            assert_float_closeness(out_im[k], 0.0, 1e-9);
        }
    }

    #[test]
    fn all_zeros_f64() {
        // Output buffers are pre-filled to verify they get overwritten.
        let n = 16;
        let half = n / 2;
        let input = vec![0.0f64; n];
        let mut out_re = vec![1.0; half + 1];
        let mut out_im = vec![1.0; half + 1];
        run_r2c_f64(&input, &mut out_re, &mut out_im);

        for k in 0..=half {
            assert_float_closeness(out_re[k], 0.0, 1e-12);
            assert_float_closeness(out_im[k], 0.0, 1e-12);
        }
    }

    #[test]
    fn dc_and_nyquist_real_f64() {
        // For real input, bins 0 and N/2 of the spectrum are purely real.
        let n = 64;
        let half = n / 2;
        let input: Vec<f64> = (1..=n).map(|i| i as f64).collect();
        let mut out_re = vec![0.0; half + 1];
        let mut out_im = vec![0.0; half + 1];
        run_r2c_f64(&input, &mut out_re, &mut out_im);

        assert_float_closeness(out_im[0], 0.0, 1e-10);
        assert_float_closeness(out_im[half], 0.0, 1e-10);
    }

    // -----------------------------------------------------------------------
    // f32 mirrors of the edge-case suite
    // -----------------------------------------------------------------------

    #[test]
    fn dc_only_f32() {
        let n = 16;
        let half = n / 2;
        let input = vec![1.0f32; n];
        let mut out_re = vec![0.0f32; half + 1];
        let mut out_im = vec![0.0f32; half + 1];
        run_r2c_f32(&input, &mut out_re, &mut out_im);

        assert_float_closeness(out_re[0], n as f32, 1e-4);
        assert_float_closeness(out_im[0], 0.0, 1e-4);
        for k in 1..=half {
            assert_float_closeness(out_re[k], 0.0, 1e-4);
            assert_float_closeness(out_im[k], 0.0, 1e-4);
        }
    }

    #[test]
    fn nyquist_only_f32() {
        let n = 16;
        let half = n / 2;
        let input: Vec<f32> = (0..n)
            .map(|i| if i % 2 == 0 { 1.0 } else { -1.0 })
            .collect();
        let mut out_re = vec![0.0f32; half + 1];
        let mut out_im = vec![0.0f32; half + 1];
        run_r2c_f32(&input, &mut out_re, &mut out_im);

        for k in 0..=half {
            let expected_re = if k == half { n as f32 } else { 0.0 };
            assert_float_closeness(out_re[k], expected_re, 1e-4);
            assert_float_closeness(out_im[k], 0.0, 1e-4);
        }
    }

    #[test]
    fn all_zeros_f32() {
        let n = 16;
        let half = n / 2;
        let input = vec![0.0f32; n];
        let mut out_re = vec![1.0f32; half + 1];
        let mut out_im = vec![1.0f32; half + 1];
        run_r2c_f32(&input, &mut out_re, &mut out_im);

        for k in 0..=half {
            assert_float_closeness(out_re[k], 0.0, 1e-6);
            assert_float_closeness(out_im[k], 0.0, 1e-6);
        }
    }

    #[test]
    fn dc_and_nyquist_real_f32() {
        let n = 64;
        let half = n / 2;
        let input: Vec<f32> = (1..=n).map(|i| i as f32).collect();
        let mut out_re = vec![0.0f32; half + 1];
        let mut out_im = vec![0.0f32; half + 1];
        run_r2c_f32(&input, &mut out_re, &mut out_im);

        assert_float_closeness(out_im[0], 0.0, 1e-3);
        assert_float_closeness(out_im[half], 0.0, 1e-3);
    }

    // -----------------------------------------------------------------------
    // Panic tests — invariant enforcement at PlannerR2c::new and per-call
    // length asserts.
    // -----------------------------------------------------------------------

    macro_rules! planner_panics_on_invalid_n {
        ($test_name:ident, $planner:ty, $n:expr) => {
            #[test]
            #[should_panic(expected = "n must be a power of 2 >= 4")]
            fn $test_name() {
                let _ = <$planner>::new($n);
            }
        };
    }

    planner_panics_on_invalid_n!(planner_r2c_64_panics_on_n_less_than_4, PlannerR2c64, 2);
    planner_panics_on_invalid_n!(planner_r2c_64_panics_on_non_power_of_two, PlannerR2c64, 5);
    planner_panics_on_invalid_n!(planner_r2c_32_panics_on_n_less_than_4, PlannerR2c32, 2);
    planner_panics_on_invalid_n!(planner_r2c_32_panics_on_non_power_of_two, PlannerR2c32, 5);

    #[test]
    #[should_panic(expected = "input length must match planner size")]
    fn r2c_fft_f64_panics_on_input_length_mismatch() {
        let planner = PlannerR2c64::new(16);
        let opts = Options::guess_options(8);
        let input = vec![0.0f64; 32];
        let mut out_re = vec![0.0f64; 17];
        let mut out_im = vec![0.0f64; 17];
        r2c_fft_f64(&input, &mut out_re, &mut out_im, &planner, &opts);
    }

    #[test]
    #[should_panic(expected = "output_re must have length N/2 + 1")]
    fn r2c_fft_f64_panics_on_output_re_length_mismatch() {
        let planner = PlannerR2c64::new(16);
        let opts = Options::guess_options(8);
        let input = vec![0.0f64; 16];
        let mut out_re = vec![0.0f64; 16];
        let mut out_im = vec![0.0f64; 9];
        r2c_fft_f64(&input, &mut out_re, &mut out_im, &planner, &opts);
    }

    #[test]
    #[should_panic(expected = "output_im must have length N/2 + 1")]
    fn r2c_fft_f64_panics_on_output_im_length_mismatch() {
        let planner = PlannerR2c64::new(16);
        let opts = Options::guess_options(8);
        let input = vec![0.0f64; 16];
        let mut out_re = vec![0.0f64; 9];
        let mut out_im = vec![0.0f64; 8];
        r2c_fft_f64(&input, &mut out_re, &mut out_im, &planner, &opts);
    }

    #[test]
    #[should_panic(expected = "output_re must have length N/2 + 1")]
    fn r2c_fft_f32_panics_on_output_re_length_mismatch() {
        let planner = PlannerR2c32::new(16);
        let opts = Options::guess_options(8);
        let input = vec![0.0f32; 16];
        let mut out_re = vec![0.0f32; 16];
        let mut out_im = vec![0.0f32; 9];
        r2c_fft_f32(&input, &mut out_re, &mut out_im, &planner, &opts);
    }

    #[test]
    #[should_panic(expected = "output length must match planner size")]
    fn c2r_fft_f64_panics_on_output_length_mismatch() {
        let planner = PlannerR2c64::new(16);
        let opts = Options::guess_options(8);
        let in_re = vec![0.0f64; 17];
        let in_im = vec![0.0f64; 17];
        let mut out = vec![0.0f64; 32];
        let mut scratch_re = vec![0.0f64; 8];
        let mut scratch_im = vec![0.0f64; 8];
        c2r_fft_f64(
            &in_re,
            &in_im,
            &mut out,
            &planner,
            &opts,
            &mut scratch_re,
            &mut scratch_im,
        );
    }

    #[test]
    #[should_panic(expected = "input_re must have length N/2 + 1")]
    fn c2r_fft_f64_panics_on_input_re_length_mismatch() {
        let planner = PlannerR2c64::new(16);
        let opts = Options::guess_options(8);
        let in_re = vec![0.0f64; 16];
        let in_im = vec![0.0f64; 9];
        let mut out = vec![0.0f64; 16];
        let mut scratch_re = vec![0.0f64; 8];
        let mut scratch_im = vec![0.0f64; 8];
        c2r_fft_f64(
            &in_re,
            &in_im,
            &mut out,
            &planner,
            &opts,
            &mut scratch_re,
            &mut scratch_im,
        );
    }

    #[test]
    #[should_panic(expected = "input_im must have length N/2 + 1")]
    fn c2r_fft_f64_panics_on_input_im_length_mismatch() {
        let planner = PlannerR2c64::new(16);
        let opts = Options::guess_options(8);
        let in_re = vec![0.0f64; 9];
        let in_im = vec![0.0f64; 16];
        let mut out = vec![0.0f64; 16];
        let mut scratch_re = vec![0.0f64; 8];
        let mut scratch_im = vec![0.0f64; 8];
        c2r_fft_f64(
            &in_re,
            &in_im,
            &mut out,
            &planner,
            &opts,
            &mut scratch_re,
            &mut scratch_im,
        );
    }

    #[test]
    #[should_panic(expected = "input_im must have length N/2 + 1")]
    fn c2r_fft_f32_panics_on_input_im_length_mismatch() {
        let planner = PlannerR2c32::new(16);
        let opts = Options::guess_options(8);
        let in_re = vec![0.0f32; 9];
        let in_im = vec![0.0f32; 16];
        let mut out = vec![0.0f32; 16];
        let mut scratch_re = vec![0.0f32; 8];
        let mut scratch_im = vec![0.0f32; 8];
        c2r_fft_f32(
            &in_re,
            &in_im,
            &mut out,
            &planner,
            &opts,
            &mut scratch_re,
            &mut scratch_im,
        );
    }

    #[test]
    #[should_panic(expected = "scratch_re must have length N/2")]
    fn c2r_fft_f64_panics_on_scratch_re_size_mismatch() {
        let planner = PlannerR2c64::new(16);
        let opts = Options::guess_options(8);
        let in_re = vec![0.0f64; 9];
        let in_im = vec![0.0f64; 9];
        let mut out = vec![0.0f64; 16];
        let mut scratch_re = vec![0.0f64; 4];
        let mut scratch_im = vec![0.0f64; 8];
        c2r_fft_f64(
            &in_re,
            &in_im,
            &mut out,
            &planner,
            &opts,
            &mut scratch_re,
            &mut scratch_im,
        );
    }

    #[test]
    #[should_panic(expected = "scratch_im must have length N/2")]
    fn c2r_fft_f32_panics_on_scratch_im_size_mismatch() {
        let planner = PlannerR2c32::new(16);
        let opts = Options::guess_options(8);
        let in_re = vec![0.0f32; 9];
        let in_im = vec![0.0f32; 9];
        let mut out = vec![0.0f32; 16];
        let mut scratch_re = vec![0.0f32; 8];
        let mut scratch_im = vec![0.0f32; 4];
        c2r_fft_f32(
            &in_re,
            &in_im,
            &mut out,
            &planner,
            &opts,
            &mut scratch_re,
            &mut scratch_im,
        );
    }
}