scirs2-core 0.5.0

Core utilities and common functionality for SciRS2 (scirs2-core)
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
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
//! Activation function SIMD tests Part 1: sigmoid, gelu, swish, softplus, mish

use scirs2_core::ndarray::{array, Array1};
use scirs2_core::ndarray_ext::elementwise::{
    gelu_simd, mish_simd, sigmoid_simd, softplus_simd, swish_simd,
};
#[cfg(feature = "random")]
use scirs2_core::random::{thread_rng, Distribution, Uniform};

// Sigmoid (Logistic) Function Tests
// =============================================================================

/// Test sigmoid(0) = 0.5
#[test]
fn test_sigmoid_simd_f64_at_zero() {
    let x = array![0.0_f64];
    let result = sigmoid_simd(&x.view());
    assert!(
        (result[0] - 0.5).abs() < 1e-15,
        "sigmoid(0) should be 0.5, got {}",
        result[0]
    );
}

/// Test sigmoid basic values
#[test]
fn test_sigmoid_simd_f64_basic() {
    let x = array![0.0_f64, 1.0, -1.0, 2.0, -2.0];
    let result = sigmoid_simd(&x.view());

    // sigmoid(0) = 0.5
    assert!(
        (result[0] - 0.5).abs() < 1e-15,
        "sigmoid(0) should be 0.5, got {}",
        result[0]
    );

    // sigmoid(1) ≈ 0.7310585786
    let expected_1 = 1.0 / (1.0 + (-1.0_f64).exp());
    assert!(
        (result[1] - expected_1).abs() < 1e-10,
        "sigmoid(1) should be {}, got {}",
        expected_1,
        result[1]
    );

    // sigmoid(-1) = 1 - sigmoid(1)
    assert!(
        (result[2] - (1.0 - expected_1)).abs() < 1e-10,
        "sigmoid(-1) should be {}, got {}",
        1.0 - expected_1,
        result[2]
    );

    // Verify σ(-x) = 1 - σ(x) property
    assert!(
        (result[1] + result[2] - 1.0).abs() < 1e-10,
        "sigmoid(1) + sigmoid(-1) should be 1, got {}",
        result[1] + result[2]
    );
    assert!(
        (result[3] + result[4] - 1.0).abs() < 1e-10,
        "sigmoid(2) + sigmoid(-2) should be 1, got {}",
        result[3] + result[4]
    );
}

/// Test sigmoid range is (0, 1) for moderate values
#[test]
fn test_sigmoid_simd_f64_range() {
    // For moderate values, sigmoid is strictly in (0, 1)
    let x = array![-10.0_f64, -5.0, -1.0, 0.0, 1.0, 5.0, 10.0];
    let result = sigmoid_simd(&x.view());

    for i in 0..x.len() {
        assert!(
            result[i] > 0.0 && result[i] < 1.0,
            "sigmoid({}) should be in (0,1), got {}",
            x[i],
            result[i]
        );
    }

    // For extreme values, check bounds (may round to 0 or 1)
    let x_extreme = array![-100.0_f64, 100.0];
    let result_extreme = sigmoid_simd(&x_extreme.view());
    for i in 0..x_extreme.len() {
        assert!(
            result_extreme[i] >= 0.0 && result_extreme[i] <= 1.0,
            "sigmoid({}) should be in [0,1], got {}",
            x_extreme[i],
            result_extreme[i]
        );
    }
}

/// Test sigmoid symmetry: σ(-x) = 1 - σ(x)
#[test]
fn test_sigmoid_simd_f64_symmetry() {
    let x_pos = array![0.5_f64, 1.0, 2.0, 5.0, 10.0];
    let x_neg = array![-0.5_f64, -1.0, -2.0, -5.0, -10.0];
    let result_pos = sigmoid_simd(&x_pos.view());
    let result_neg = sigmoid_simd(&x_neg.view());

    for i in 0..x_pos.len() {
        assert!(
            (result_pos[i] + result_neg[i] - 1.0).abs() < 1e-10,
            "sigmoid({}) + sigmoid({}) should be 1, got {} + {} = {}",
            x_pos[i],
            x_neg[i],
            result_pos[i],
            result_neg[i],
            result_pos[i] + result_neg[i]
        );
    }
}

/// Test sigmoid numerical stability for large positive values
#[test]
fn test_sigmoid_simd_f64_large_positive() {
    let x = array![50.0_f64, 100.0, 500.0, 700.0];
    let result = sigmoid_simd(&x.view());

    for i in 0..x.len() {
        // Should be very close to 1 but not exactly 1
        assert!(
            result[i] > 0.999,
            "sigmoid({}) should be close to 1, got {}",
            x[i],
            result[i]
        );
        assert!(
            result[i] <= 1.0,
            "sigmoid({}) should be <= 1, got {}",
            x[i],
            result[i]
        );
    }
}

/// Test sigmoid numerical stability for large negative values
#[test]
fn test_sigmoid_simd_f64_large_negative() {
    let x = array![-50.0_f64, -100.0, -500.0, -700.0];
    let result = sigmoid_simd(&x.view());

    for i in 0..x.len() {
        // Should be very close to 0 but not exactly 0
        assert!(
            result[i] < 0.001,
            "sigmoid({}) should be close to 0, got {}",
            x[i],
            result[i]
        );
        assert!(
            result[i] >= 0.0,
            "sigmoid({}) should be >= 0, got {}",
            x[i],
            result[i]
        );
    }
}

/// Test sigmoid with infinity
#[test]
fn test_sigmoid_simd_f64_infinity() {
    let x = array![f64::INFINITY, f64::NEG_INFINITY];
    let result = sigmoid_simd(&x.view());

    // sigmoid(+∞) = 1
    assert!(
        (result[0] - 1.0).abs() < 1e-10,
        "sigmoid(+∞) should be 1, got {}",
        result[0]
    );

    // sigmoid(-∞) = 0
    assert!(
        result[1].abs() < 1e-10,
        "sigmoid(-∞) should be 0, got {}",
        result[1]
    );
}

/// Test sigmoid with NaN
#[test]
fn test_sigmoid_simd_f64_nan() {
    let x = array![f64::NAN];
    let result = sigmoid_simd(&x.view());

    assert!(result[0].is_nan(), "sigmoid(NaN) should be NaN");
}

/// Test sigmoid with f32
#[test]
fn test_sigmoid_simd_f32_basic() {
    let x = array![0.0_f32, 1.0, -1.0, 5.0, -5.0];
    let result = sigmoid_simd(&x.view());

    // sigmoid(0) = 0.5
    assert!(
        (result[0] - 0.5).abs() < 1e-6,
        "sigmoid(0) should be 0.5, got {}",
        result[0]
    );

    // Verify symmetry
    assert!(
        (result[1] + result[2] - 1.0).abs() < 1e-5,
        "sigmoid(1) + sigmoid(-1) should be 1, got {}",
        result[1] + result[2]
    );
    assert!(
        (result[3] + result[4] - 1.0).abs() < 1e-5,
        "sigmoid(5) + sigmoid(-5) should be 1, got {}",
        result[3] + result[4]
    );
}

/// Test sigmoid empty array
#[test]
fn test_sigmoid_simd_empty() {
    let x = array![] as Array1<f64>;
    let result = sigmoid_simd(&x.view());
    assert!(result.is_empty(), "sigmoid of empty array should be empty");
}

/// Test sigmoid large array (SIMD path)
#[test]
fn test_sigmoid_simd_large_array() {
    let n = 10000;
    let x: Array1<f64> = Array1::linspace(-10.0, 10.0, n);
    let result = sigmoid_simd(&x.view());

    assert_eq!(result.len(), n);

    // Verify monotonically increasing
    for i in 1..n {
        assert!(
            result[i] >= result[i - 1],
            "sigmoid should be monotonically increasing: sigmoid({}) = {} < sigmoid({}) = {}",
            x[i - 1],
            result[i - 1],
            x[i],
            result[i]
        );
    }

    // Verify range (allow boundary values for extreme inputs)
    for i in 0..n {
        assert!(
            result[i] >= 0.0 && result[i] <= 1.0,
            "sigmoid({}) out of range: {}",
            x[i],
            result[i]
        );
    }

    // Verify symmetry using explicitly symmetric values
    let symmetric_x = array![-5.0_f64, -2.0, -1.0, -0.5, 0.0, 0.5, 1.0, 2.0, 5.0];
    let symmetric_result = sigmoid_simd(&symmetric_x.view());
    // Check pairs: sigmoid(-x) + sigmoid(x) = 1
    assert!((symmetric_result[0] + symmetric_result[8] - 1.0).abs() < 1e-10); // -5, 5
    assert!((symmetric_result[1] + symmetric_result[7] - 1.0).abs() < 1e-10); // -2, 2
    assert!((symmetric_result[2] + symmetric_result[6] - 1.0).abs() < 1e-10); // -1, 1
    assert!((symmetric_result[3] + symmetric_result[5] - 1.0).abs() < 1e-10); // -0.5, 0.5
    assert!((symmetric_result[4] - 0.5).abs() < 1e-10); // 0
}

/// Test sigmoid derivative property: σ'(x) = σ(x)(1 - σ(x))
/// Using numerical differentiation to verify
#[test]
fn test_sigmoid_simd_derivative_property() {
    let h = 1e-8_f64;
    let x_vals = [0.0_f64, 0.5, 1.0, -1.0, 2.0];

    for &x in &x_vals {
        let x_arr = array![x];
        let x_plus_h = array![x + h];
        let x_minus_h = array![x - h];

        let s = sigmoid_simd(&x_arr.view())[0];
        let s_plus = sigmoid_simd(&x_plus_h.view())[0];
        let s_minus = sigmoid_simd(&x_minus_h.view())[0];

        // Numerical derivative
        let numerical_deriv = (s_plus - s_minus) / (2.0 * h);

        // Analytical derivative: σ(x)(1 - σ(x))
        let analytical_deriv = s * (1.0 - s);

        assert!(
            (numerical_deriv - analytical_deriv).abs() < 1e-5,
            "Derivative at x={}: numerical {} vs analytical {}",
            x,
            numerical_deriv,
            analytical_deriv
        );
    }
}

/// Test logistic regression example: probability = sigmoid(weights · features + bias)
#[test]
fn test_sigmoid_simd_logistic_regression() {
    // Typical logistic regression scenario
    let logits = array![0.0_f64, -2.0, 2.0, -5.0, 5.0];
    let probs = sigmoid_simd(&logits.view());

    // Verify probabilities sum-related properties
    // For balanced classes (logit=0), probability should be 0.5
    assert!((probs[0] - 0.5).abs() < 1e-10);

    // Negative logits -> probability < 0.5
    assert!(probs[1] < 0.5);
    assert!(probs[3] < 0.5);

    // Positive logits -> probability > 0.5
    assert!(probs[2] > 0.5);
    assert!(probs[4] > 0.5);
}

// =============================================================================
// =============================================================================
// GELU (Gaussian Error Linear Unit) Tests
// =============================================================================

/// Test GELU(0) = 0
#[test]
fn test_gelu_simd_f64_at_zero() {
    let x = array![0.0_f64];
    let result = gelu_simd(&x.view());
    assert!(
        result[0].abs() < 1e-15,
        "GELU(0) should be 0, got {}",
        result[0]
    );
}

/// Test GELU basic values
#[test]
fn test_gelu_simd_f64_basic() {
    let x = array![0.0_f64, 1.0, -1.0, 2.0, -2.0];
    let result = gelu_simd(&x.view());

    // GELU(0) = 0
    assert!(
        result[0].abs() < 1e-15,
        "GELU(0) should be 0, got {}",
        result[0]
    );

    // GELU(1) ≈ 0.8413 (1 * Φ(1) where Φ(1) ≈ 0.8413)
    // More precisely: 1 * 0.5 * (1 + erf(1/√2)) ≈ 0.8413447460685429
    let expected_1 = 0.8413447460685429_f64;
    assert!(
        (result[1] - expected_1).abs() < 1e-6,
        "GELU(1) should be approximately {}, got {}",
        expected_1,
        result[1]
    );

    // GELU(-1) ≈ -0.1587 (-1 * Φ(-1) where Φ(-1) ≈ 0.1587)
    let expected_neg1 = -0.15865525393145707_f64;
    assert!(
        (result[2] - expected_neg1).abs() < 1e-6,
        "GELU(-1) should be approximately {}, got {}",
        expected_neg1,
        result[2]
    );

    // GELU(2) > GELU(1) (monotonically increasing for positive x)
    assert!(
        result[3] > result[1],
        "GELU should be increasing: GELU(2)={} should be > GELU(1)={}",
        result[3],
        result[1]
    );
}

/// Test GELU asymptotic behavior: GELU(x) ≈ x for large positive x
#[test]
fn test_gelu_simd_f64_large_positive() {
    let x = array![5.0_f64, 10.0, 20.0];
    let result = gelu_simd(&x.view());

    for i in 0..x.len() {
        // For large positive x, GELU(x) ≈ x because Φ(x) ≈ 1
        assert!(
            (result[i] - x[i]).abs() < 0.01,
            "GELU({}) should be approximately {}, got {}",
            x[i],
            x[i],
            result[i]
        );
    }
}

/// Test GELU asymptotic behavior: GELU(x) ≈ 0 for large negative x
#[test]
fn test_gelu_simd_f64_large_negative() {
    let x = array![-5.0_f64, -10.0, -20.0];
    let result = gelu_simd(&x.view());

    for i in 0..x.len() {
        // For large negative x, GELU(x) ≈ 0 because Φ(x) ≈ 0
        assert!(
            result[i].abs() < 0.01,
            "GELU({}) should be approximately 0, got {}",
            x[i],
            result[i]
        );
    }
}

/// Test GELU is smooth (no discontinuities)
#[test]
fn test_gelu_simd_f64_smoothness() {
    // Check that GELU is continuous around 0
    let eps = 1e-6_f64;
    let x = array![-eps, 0.0, eps];
    let result = gelu_simd(&x.view());

    // Values should be close to each other (smooth transition)
    assert!(
        (result[1] - result[0]).abs() < 0.001,
        "GELU should be smooth at 0: GELU({})={}, GELU(0)={}",
        -eps,
        result[0],
        result[1]
    );
    assert!(
        (result[2] - result[1]).abs() < 0.001,
        "GELU should be smooth at 0: GELU(0)={}, GELU({})={}",
        result[1],
        eps,
        result[2]
    );
}

/// Test GELU monotonicity: GELU is monotonically increasing for x > 0
#[test]
fn test_gelu_simd_f64_monotonicity() {
    let n = 100;
    let x: Array1<f64> = Array1::linspace(0.0, 10.0, n);
    let result = gelu_simd(&x.view());

    for i in 1..n {
        assert!(
            result[i] >= result[i - 1],
            "GELU should be monotonically increasing for positive x: GELU({})={} < GELU({})={}",
            x[i - 1],
            result[i - 1],
            x[i],
            result[i]
        );
    }
}

/// Test GELU with NaN
#[test]
fn test_gelu_simd_f64_nan() {
    let x = array![f64::NAN];
    let result = gelu_simd(&x.view());

    assert!(result[0].is_nan(), "GELU(NaN) should be NaN");
}

/// Test GELU with f32
#[test]
fn test_gelu_simd_f32_basic() {
    let x = array![0.0_f32, 1.0, -1.0, 2.0, -2.0];
    let result = gelu_simd(&x.view());

    // GELU(0) = 0
    assert!(
        result[0].abs() < 1e-6,
        "GELU(0) should be 0, got {}",
        result[0]
    );

    // GELU(1) > 0
    assert!(result[1] > 0.0, "GELU(1) should be positive");

    // GELU(-1) < 0
    assert!(result[2] < 0.0, "GELU(-1) should be negative");
}

/// Test GELU empty array
#[test]
fn test_gelu_simd_empty() {
    let x = array![] as Array1<f64>;
    let result = gelu_simd(&x.view());
    assert!(result.is_empty(), "GELU of empty array should be empty");
}

/// Test GELU large array (SIMD path)
#[test]
fn test_gelu_simd_large_array() {
    let n = 10000;
    let x: Array1<f64> = Array1::linspace(-5.0, 5.0, n);
    let result = gelu_simd(&x.view());

    assert_eq!(result.len(), n);

    // Verify basic properties
    for i in 0..n {
        // GELU should be between x and 0 for negative x
        if x[i] < 0.0 {
            assert!(
                result[i] >= x[i] && result[i] <= 0.0,
                "For x={}, GELU={} should be between {} and 0",
                x[i],
                result[i],
                x[i]
            );
        }
        // GELU should be between 0 and x for positive x
        if x[i] > 0.0 {
            assert!(
                result[i] >= 0.0 && result[i] <= x[i],
                "For x={}, GELU={} should be between 0 and {}",
                x[i],
                result[i],
                x[i]
            );
        }
    }
}

/// Test GELU vs ReLU relationship: GELU is a smooth approximation of ReLU
#[test]
fn test_gelu_simd_vs_relu() {
    // ReLU(x) = max(0, x)
    // GELU is a smooth version of ReLU
    let x = array![-3.0_f64, -1.0, 0.0, 1.0, 3.0];
    let gelu_result = gelu_simd(&x.view());

    // For large positive x, GELU ≈ x (like ReLU)
    assert!(
        (gelu_result[4] - x[4]).abs() < 0.01,
        "GELU(3) should be close to 3"
    );

    // For large negative x, GELU ≈ 0 (like ReLU)
    assert!(gelu_result[0].abs() < 0.01, "GELU(-3) should be close to 0");

    // At 0, both are 0
    assert!(gelu_result[2].abs() < 1e-10, "GELU(0) should be 0");
}

/// Test GELU in Transformer-like computation
#[test]
fn test_gelu_simd_transformer_use_case() {
    // Simulate feed-forward layer in Transformer: GELU(W*x + b)
    let hidden = array![0.5_f64, 1.2, -0.8, 2.0, -1.5];
    let activated = gelu_simd(&hidden.view());

    // All results should be finite
    for i in 0..hidden.len() {
        assert!(
            activated[i].is_finite(),
            "GELU output should be finite for input {}",
            hidden[i]
        );
    }

    // Positive values should remain positive (scaled down)
    assert!(activated[0] > 0.0);
    assert!(activated[1] > 0.0);
    assert!(activated[3] > 0.0);
}

// ============================================================================
// ============================================================================
// Swish (SiLU) SIMD Tests
// ============================================================================

/// Test Swish(0) = 0
#[test]
fn test_swish_simd_f64_at_zero() {
    let x = array![0.0_f64];
    let result = swish_simd(&x.view());
    assert!(
        result[0].abs() < 1e-15,
        "Swish(0) should be 0, got {}",
        result[0]
    );
}

/// Test Swish basic values
#[test]
fn test_swish_simd_f64_basic() {
    let x = array![0.0_f64, 1.0, -1.0, 2.0, -2.0];
    let result = swish_simd(&x.view());

    // Swish(x) = x * sigmoid(x) = x / (1 + exp(-x))
    // Swish(0) = 0 * sigmoid(0) = 0 * 0.5 = 0
    assert!(result[0].abs() < 1e-10, "Swish(0) should be 0");

    // Swish(1) = 1 * sigmoid(1) = 1 / (1 + e^-1) ≈ 0.7310585786
    let expected_swish_1 = 1.0 / (1.0 + (-1.0_f64).exp());
    assert!(
        (result[1] - expected_swish_1).abs() < 1e-10,
        "Swish(1) should be approximately {}, got {}",
        expected_swish_1,
        result[1]
    );

    // Swish(-1) = -1 * sigmoid(-1) = -1 / (1 + e) ≈ -0.2689414214
    let expected_swish_neg1 = -1.0 / (1.0 + 1.0_f64.exp());
    assert!(
        (result[2] - expected_swish_neg1).abs() < 1e-10,
        "Swish(-1) should be approximately {}, got {}",
        expected_swish_neg1,
        result[2]
    );

    // Swish(2) = 2 * sigmoid(2) ≈ 1.7615942
    let expected_swish_2 = 2.0 / (1.0 + (-2.0_f64).exp());
    assert!(
        (result[3] - expected_swish_2).abs() < 1e-10,
        "Swish(2) should be approximately {}, got {}",
        expected_swish_2,
        result[3]
    );

    // Swish(-2) = -2 * sigmoid(-2) ≈ -0.2384058
    let expected_swish_neg2 = -2.0 / (1.0 + 2.0_f64.exp());
    assert!(
        (result[4] - expected_swish_neg2).abs() < 1e-10,
        "Swish(-2) should be approximately {}, got {}",
        expected_swish_neg2,
        result[4]
    );
}

/// Test Swish asymptotic behavior: Swish(x) ≈ x for large positive x
#[test]
fn test_swish_simd_f64_large_positive() {
    let x = array![5.0_f64, 10.0, 20.0];
    let result = swish_simd(&x.view());

    // For large x, sigmoid(x) ≈ 1, so Swish(x) ≈ x
    for i in 0..x.len() {
        // The relative error decreases as x increases
        let relative_error = (result[i] - x[i]).abs() / x[i];
        assert!(
            relative_error < 0.01,
            "Swish({}) ≈ {}, relative error should be small: {}",
            x[i],
            result[i],
            relative_error
        );
    }
}

/// Test Swish asymptotic behavior: Swish(x) ≈ 0 for large negative x
#[test]
fn test_swish_simd_f64_large_negative() {
    let x = array![-5.0_f64, -10.0, -20.0];
    let result = swish_simd(&x.view());

    // For large negative x, sigmoid(x) ≈ 0, so Swish(x) ≈ 0
    for i in 0..x.len() {
        assert!(
            result[i].abs() < 0.1,
            "Swish({}) should be approximately 0, got {}",
            x[i],
            result[i]
        );
    }
}

/// Test Swish is smooth (no discontinuities)
#[test]
fn test_swish_simd_f64_smoothness() {
    // Check that Swish is continuous around 0
    let eps = 1e-6_f64;
    let x = array![-eps, 0.0, eps];
    let result = swish_simd(&x.view());

    // Values should be close to each other (continuous)
    let diff_left = (result[0] - result[1]).abs();
    let diff_right = (result[2] - result[1]).abs();

    assert!(
        diff_left < 1e-5,
        "Swish should be continuous at 0 from the left"
    );
    assert!(
        diff_right < 1e-5,
        "Swish should be continuous at 0 from the right"
    );
}

/// Test Swish non-monotonicity: Swish has a global minimum around x ≈ -1.278
#[test]
fn test_swish_simd_f64_global_minimum() {
    // Swish has a global minimum at approximately x = -1.278
    // Minimum value ≈ -0.2784
    let x = array![-1.278_f64, -1.5, -1.0, -2.0];
    let result = swish_simd(&x.view());

    // The minimum should be around -0.278
    let min_value = result[0];
    assert!(
        min_value < -0.27 && min_value > -0.29,
        "Swish global minimum should be around -0.278, got {}",
        min_value
    );

    // Values at other points should be >= minimum (within numerical tolerance)
    for i in 1..result.len() {
        assert!(
            result[i] >= min_value - 0.01,
            "Swish({}) = {} should be >= minimum {}",
            x[i],
            result[i],
            min_value
        );
    }
}

/// Test Swish with NaN
#[test]
fn test_swish_simd_f64_nan() {
    let x = array![f64::NAN];
    let result = swish_simd(&x.view());

    assert!(result[0].is_nan(), "Swish(NaN) should be NaN");
}

/// Test Swish with f32
#[test]
fn test_swish_simd_f32_basic() {
    let x = array![0.0_f32, 1.0, -1.0, 2.0, -2.0];
    let result = swish_simd(&x.view());

    // Swish(0) = 0
    assert!(result[0].abs() < 1e-6, "Swish(0) should be 0");

    // Swish(1) ≈ 0.7311
    let expected_swish_1 = 1.0_f32 / (1.0 + (-1.0_f32).exp());
    assert!(
        (result[1] - expected_swish_1).abs() < 1e-5,
        "Swish(1) should be approximately {}",
        expected_swish_1
    );

    // Swish(-1) ≈ -0.2689
    let expected_swish_neg1 = -1.0_f32 / (1.0 + 1.0_f32.exp());
    assert!(
        (result[2] - expected_swish_neg1).abs() < 1e-5,
        "Swish(-1) should be approximately {}",
        expected_swish_neg1
    );
}

/// Test Swish empty array
#[test]
fn test_swish_simd_empty() {
    let x = array![] as Array1<f64>;
    let result = swish_simd(&x.view());
    assert!(result.is_empty(), "Swish of empty array should be empty");
}

/// Test Swish large array (SIMD path)
#[test]
fn test_swish_simd_large_array() {
    let n = 10000;
    let x: Array1<f64> = Array1::linspace(-5.0, 5.0, n);
    let result = swish_simd(&x.view());

    // Check length
    assert_eq!(result.len(), n, "Result should have same length as input");

    // Check symmetry property: Swish(-x) = -x * sigmoid(-x)
    // Note: Swish is NOT point-symmetric, but has a specific relationship
    let mid = n / 2;
    for i in 0..100 {
        let pos_idx = mid + i;
        let neg_idx = mid - i;
        if neg_idx > 0 && pos_idx < n {
            let x_pos = x[pos_idx];
            let x_neg = x[neg_idx];
            // Verify both values are computed correctly
            let expected_pos = x_pos / (1.0 + (-x_pos).exp());
            let expected_neg = x_neg / (1.0 + (-x_neg).exp());
            assert!(
                (result[pos_idx] - expected_pos).abs() < 1e-10,
                "Swish({}) should be {}",
                x_pos,
                expected_pos
            );
            assert!(
                (result[neg_idx] - expected_neg).abs() < 1e-10,
                "Swish({}) should be {}",
                x_neg,
                expected_neg
            );
        }
    }
}

/// Test Swish relation to sigmoid: Swish(x) = x * sigmoid(x)
#[test]
fn test_swish_simd_sigmoid_relation() {
    let x = array![-2.0_f64, -1.0, -0.5, 0.0, 0.5, 1.0, 2.0];
    let swish_result = swish_simd(&x.view());
    let sigmoid_result = sigmoid_simd(&x.view());

    for i in 0..x.len() {
        let expected = x[i] * sigmoid_result[i];
        assert!(
            (swish_result[i] - expected).abs() < 1e-10,
            "Swish({}) should equal {} * sigmoid({}) = {}",
            x[i],
            x[i],
            x[i],
            expected
        );
    }
}

/// Test Swish in EfficientNet-like computation
#[test]
fn test_swish_simd_efficientnet_use_case() {
    // Simulate activation in EfficientNet: Swish applied after convolution
    let features = array![0.5_f64, 1.2, -0.8, 2.0, -1.5, 0.0, 3.0, -3.0];
    let activated = swish_simd(&features.view());

    // All results should be finite
    for i in 0..features.len() {
        assert!(
            activated[i].is_finite(),
            "Swish output should be finite for input {}",
            features[i]
        );
    }

    // Positive values should produce positive outputs
    assert!(activated[0] > 0.0);
    assert!(activated[1] > 0.0);
    assert!(activated[3] > 0.0);
    assert!(activated[6] > 0.0);

    // Zero should produce zero
    assert!(activated[5].abs() < 1e-10);

    // Negative values should produce small negative or positive outputs
    // (depending on how negative they are)
    for i in 0..features.len() {
        // All outputs should be >= global minimum ≈ -0.278
        assert!(
            activated[i] > -0.3,
            "Swish output should be >= -0.278, got {}",
            activated[i]
        );
    }
}

/// Test Swish vs ReLU: Swish is smoother than ReLU
#[test]
fn test_swish_simd_vs_relu() {
    let x = array![-3.0_f64, -1.0, 0.0, 1.0, 3.0];
    let swish_result = swish_simd(&x.view());

    // ReLU(x) = max(0, x)
    // Unlike ReLU which is 0 for all x < 0, Swish has a small negative region
    // and smoothly transitions to positive

    // For x < 0, Swish is small but not exactly 0
    assert!(swish_result[0] < 0.0 && swish_result[0] > -0.3);
    assert!(swish_result[1] < 0.0 && swish_result[1] > -0.3);

    // At x = 0, both Swish and ReLU are 0
    assert!(swish_result[2].abs() < 1e-10);

    // For x > 0, Swish is close to x (slightly less)
    assert!(swish_result[3] > 0.0 && swish_result[3] < 1.0);
    assert!(swish_result[4] > 0.0 && swish_result[4] < 3.0);
}

/// Test Swish derivative approximation
#[test]
fn test_swish_simd_derivative() {
    // Swish'(x) = sigmoid(x) + x * sigmoid(x) * (1 - sigmoid(x))
    // = sigmoid(x) * (1 + x * (1 - sigmoid(x)))
    // = swish(x) / x + sigmoid(x) * (1 - sigmoid(x)) * x  (for x != 0)

    // Test numerical derivative at a few points
    let eps = 1e-6_f64;
    let test_points = array![0.5_f64, 1.0, 2.0, -0.5, -1.0];

    for i in 0..test_points.len() {
        let x = test_points[i];
        let x_plus = array![x + eps];
        let x_minus = array![x - eps];

        let swish_plus = swish_simd(&x_plus.view())[0];
        let swish_minus = swish_simd(&x_minus.view())[0];

        let numerical_derivative = (swish_plus - swish_minus) / (2.0 * eps);

        // Analytical derivative: σ(x) + x * σ(x) * (1 - σ(x)) = σ(x) * (1 + x * (1 - σ(x)))
        let sigmoid_x = 1.0 / (1.0 + (-x).exp());
        let analytical_derivative = sigmoid_x * (1.0 + x * (1.0 - sigmoid_x));

        assert!(
            (numerical_derivative - analytical_derivative).abs() < 1e-4,
            "Swish derivative at {} should be approximately {}, numerical: {}",
            x,
            analytical_derivative,
            numerical_derivative
        );
    }
}

// ============================================================================
// ============================================================================
// Softplus SIMD Tests
// ============================================================================

/// Test Softplus(0) = ln(2) ≈ 0.693
#[test]
fn test_softplus_simd_f64_at_zero() {
    let x = array![0.0_f64];
    let result = softplus_simd(&x.view());
    let expected = (2.0_f64).ln(); // ln(1 + exp(0)) = ln(2)
    assert!(
        (result[0] - expected).abs() < 1e-15,
        "Softplus(0) should be ln(2) ≈ {}, got {}",
        expected,
        result[0]
    );
}

/// Test Softplus basic values
#[test]
fn test_softplus_simd_f64_basic() {
    let x = array![0.0_f64, 1.0, -1.0, 2.0, -2.0];
    let result = softplus_simd(&x.view());

    // Softplus(x) = ln(1 + exp(x))
    // Softplus(0) = ln(2)
    let expected_0 = (2.0_f64).ln();
    assert!(
        (result[0] - expected_0).abs() < 1e-10,
        "Softplus(0) should be ln(2)"
    );

    // Softplus(1) = ln(1 + e) ≈ 1.3133
    let expected_1 = (1.0_f64 + 1.0_f64.exp()).ln();
    assert!(
        (result[1] - expected_1).abs() < 1e-10,
        "Softplus(1) should be approximately {}, got {}",
        expected_1,
        result[1]
    );

    // Softplus(-1) = ln(1 + 1/e) ≈ 0.3133
    let expected_neg1 = (1.0_f64 + (-1.0_f64).exp()).ln();
    assert!(
        (result[2] - expected_neg1).abs() < 1e-10,
        "Softplus(-1) should be approximately {}, got {}",
        expected_neg1,
        result[2]
    );

    // Softplus(2) = ln(1 + e²) ≈ 2.1269
    let expected_2 = (1.0_f64 + 2.0_f64.exp()).ln();
    assert!(
        (result[3] - expected_2).abs() < 1e-10,
        "Softplus(2) should be approximately {}, got {}",
        expected_2,
        result[3]
    );

    // Softplus(-2) = ln(1 + e^-2) ≈ 0.1269
    let expected_neg2 = (1.0_f64 + (-2.0_f64).exp()).ln();
    assert!(
        (result[4] - expected_neg2).abs() < 1e-10,
        "Softplus(-2) should be approximately {}, got {}",
        expected_neg2,
        result[4]
    );
}

/// Test Softplus asymptotic behavior: Softplus(x) ≈ x for large positive x
#[test]
fn test_softplus_simd_f64_large_positive() {
    let x = array![10.0_f64, 20.0, 50.0];
    let result = softplus_simd(&x.view());

    // For large x, exp(x) >> 1, so ln(1 + exp(x)) ≈ ln(exp(x)) = x
    for i in 0..x.len() {
        let relative_error = (result[i] - x[i]).abs() / x[i];
        assert!(
            relative_error < 1e-4,
            "Softplus({}) ≈ {}, relative error should be small: {}",
            x[i],
            result[i],
            relative_error
        );
    }
}

/// Test Softplus asymptotic behavior: Softplus(x) ≈ exp(x) for large negative x
#[test]
fn test_softplus_simd_f64_large_negative() {
    let x = array![-10.0_f64, -20.0, -50.0];
    let result = softplus_simd(&x.view());

    // For large negative x, ln(1 + exp(x)) ≈ exp(x) ≈ 0
    for i in 0..x.len() {
        let expected = x[i].exp();
        // Use relative error for small positive values
        let relative_error = if expected > 1e-15 {
            (result[i] - expected).abs() / expected
        } else {
            result[i].abs()
        };
        assert!(
            relative_error < 0.01, // 1% relative error tolerance
            "Softplus({}) should be approximately exp({}) = {}, got {}, relative error: {}",
            x[i],
            x[i],
            expected,
            result[i],
            relative_error
        );
    }
}

/// Test Softplus is always positive
#[test]
fn test_softplus_simd_f64_always_positive() {
    let x = array![-100.0_f64, -10.0, -1.0, 0.0, 1.0, 10.0, 100.0];
    let result = softplus_simd(&x.view());

    for i in 0..x.len() {
        assert!(
            result[i] > 0.0,
            "Softplus({}) should be positive, got {}",
            x[i],
            result[i]
        );
    }
}

/// Test Softplus is monotonically increasing
#[test]
fn test_softplus_simd_f64_monotonicity() {
    let n = 100;
    let x: Array1<f64> = Array1::linspace(-10.0, 10.0, n);
    let result = softplus_simd(&x.view());

    for i in 1..n {
        assert!(
            result[i] > result[i - 1],
            "Softplus should be monotonically increasing: softplus({}) = {} <= softplus({}) = {}",
            x[i - 1],
            result[i - 1],
            x[i],
            result[i]
        );
    }
}

/// Test Softplus is smooth (no discontinuities)
#[test]
fn test_softplus_simd_f64_smoothness() {
    let eps = 1e-6_f64;
    let x = array![-eps, 0.0, eps];
    let result = softplus_simd(&x.view());

    // Values should be close to each other (continuous)
    let diff_left = (result[0] - result[1]).abs();
    let diff_right = (result[2] - result[1]).abs();

    assert!(
        diff_left < 1e-5,
        "Softplus should be continuous at 0 from the left"
    );
    assert!(
        diff_right < 1e-5,
        "Softplus should be continuous at 0 from the right"
    );
}

/// Test Softplus with NaN
#[test]
fn test_softplus_simd_f64_nan() {
    let x = array![f64::NAN];
    let result = softplus_simd(&x.view());

    assert!(result[0].is_nan(), "Softplus(NaN) should be NaN");
}

/// Test Softplus with f32
#[test]
fn test_softplus_simd_f32_basic() {
    let x = array![0.0_f32, 1.0, -1.0, 2.0, -2.0];
    let result = softplus_simd(&x.view());

    // Softplus(0) = ln(2)
    let expected_0 = (2.0_f32).ln();
    assert!(
        (result[0] - expected_0).abs() < 1e-6,
        "Softplus(0) should be ln(2)"
    );

    // Softplus(1) = ln(1 + e)
    let expected_1 = (1.0_f32 + 1.0_f32.exp()).ln();
    assert!(
        (result[1] - expected_1).abs() < 1e-5,
        "Softplus(1) should be approximately {}",
        expected_1
    );

    // Softplus(-1) = ln(1 + 1/e)
    let expected_neg1 = (1.0_f32 + (-1.0_f32).exp()).ln();
    assert!(
        (result[2] - expected_neg1).abs() < 1e-5,
        "Softplus(-1) should be approximately {}",
        expected_neg1
    );
}

/// Test Softplus empty array
#[test]
fn test_softplus_simd_empty() {
    let x = array![] as Array1<f64>;
    let result = softplus_simd(&x.view());
    assert!(result.is_empty(), "Softplus of empty array should be empty");
}

/// Test Softplus large array (SIMD path)
#[test]
fn test_softplus_simd_large_array() {
    let n = 10000;
    let x: Array1<f64> = Array1::linspace(-10.0, 10.0, n);
    let result = softplus_simd(&x.view());

    // Check length
    assert_eq!(result.len(), n, "Result should have same length as input");

    // Verify all values are positive
    for i in 0..n {
        assert!(
            result[i] > 0.0,
            "Softplus({}) should be positive, got {}",
            x[i],
            result[i]
        );
    }

    // Verify monotonicity in samples
    for i in (0..n).step_by(100) {
        if i > 0 {
            assert!(
                result[i] >= result[i - 100],
                "Softplus should be monotonically increasing"
            );
        }
    }
}

/// Test Softplus derivative relation: softplus'(x) = sigmoid(x)
#[test]
fn test_softplus_simd_derivative() {
    // softplus'(x) = exp(x) / (1 + exp(x)) = 1 / (1 + exp(-x)) = sigmoid(x)
    let eps = 1e-6_f64;
    let test_points = array![0.0_f64, 0.5, 1.0, 2.0, -0.5, -1.0, -2.0];

    for i in 0..test_points.len() {
        let x = test_points[i];
        let x_plus = array![x + eps];
        let x_minus = array![x - eps];

        let softplus_plus = softplus_simd(&x_plus.view())[0];
        let softplus_minus = softplus_simd(&x_minus.view())[0];

        let numerical_derivative = (softplus_plus - softplus_minus) / (2.0 * eps);

        // Analytical derivative: sigmoid(x)
        let analytical_derivative = 1.0 / (1.0 + (-x).exp());

        assert!(
            (numerical_derivative - analytical_derivative).abs() < 1e-4,
            "Softplus derivative at {} should be sigmoid({}) = {}, numerical: {}",
            x,
            x,
            analytical_derivative,
            numerical_derivative
        );
    }
}

/// Test Softplus in probabilistic model use case
#[test]
fn test_softplus_simd_probabilistic_model() {
    // Softplus is often used to ensure positive parameters (e.g., variance)
    // log_var = raw_output
    // var = softplus(log_var)  (ensures var > 0)
    let raw_outputs = array![-5.0_f64, -2.0, 0.0, 2.0, 5.0];
    let variances = softplus_simd(&raw_outputs.view());

    // All variances should be positive
    for i in 0..raw_outputs.len() {
        assert!(
            variances[i] > 0.0,
            "Variance should be positive, got {}",
            variances[i]
        );
        assert!(
            variances[i].is_finite(),
            "Variance should be finite, got {}",
            variances[i]
        );
    }

    // Larger raw outputs should give larger variances
    for i in 1..raw_outputs.len() {
        assert!(
            variances[i] > variances[i - 1],
            "Variance should increase with raw output"
        );
    }
}

/// Test Softplus vs ReLU approximation
#[test]
fn test_softplus_simd_vs_relu() {
    // Softplus is a smooth approximation of ReLU
    // For large positive x, Softplus(x) ≈ x ≈ ReLU(x)
    // For large negative x, Softplus(x) ≈ 0 ≈ ReLU(x)
    // But Softplus is always > 0, while ReLU(x) = 0 for x < 0
    // Note: Softplus(x) = x + ln(1 + exp(-x)) > x for all x

    let x = array![-3.0_f64, -1.0, 0.0, 1.0, 3.0];
    let softplus_result = softplus_simd(&x.view());

    // At x = 0, Softplus(0) = ln(2) ≠ 0 = ReLU(0)
    assert!(softplus_result[2] > 0.0, "Softplus(0) = ln(2) > 0");

    // For x > 0, Softplus(x) > x (by ln(1 + exp(-x)))
    // but approaches x as x increases
    assert!(softplus_result[3] > x[3], "Softplus(1) > 1");
    assert!(softplus_result[4] > x[4], "Softplus(3) > 3");

    // The difference Softplus(x) - x = ln(1 + exp(-x)) decreases as x increases
    let diff_1 = softplus_result[3] - x[3]; // ln(1 + exp(-1)) ≈ 0.313
    let diff_3 = softplus_result[4] - x[4]; // ln(1 + exp(-3)) ≈ 0.049
    assert!(
        diff_3 < diff_1,
        "Softplus - x should decrease as x increases"
    );

    // For large positive x, Softplus(x) approaches x
    let large_x = array![10.0_f64];
    let large_result = softplus_simd(&large_x.view())[0];
    assert!((large_result - 10.0).abs() < 0.001);
}

// ============================================================================
// ============================================================================
// Mish SIMD Tests
// ============================================================================

/// Test Mish(0) = 0
#[test]
fn test_mish_simd_f64_at_zero() {
    let x = array![0.0_f64];
    let result = mish_simd(&x.view());
    // Mish(0) = 0 * tanh(softplus(0)) = 0 * tanh(ln(2)) = 0
    assert!(
        result[0].abs() < 1e-15,
        "Mish(0) should be 0, got {}",
        result[0]
    );
}

/// Test Mish basic values
#[test]
fn test_mish_simd_f64_basic() {
    let x = array![0.0_f64, 1.0, -1.0, 2.0, -2.0];
    let result = mish_simd(&x.view());

    // Mish(x) = x * tanh(softplus(x)) = x * tanh(ln(1 + exp(x)))
    // Mish(0) = 0
    assert!(result[0].abs() < 1e-10, "Mish(0) should be 0");

    // Mish(1) = 1 * tanh(ln(1 + e)) ≈ 0.8651
    let softplus_1 = (1.0_f64 + 1.0_f64.exp()).ln();
    let expected_mish_1 = 1.0 * softplus_1.tanh();
    assert!(
        (result[1] - expected_mish_1).abs() < 1e-10,
        "Mish(1) should be approximately {}, got {}",
        expected_mish_1,
        result[1]
    );

    // Mish(-1) = -1 * tanh(ln(1 + 1/e)) ≈ -0.3034
    let softplus_neg1 = (1.0_f64 + (-1.0_f64).exp()).ln();
    let expected_mish_neg1 = -softplus_neg1.tanh();
    assert!(
        (result[2] - expected_mish_neg1).abs() < 1e-10,
        "Mish(-1) should be approximately {}, got {}",
        expected_mish_neg1,
        result[2]
    );

    // Mish(2) = 2 * tanh(ln(1 + e²)) ≈ 1.9439
    let softplus_2 = (1.0_f64 + 2.0_f64.exp()).ln();
    let expected_mish_2 = 2.0 * softplus_2.tanh();
    assert!(
        (result[3] - expected_mish_2).abs() < 1e-10,
        "Mish(2) should be approximately {}, got {}",
        expected_mish_2,
        result[3]
    );
}

/// Test Mish asymptotic behavior: Mish(x) ≈ x for large positive x
#[test]
fn test_mish_simd_f64_large_positive() {
    let x = array![5.0_f64, 10.0, 20.0];
    let result = mish_simd(&x.view());

    // For large x, softplus(x) ≈ x, tanh(x) ≈ 1, so Mish(x) ≈ x * 1 = x
    for i in 0..x.len() {
        let relative_error = (result[i] - x[i]).abs() / x[i];
        assert!(
            relative_error < 0.01,
            "Mish({}) ≈ {}, relative error should be small: {}",
            x[i],
            result[i],
            relative_error
        );
    }
}

/// Test Mish asymptotic behavior: Mish(x) ≈ 0 for large negative x
#[test]
fn test_mish_simd_f64_large_negative() {
    let x = array![-5.0_f64, -10.0, -20.0];
    let result = mish_simd(&x.view());

    // For large negative x, softplus(x) ≈ 0, tanh(0) = 0, so Mish(x) ≈ 0
    for i in 0..x.len() {
        assert!(
            result[i].abs() < 0.1,
            "Mish({}) should be approximately 0, got {}",
            x[i],
            result[i]
        );
    }
}

/// Test Mish has a global minimum around x ≈ -1.2 with value ≈ -0.31
#[test]
fn test_mish_simd_f64_global_minimum() {
    // Mish has a global minimum around x ≈ -1.2
    let x = array![-1.2_f64, -1.5, -1.0, -2.0];
    let result = mish_simd(&x.view());

    // The minimum should be around -0.31
    let min_value = result[0];
    assert!(
        min_value < -0.28 && min_value > -0.35,
        "Mish global minimum should be around -0.31, got {}",
        min_value
    );
}

/// Test Mish is smooth (no discontinuities)
#[test]
fn test_mish_simd_f64_smoothness() {
    let eps = 1e-6_f64;
    let x = array![-eps, 0.0, eps];
    let result = mish_simd(&x.view());

    // Values should be close to each other (continuous)
    let diff_left = (result[0] - result[1]).abs();
    let diff_right = (result[2] - result[1]).abs();

    assert!(
        diff_left < 1e-5,
        "Mish should be continuous at 0 from the left"
    );
    assert!(
        diff_right < 1e-5,
        "Mish should be continuous at 0 from the right"
    );
}

/// Test Mish with NaN
#[test]
fn test_mish_simd_f64_nan() {
    let x = array![f64::NAN];
    let result = mish_simd(&x.view());

    assert!(result[0].is_nan(), "Mish(NaN) should be NaN");
}

/// Test Mish with f32
#[test]
fn test_mish_simd_f32_basic() {
    let x = array![0.0_f32, 1.0, -1.0, 2.0, -2.0];
    let result = mish_simd(&x.view());

    // Mish(0) = 0
    assert!(result[0].abs() < 1e-6, "Mish(0) should be 0");

    // Mish(1) ≈ 0.8651
    let softplus_1 = (1.0_f32 + 1.0_f32.exp()).ln();
    let expected_mish_1 = 1.0_f32 * softplus_1.tanh();
    assert!(
        (result[1] - expected_mish_1).abs() < 1e-5,
        "Mish(1) should be approximately {}",
        expected_mish_1
    );
}

/// Test Mish empty array
#[test]
fn test_mish_simd_empty() {
    let x = array![] as Array1<f64>;
    let result = mish_simd(&x.view());
    assert!(result.is_empty(), "Mish of empty array should be empty");
}

/// Test Mish large array (SIMD path)
#[test]
fn test_mish_simd_large_array() {
    let n = 10000;
    let x: Array1<f64> = Array1::linspace(-5.0, 5.0, n);
    let result = mish_simd(&x.view());

    // Check length
    assert_eq!(result.len(), n, "Result should have same length as input");

    // Verify all values are computed correctly for a sample
    for i in (0..n).step_by(500) {
        let xi = x[i];
        let softplus_xi = (1.0_f64 + xi.exp()).ln();
        let expected = xi * softplus_xi.tanh();
        assert!(
            (result[i] - expected).abs() < 1e-8,
            "Mish({}) should be {}, got {}",
            xi,
            expected,
            result[i]
        );
    }
}

/// Test Mish relation to Swish: both are self-gating activations
#[test]
fn test_mish_simd_vs_swish() {
    // Both Mish and Swish are self-gating: x * f(x)
    // Mish: x * tanh(softplus(x))
    // Swish: x * sigmoid(x)
    let x = array![-2.0_f64, -1.0, 0.0, 1.0, 2.0];
    let mish_result = mish_simd(&x.view());
    let swish_result = swish_simd(&x.view());

    // Both should be 0 at x = 0
    assert!(mish_result[2].abs() < 1e-10);
    assert!(swish_result[2].abs() < 1e-10);

    // For positive x, Mish > Swish (tanh(softplus(x)) > sigmoid(x) for x > 0)
    assert!(mish_result[3] > swish_result[3]);
    assert!(mish_result[4] > swish_result[4]);

    // Both approach x for large positive x
    let large_x = array![10.0_f64];
    let mish_large = mish_simd(&large_x.view())[0];
    let swish_large = swish_simd(&large_x.view())[0];
    assert!((mish_large - 10.0).abs() < 0.01);
    assert!((swish_large - 10.0).abs() < 0.01);
}

/// Test Mish in YOLOv4-like computation
#[test]
fn test_mish_simd_yolov4_use_case() {
    // Simulate activation in YOLOv4: Mish applied after convolution
    let features = array![0.5_f64, 1.2, -0.8, 2.0, -1.5, 0.0, 3.0, -3.0];
    let activated = mish_simd(&features.view());

    // All results should be finite
    for i in 0..features.len() {
        assert!(
            activated[i].is_finite(),
            "Mish output should be finite for input {}",
            features[i]
        );
    }

    // Zero should produce zero
    assert!(activated[5].abs() < 1e-10);

    // Positive values should produce positive outputs
    assert!(activated[0] > 0.0);
    assert!(activated[1] > 0.0);
    assert!(activated[3] > 0.0);
    assert!(activated[6] > 0.0);

    // All outputs should be >= global minimum ≈ -0.31
    for i in 0..features.len() {
        assert!(
            activated[i] > -0.35,
            "Mish output should be >= -0.31, got {}",
            activated[i]
        );
    }
}

// ============================================================================
// ============================================================================