torsh-nn 0.1.2

Neural network modules for ToRSh with PyTorch-compatible API
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
//! Normalization operations for neural networks
//!
//! This module provides comprehensive normalization functions including batch normalization,
//! layer normalization, and other normalization techniques enhanced with SciRS2 integration.

use super::core::{validation, FunctionalConfig};
use crate::{func_error, validate_inputs};
use torsh_core::error::Result;
use torsh_tensor::Tensor;

// =============================================================================
// BATCH NORMALIZATION
// =============================================================================

/// Enhanced batch normalization with standardized API and SciRS2 numerical stability
pub fn batch_norm_2d(
    input: &Tensor,
    weight: Option<&Tensor>,
    bias: Option<&Tensor>,
    running_mean: Option<&Tensor>,
    running_var: Option<&Tensor>,
    training: bool,
    momentum: f32,
    eps: f32,
) -> Result<Tensor> {
    batch_norm_2d_with_config(
        input,
        weight,
        bias,
        running_mean,
        running_var,
        training,
        momentum,
        eps,
        &super::core::default_config(),
    )
}

/// Enhanced batch normalization with configuration
pub fn batch_norm_2d_with_config(
    input: &Tensor,
    weight: Option<&Tensor>,
    bias: Option<&Tensor>,
    running_mean: Option<&Tensor>,
    running_var: Option<&Tensor>,
    training: bool,
    momentum: f32,
    eps: f32,
    config: &FunctionalConfig,
) -> Result<Tensor> {
    // Input validation with standardized error handling
    validate_inputs!(
        config,
        validation::validate_not_empty(input, "input"),
        validation::validate_min_ndim(input, 4, "input"),
        validation::validate_positive(eps, "eps"),
        validation::validate_range(momentum, 0.0, 1.0, "momentum")
    );

    // Enhanced batch normalization leveraging SciRS2's numerical stability techniques
    let input_shape_obj = input.shape();
    let input_shape = input_shape_obj.dims();
    let batch_size = input_shape[0];
    let channels = input_shape[1];

    if training {
        // Compute batch statistics with enhanced numerical stability
        // Reshape input for channel-wise computation: [N, C, H, W] -> [N*H*W, C]
        let spatial_dims: usize = input_shape[2..].iter().product();
        let total_spatial = batch_size * spatial_dims;

        // Compute mean with Welford's online algorithm for numerical stability
        let reshaped = input.view(&[total_spatial as i32, channels as i32])?;
        let mean = reshaped.mean(Some(&[0]), false)?;

        // Compute variance using the stable two-pass algorithm
        let centered = reshaped.sub(&mean.unsqueeze(0)?)?;
        let variance = centered.pow_scalar(2.0)?.mean(Some(&[0]), false)?;

        // Add epsilon for numerical stability
        let eps_tensor = torsh_tensor::creation::full(&[channels], eps)?;
        let stable_var = variance.add(&eps_tensor)?;
        let inv_std = stable_var.rsqrt()?;

        // Apply normalization
        let normalized = centered.mul_op(&inv_std.unsqueeze(0)?)?;

        // Reshape back to original shape
        let input_shape_i32: Vec<i32> = input_shape.iter().map(|&x| x as i32).collect();
        let output = normalized.view(&input_shape_i32)?;

        // Apply scale and shift if provided
        let mut result = output;
        if let Some(w) = weight {
            let weight_expanded = w.view(&[1, channels as i32, 1, 1])?;
            result = result.mul_op(&weight_expanded)?;
        }
        if let Some(b) = bias {
            let bias_expanded = b.view(&[1, channels as i32, 1, 1])?;
            result = result.add(&bias_expanded)?;
        }

        // Update running statistics with momentum
        if let (Some(r_mean), Some(r_var)) = (running_mean, running_var) {
            // running_mean = (1 - momentum) * running_mean + momentum * batch_mean
            let momentum_tensor = torsh_tensor::creation::full(&[1], momentum)?;
            let one_minus_momentum = torsh_tensor::creation::full(&[1], 1.0 - momentum)?;

            let _new_running_mean = r_mean
                .mul_op(&one_minus_momentum)?
                .add(&mean.mul_op(&momentum_tensor)?)?;
            let _new_running_var = r_var
                .mul_op(&one_minus_momentum)?
                .add(&variance.mul_op(&momentum_tensor)?)?;

            // Note: In practice, these would update the module's buffers
        }

        Ok(result)
    } else {
        // Use running statistics for inference
        let default_mean = torsh_tensor::creation::zeros(&[channels])?;
        let default_var = torsh_tensor::creation::ones(&[channels])?;
        let r_mean = running_mean.unwrap_or(&default_mean);
        let r_var = running_var.unwrap_or(&default_var);

        // Apply normalization using running statistics
        let eps_tensor = torsh_tensor::creation::full(&[channels], eps)?;
        let stable_var = r_var.add(&eps_tensor)?;
        let inv_std = stable_var.rsqrt()?;

        let mean_expanded = r_mean.view(&[1, channels as i32, 1, 1])?;
        let inv_std_expanded = inv_std.view(&[1, channels as i32, 1, 1])?;

        let normalized = input.sub(&mean_expanded)?.mul_op(&inv_std_expanded)?;

        // Apply scale and shift
        let mut result = normalized;
        if let Some(w) = weight {
            let weight_expanded = w.view(&[1, channels as i32, 1, 1])?;
            result = result.mul_op(&weight_expanded)?;
        }
        if let Some(b) = bias {
            let bias_expanded = b.view(&[1, channels as i32, 1, 1])?;
            result = result.add(&bias_expanded)?;
        }

        Ok(result)
    }
}

/// 1D batch normalization
///
/// Applies batch normalization over a 3D input (batch, channels, length).
/// Normalizes over batch and spatial dimensions for each channel.
///
/// # Arguments
///
/// * `input` - Input tensor of shape [batch, channels, length]
/// * `weight` - Optional learnable affine scale parameters (gamma)
/// * `bias` - Optional learnable affine shift parameters (beta)
/// * `running_mean` - Running mean for inference
/// * `running_var` - Running variance for inference
/// * `training` - Whether in training mode
/// * `momentum` - Momentum for running statistics update
/// * `eps` - Small value for numerical stability
pub fn batch_norm_1d(
    input: &Tensor,
    weight: Option<&Tensor>,
    bias: Option<&Tensor>,
    running_mean: Option<&Tensor>,
    running_var: Option<&Tensor>,
    training: bool,
    momentum: f32,
    eps: f32,
) -> Result<Tensor> {
    let input_shape_obj = input.shape();
    let input_shape = input_shape_obj.dims();

    if input_shape.len() != 3 {
        return Err(torsh_core::error::TorshError::ShapeMismatch {
            expected: vec![0, 0, 0],
            got: input_shape.to_vec(),
        });
    }

    let batch_size = input_shape[0];
    let channels = input_shape[1];
    let length = input_shape[2];

    if training {
        // Compute batch statistics
        // Reshape to [batch * length, channels] to compute statistics across batch and spatial dims
        let total_spatial = batch_size * length;
        let reshaped = input.view(&[total_spatial as i32, channels as i32])?;
        let mean = reshaped.mean(Some(&[0]), false)?;

        // Compute variance
        let centered = reshaped.sub(&mean.unsqueeze(0)?)?;
        let variance = centered.pow_scalar(2.0)?.mean(Some(&[0]), false)?;

        // Add epsilon for numerical stability
        let eps_tensor = torsh_tensor::creation::full(&[channels], eps)?;
        let stable_var = variance.add(&eps_tensor)?;
        let inv_std = stable_var.rsqrt()?;

        // Apply normalization
        let normalized = centered.mul_op(&inv_std.unsqueeze(0)?)?;

        // Reshape back to original shape
        let input_shape_i32: Vec<i32> = input_shape.iter().map(|&x| x as i32).collect();
        let output = normalized.view(&input_shape_i32)?;

        // Apply scale and shift
        let mut result = output;
        if let Some(w) = weight {
            let weight_expanded = w.view(&[1, channels as i32, 1])?;
            result = result.mul_op(&weight_expanded)?;
        }
        if let Some(b) = bias {
            let bias_expanded = b.view(&[1, channels as i32, 1])?;
            result = result.add(&bias_expanded)?;
        }

        // Update running statistics (would be done by the module in practice)
        let _ = (running_mean, running_var, momentum, mean, variance);

        Ok(result)
    } else {
        // Use running statistics for inference
        let default_mean = torsh_tensor::creation::zeros(&[channels])?;
        let default_var = torsh_tensor::creation::ones(&[channels])?;
        let r_mean = running_mean.unwrap_or(&default_mean);
        let r_var = running_var.unwrap_or(&default_var);

        // Apply normalization
        let eps_tensor = torsh_tensor::creation::full(&[channels], eps)?;
        let stable_var = r_var.add(&eps_tensor)?;
        let inv_std = stable_var.rsqrt()?;

        let mean_expanded = r_mean.view(&[1, channels as i32, 1])?;
        let inv_std_expanded = inv_std.view(&[1, channels as i32, 1])?;

        let normalized = input.sub(&mean_expanded)?.mul_op(&inv_std_expanded)?;

        // Apply scale and shift
        let mut result = normalized;
        if let Some(w) = weight {
            let weight_expanded = w.view(&[1, channels as i32, 1])?;
            result = result.mul_op(&weight_expanded)?;
        }
        if let Some(b) = bias {
            let bias_expanded = b.view(&[1, channels as i32, 1])?;
            result = result.add(&bias_expanded)?;
        }

        Ok(result)
    }
}

/// 3D batch normalization
///
/// Applies batch normalization over a 5D input (batch, channels, depth, height, width).
/// Normalizes over batch and spatial dimensions for each channel.
///
/// # Arguments
///
/// * `input` - Input tensor of shape [batch, channels, depth, height, width]
/// * `weight` - Optional learnable affine scale parameters (gamma)
/// * `bias` - Optional learnable affine shift parameters (beta)
/// * `running_mean` - Running mean for inference
/// * `running_var` - Running variance for inference
/// * `training` - Whether in training mode
/// * `momentum` - Momentum for running statistics update
/// * `eps` - Small value for numerical stability
pub fn batch_norm_3d(
    input: &Tensor,
    weight: Option<&Tensor>,
    bias: Option<&Tensor>,
    running_mean: Option<&Tensor>,
    running_var: Option<&Tensor>,
    training: bool,
    momentum: f32,
    eps: f32,
) -> Result<Tensor> {
    let input_shape_obj = input.shape();
    let input_shape = input_shape_obj.dims();

    if input_shape.len() != 5 {
        return Err(torsh_core::error::TorshError::ShapeMismatch {
            expected: vec![0, 0, 0, 0, 0],
            got: input_shape.to_vec(),
        });
    }

    let batch_size = input_shape[0];
    let channels = input_shape[1];
    let depth = input_shape[2];
    let height = input_shape[3];
    let width = input_shape[4];

    if training {
        // Compute batch statistics
        // Reshape to [batch * depth * height * width, channels]
        let total_spatial = batch_size * depth * height * width;
        let reshaped = input.view(&[total_spatial as i32, channels as i32])?;
        let mean = reshaped.mean(Some(&[0]), false)?;

        // Compute variance
        let centered = reshaped.sub(&mean.unsqueeze(0)?)?;
        let variance = centered.pow_scalar(2.0)?.mean(Some(&[0]), false)?;

        // Add epsilon for numerical stability
        let eps_tensor = torsh_tensor::creation::full(&[channels], eps)?;
        let stable_var = variance.add(&eps_tensor)?;
        let inv_std = stable_var.rsqrt()?;

        // Apply normalization
        let normalized = centered.mul_op(&inv_std.unsqueeze(0)?)?;

        // Reshape back to original shape
        let input_shape_i32: Vec<i32> = input_shape.iter().map(|&x| x as i32).collect();
        let output = normalized.view(&input_shape_i32)?;

        // Apply scale and shift
        let mut result = output;
        if let Some(w) = weight {
            let weight_expanded = w.view(&[1, channels as i32, 1, 1, 1])?;
            result = result.mul_op(&weight_expanded)?;
        }
        if let Some(b) = bias {
            let bias_expanded = b.view(&[1, channels as i32, 1, 1, 1])?;
            result = result.add(&bias_expanded)?;
        }

        // Update running statistics (would be done by the module in practice)
        let _ = (running_mean, running_var, momentum, mean, variance);

        Ok(result)
    } else {
        // Use running statistics for inference
        let default_mean = torsh_tensor::creation::zeros(&[channels])?;
        let default_var = torsh_tensor::creation::ones(&[channels])?;
        let r_mean = running_mean.unwrap_or(&default_mean);
        let r_var = running_var.unwrap_or(&default_var);

        // Apply normalization
        let eps_tensor = torsh_tensor::creation::full(&[channels], eps)?;
        let stable_var = r_var.add(&eps_tensor)?;
        let inv_std = stable_var.rsqrt()?;

        let mean_expanded = r_mean.view(&[1, channels as i32, 1, 1, 1])?;
        let inv_std_expanded = inv_std.view(&[1, channels as i32, 1, 1, 1])?;

        let normalized = input.sub(&mean_expanded)?.mul_op(&inv_std_expanded)?;

        // Apply scale and shift
        let mut result = normalized;
        if let Some(w) = weight {
            let weight_expanded = w.view(&[1, channels as i32, 1, 1, 1])?;
            result = result.mul_op(&weight_expanded)?;
        }
        if let Some(b) = bias {
            let bias_expanded = b.view(&[1, channels as i32, 1, 1, 1])?;
            result = result.add(&bias_expanded)?;
        }

        Ok(result)
    }
}

/// Batch normalization function (generic)
#[allow(clippy::too_many_arguments)]
pub fn batch_norm(
    input: &Tensor,
    running_mean: Option<&Tensor>,
    running_var: Option<&Tensor>,
    weight: Option<&Tensor>,
    bias: Option<&Tensor>,
    training: bool,
    momentum: f32,
    eps: f32,
) -> Result<Tensor> {
    // Generic batch normalization that dispatches to the appropriate implementation
    // based on input dimensionality
    let input_shape_obj = input.shape();
    let input_dims = input_shape_obj.dims();

    match input_dims.len() {
        3 => {
            // 1D batch normalization: [batch_size, channels, length]
            batch_norm_1d(
                input,
                weight,
                bias,
                running_mean,
                running_var,
                training,
                momentum,
                eps,
            )
        }
        4 => {
            // 2D batch normalization: [batch_size, channels, height, width]
            batch_norm_2d(
                input,
                weight,
                bias,
                running_mean,
                running_var,
                training,
                momentum,
                eps,
            )
        }
        5 => {
            // 3D batch normalization: [batch_size, channels, depth, height, width]
            batch_norm_3d(
                input,
                weight,
                bias,
                running_mean,
                running_var,
                training,
                momentum,
                eps,
            )
        }
        2 => {
            // For 2D input [batch_size, features], treat as 1D with length=1
            // Reshape to [batch_size, features, 1]
            let batch_size = input_dims[0] as i32;
            let features = input_dims[1] as i32;
            let reshaped_input = input.view(&[batch_size, features, 1])?;

            let result = batch_norm_1d(
                &reshaped_input,
                weight,
                bias,
                running_mean,
                running_var,
                training,
                momentum,
                eps,
            )?;

            // Reshape back to [batch_size, features]
            result.view(&[batch_size, features])
        }
        _ => {
            // For unsupported dimensionality, return error
            Err(torsh_core::error::TorshError::InvalidArgument(format!(
                "batch_norm: expected 2D, 3D, 4D, or 5D input, got {}D",
                input_dims.len()
            )))
        }
    }
}

// =============================================================================
// LAYER NORMALIZATION
// =============================================================================

/// Enhanced layer normalization with SciRS2 numerical stability
pub fn layer_norm_enhanced(
    input: &Tensor,
    normalized_shape: &[usize],
    weight: Option<&Tensor>,
    bias: Option<&Tensor>,
    eps: f32,
) -> Result<Tensor> {
    // Enhanced layer normalization with numerical stability improvements
    let input_shape_obj = input.shape();
    let input_shape = input_shape_obj.dims();
    let norm_dims = normalized_shape.len();
    let _norm_size: usize = normalized_shape.iter().product();

    // Create dimension indices for normalization
    let norm_dim_indices: Vec<usize> = (input_shape.len() - norm_dims..input_shape.len()).collect();

    // Compute mean and variance over the normalized dimensions
    let mean = input.mean(Some(&norm_dim_indices), true)?;
    let centered = input.sub(&mean)?;
    let variance = centered
        .pow_scalar(2.0)?
        .mean(Some(&norm_dim_indices), true)?;

    // Add epsilon and compute inverse standard deviation
    let eps_tensor = torsh_tensor::creation::full(&[1], eps)?;
    let stable_var = variance.add(&eps_tensor)?;
    let inv_std = stable_var.rsqrt()?;

    // Apply normalization
    let normalized = centered.mul_op(&inv_std)?;

    // Apply learnable parameters if provided
    let mut result = normalized;
    if let Some(w) = weight {
        result = result.mul_op(w)?;
    }
    if let Some(b) = bias {
        result = result.add(b)?;
    }

    Ok(result)
}

/// Layer normalization function
///
/// Normalizes the input over the last `normalized_shape.len()` dimensions.
/// This is the standard layer normalization used in transformers and other architectures.
///
/// # Arguments
///
/// * `input` - Input tensor
/// * `normalized_shape` - Shape of the dimensions to normalize over (typically the last few dims)
/// * `weight` - Optional learnable affine scale parameters (gamma)
/// * `bias` - Optional learnable affine shift parameters (beta)
/// * `eps` - Small value for numerical stability (default: 1e-5)
///
/// # Example
///
/// For an input of shape [batch, seq_len, hidden_dim] with normalized_shape = \[hidden_dim\],
/// this will normalize over the hidden_dim dimension for each position independently.
pub fn layer_norm(
    input: &Tensor,
    normalized_shape: &[usize],
    weight: Option<&Tensor>,
    bias: Option<&Tensor>,
    eps: f32,
) -> Result<Tensor> {
    // Use the enhanced implementation which provides numerical stability
    layer_norm_enhanced(input, normalized_shape, weight, bias, eps)
}

/// Layer normalization with configuration
pub fn layer_norm_configured(
    input: &Tensor,
    normalized_shape: &[usize],
    weight: Option<&Tensor>,
    bias: Option<&Tensor>,
    eps: f32,
    config: &FunctionalConfig,
) -> Result<Tensor> {
    validate_inputs!(
        config,
        validation::validate_not_empty(input, "input"),
        validation::validate_positive(eps, "eps")
    );
    func_error!(
        layer_norm_enhanced(input, normalized_shape, weight, bias, eps),
        "Layer normalization"
    )
}

// =============================================================================
// GROUP NORMALIZATION
// =============================================================================

/// Group normalization
///
/// Divides channels into groups and normalizes within each group.
/// GroupNorm is effective for small batch sizes where BatchNorm struggles.
///
/// # Arguments
///
/// * `input` - Input tensor of shape [batch, channels, ...]
/// * `num_groups` - Number of groups to divide channels into
/// * `weight` - Optional learnable affine scale parameters (gamma)
/// * `bias` - Optional learnable affine shift parameters (beta)
/// * `eps` - Small value for numerical stability
pub fn group_norm(
    input: &Tensor,
    num_groups: usize,
    weight: Option<&Tensor>,
    bias: Option<&Tensor>,
    eps: f32,
) -> Result<Tensor> {
    let input_shape_obj = input.shape();
    let input_shape = input_shape_obj.dims();

    if input_shape.len() < 2 {
        return Err(torsh_core::error::TorshError::InvalidArgument(
            "Input must have at least 2 dimensions for group normalization".to_string(),
        ));
    }

    let batch_size = input_shape[0];
    let channels = input_shape[1];

    if channels % num_groups != 0 {
        return Err(torsh_core::error::TorshError::InvalidArgument(format!(
            "Number of channels ({}) must be divisible by number of groups ({})",
            channels, num_groups
        )));
    }

    let channels_per_group = channels / num_groups;

    // Calculate total spatial dimensions
    let spatial_size: usize = input_shape[2..].iter().product();

    // Reshape to [batch, num_groups, channels_per_group, spatial]
    let reshaped = input.view(&[
        batch_size as i32,
        num_groups as i32,
        channels_per_group as i32,
        spatial_size as i32,
    ])?;

    // Normalize over channels_per_group and spatial dimensions (dims 2 and 3)
    // Compute mean and variance for each group
    let group_size = channels_per_group * spatial_size;
    let flattened = reshaped.view(&[(batch_size * num_groups) as i32, group_size as i32])?;

    let mean = flattened.mean(Some(&[1]), true)?;
    let centered = flattened.sub(&mean)?;
    let variance = centered.pow_scalar(2.0)?.mean(Some(&[1]), true)?;

    // Add epsilon for numerical stability
    let eps_tensor = torsh_tensor::creation::full(&[1], eps)?;
    let stable_var = variance.add(&eps_tensor)?;
    let inv_std = stable_var.rsqrt()?;

    // Normalize
    let normalized = centered.mul_op(&inv_std)?;

    // Reshape back to [batch, num_groups, channels_per_group, spatial]
    let normalized = normalized.view(&[
        batch_size as i32,
        num_groups as i32,
        channels_per_group as i32,
        spatial_size as i32,
    ])?;

    // Reshape to original shape
    let input_shape_i32: Vec<i32> = input_shape.iter().map(|&x| x as i32).collect();
    let mut result = normalized.view(&input_shape_i32)?;

    // Apply scale and shift
    if let Some(w) = weight {
        // Reshape weight for broadcasting
        let mut weight_shape = vec![1, channels];
        weight_shape.extend(vec![1; input_shape.len() - 2]);
        let weight_shape_i32: Vec<i32> = weight_shape.iter().map(|&x| x as i32).collect();
        let weight_expanded = w.view(&weight_shape_i32)?;
        result = result.mul_op(&weight_expanded)?;
    }
    if let Some(b) = bias {
        // Reshape bias for broadcasting
        let mut bias_shape = vec![1, channels];
        bias_shape.extend(vec![1; input_shape.len() - 2]);
        let bias_shape_i32: Vec<i32> = bias_shape.iter().map(|&x| x as i32).collect();
        let bias_expanded = b.view(&bias_shape_i32)?;
        result = result.add(&bias_expanded)?;
    }

    Ok(result)
}

// =============================================================================
// INSTANCE NORMALIZATION
// =============================================================================

/// Instance normalization
///
/// Normalizes each channel of each sample independently across spatial dimensions.
/// InstanceNorm is commonly used in style transfer and image generation tasks.
///
/// # Arguments
///
/// * `input` - Input tensor of shape [batch, channels, ...]
/// * `weight` - Optional learnable affine scale parameters (gamma)
/// * `bias` - Optional learnable affine shift parameters (beta)
/// * `eps` - Small value for numerical stability
pub fn instance_norm(
    input: &Tensor,
    weight: Option<&Tensor>,
    bias: Option<&Tensor>,
    eps: f32,
) -> Result<Tensor> {
    let input_shape_obj = input.shape();
    let input_shape = input_shape_obj.dims();

    if input_shape.len() < 3 {
        return Err(torsh_core::error::TorshError::InvalidArgument(
            "Input must have at least 3 dimensions for instance normalization".to_string(),
        ));
    }

    let batch_size = input_shape[0];
    let channels = input_shape[1];

    // Calculate total spatial dimensions
    let spatial_size: usize = input_shape[2..].iter().product();

    // Reshape to [batch * channels, spatial]
    // This allows us to normalize each instance (batch, channel pair) independently
    let reshaped = input.view(&[(batch_size * channels) as i32, spatial_size as i32])?;

    // Compute mean and variance for each instance
    let mean = reshaped.mean(Some(&[1]), true)?;
    let centered = reshaped.sub(&mean)?;
    let variance = centered.pow_scalar(2.0)?.mean(Some(&[1]), true)?;

    // Add epsilon for numerical stability
    let eps_tensor = torsh_tensor::creation::full(&[1], eps)?;
    let stable_var = variance.add(&eps_tensor)?;
    let inv_std = stable_var.rsqrt()?;

    // Normalize
    let normalized = centered.mul_op(&inv_std)?;

    // Reshape back to original shape
    let input_shape_i32: Vec<i32> = input_shape.iter().map(|&x| x as i32).collect();
    let mut result = normalized.view(&input_shape_i32)?;

    // Apply scale and shift
    if let Some(w) = weight {
        // Reshape weight for broadcasting [1, channels, 1, 1, ...]
        let mut weight_shape = vec![1, channels];
        weight_shape.extend(vec![1; input_shape.len() - 2]);
        let weight_shape_i32: Vec<i32> = weight_shape.iter().map(|&x| x as i32).collect();
        let weight_expanded = w.view(&weight_shape_i32)?;
        result = result.mul_op(&weight_expanded)?;
    }
    if let Some(b) = bias {
        // Reshape bias for broadcasting [1, channels, 1, 1, ...]
        let mut bias_shape = vec![1, channels];
        bias_shape.extend(vec![1; input_shape.len() - 2]);
        let bias_shape_i32: Vec<i32> = bias_shape.iter().map(|&x| x as i32).collect();
        let bias_expanded = b.view(&bias_shape_i32)?;
        result = result.add(&bias_expanded)?;
    }

    Ok(result)
}

// =============================================================================
// LOCAL RESPONSE NORMALIZATION
// =============================================================================

/// Local Response Normalization (LRN)
///
/// Implements local response normalization as used in AlexNet.
/// Normalizes across nearby channels at each spatial location.
///
/// # Arguments
/// * `input` - Input tensor [batch, channels, height, width]
/// * `size` - Number of neighboring channels to normalize across
/// * `alpha` - Multiplicative factor for normalization
/// * `beta` - Exponent for normalization
/// * `k` - Additive constant for numerical stability
///
/// # Formula
/// `output[i] = input[i] / (k + alpha * sum(input[j]^2))^beta`
/// where j ranges over \[i - size/2, i + size/2\] clamped to valid channels
pub fn local_response_norm(
    input: &Tensor,
    size: usize,
    alpha: f32,
    beta: f32,
    k: f32,
) -> Result<Tensor> {
    // LRN: output[b,c,h,w] = input[b,c,h,w] / (k + alpha * sum_adjacent_squares)^beta
    // where sum_adjacent_squares is the sum of squares of neighboring channels

    let input_shape_binding = input.shape();
    let input_shape = input_shape_binding.dims();

    if input_shape.len() != 4 {
        return Err(torsh_core::error::TorshError::InvalidArgument(
            "LRN requires 4D input [batch, channels, height, width]".to_string(),
        ));
    }

    let batch_size = input_shape[0];
    let channels = input_shape[1];
    let height = input_shape[2];
    let width = input_shape[3];

    let input_data = input.to_vec()?;
    let mut output_data = vec![0.0f32; input_data.len()];

    // Half window size (how many channels on each side to consider)
    let half_size = size / 2;

    // Process each element
    for b in 0..batch_size {
        for c in 0..channels {
            for h in 0..height {
                for w in 0..width {
                    // Calculate the range of channels to normalize over
                    let c_start = if c >= half_size { c - half_size } else { 0 };
                    let c_end = (c + half_size + 1).min(channels);

                    // Compute sum of squares across neighboring channels
                    let mut sum_squares = 0.0f32;
                    for c_neighbor in c_start..c_end {
                        let idx = b * channels * height * width
                            + c_neighbor * height * width
                            + h * width
                            + w;
                        sum_squares += input_data[idx] * input_data[idx];
                    }

                    // Apply LRN formula
                    let input_idx =
                        b * channels * height * width + c * height * width + h * width + w;
                    let scale = k + alpha * sum_squares;
                    output_data[input_idx] = input_data[input_idx] / scale.powf(beta);
                }
            }
        }
    }

    Tensor::from_vec(output_data, input_shape)
}

// =============================================================================
// SPECTRAL NORMALIZATION
// =============================================================================

/// Spectral normalization for weight matrices
///
/// Normalizes weights by their largest singular value to stabilize GAN training.
/// Uses power iteration to efficiently estimate the largest singular value.
///
/// # Arguments
/// * `weight` - Weight matrix to normalize [out_features, in_features]
/// * `u` - Left singular vector estimate (will be updated)
/// * `n_power_iterations` - Number of power iterations to perform
/// * `eps` - Small epsilon for numerical stability
///
/// # Returns
/// * Normalized weight matrix and updated u vector
pub fn spectral_norm(
    weight: &Tensor,
    u: &Tensor,
    n_power_iterations: usize,
    eps: f32,
) -> Result<(Tensor, Tensor)> {
    // Spectral normalization: W_sn = W / sigma(W)
    // where sigma(W) is the largest singular value
    //
    // Power iteration algorithm:
    // For i in 1..n_iterations:
    //   v = W^T @ u / ||W^T @ u||
    //   u = W @ v / ||W @ v||
    // sigma = u^T @ W @ v

    let weight_shape_binding = weight.shape();
    let weight_shape = weight_shape_binding.dims();

    if weight_shape.len() != 2 {
        return Err(torsh_core::error::TorshError::InvalidArgument(
            "Spectral normalization requires 2D weight matrix".to_string(),
        ));
    }

    let out_features = weight_shape[0];
    let in_features = weight_shape[1];

    let weight_data = weight.to_vec()?;
    let mut u_data = u.to_vec()?;

    // Ensure u has correct size
    if u_data.len() != out_features {
        return Err(torsh_core::error::TorshError::InvalidArgument(format!(
            "u vector must have size {}, got {}",
            out_features,
            u_data.len()
        )));
    }

    // Power iteration to find dominant singular vector
    for _ in 0..n_power_iterations {
        // v = W^T @ u
        let mut v_data = vec![0.0f32; in_features];
        for j in 0..in_features {
            let mut sum = 0.0f32;
            for i in 0..out_features {
                sum += weight_data[i * in_features + j] * u_data[i];
            }
            v_data[j] = sum;
        }

        // Normalize v: v = v / ||v||
        let v_norm = (v_data.iter().map(|&x| x * x).sum::<f32>()).sqrt() + eps;
        for v in v_data.iter_mut() {
            *v /= v_norm;
        }

        // u = W @ v
        for i in 0..out_features {
            let mut sum = 0.0f32;
            for j in 0..in_features {
                sum += weight_data[i * in_features + j] * v_data[j];
            }
            u_data[i] = sum;
        }

        // Normalize u: u = u / ||u||
        let u_norm = (u_data.iter().map(|&x| x * x).sum::<f32>()).sqrt() + eps;
        for u in u_data.iter_mut() {
            *u /= u_norm;
        }
    }

    // Compute sigma = u^T @ W @ v (final iteration)
    // First compute v = W^T @ u
    let mut v_data = vec![0.0f32; in_features];
    for j in 0..in_features {
        let mut sum = 0.0f32;
        for i in 0..out_features {
            sum += weight_data[i * in_features + j] * u_data[i];
        }
        v_data[j] = sum;
    }

    // Normalize v
    let v_norm = (v_data.iter().map(|&x| x * x).sum::<f32>()).sqrt() + eps;
    for v in v_data.iter_mut() {
        *v /= v_norm;
    }

    // Compute sigma = u^T @ W @ v
    let mut sigma = 0.0f32;
    for i in 0..out_features {
        let mut row_dot_v = 0.0f32;
        for j in 0..in_features {
            row_dot_v += weight_data[i * in_features + j] * v_data[j];
        }
        sigma += u_data[i] * row_dot_v;
    }

    // Normalize weight by sigma: W_sn = W / sigma
    let sigma_with_eps = sigma.max(eps); // Prevent division by zero
    let normalized_weight_data: Vec<f32> =
        weight_data.iter().map(|&w| w / sigma_with_eps).collect();

    let normalized_weight = Tensor::from_vec(normalized_weight_data, weight_shape)?;
    let new_u = Tensor::from_vec(u_data, &[out_features])?;

    Ok((normalized_weight, new_u))
}

// =============================================================================
// WEIGHT NORMALIZATION
// =============================================================================

/// Weight normalization
pub fn weight_norm(weight: &Tensor, g: &Tensor, _dim: i32) -> Result<Tensor> {
    // Weight normalization: w = g * v / ||v||
    // where v is the weight vector and g is a learnable scalar

    // Compute norm along dimension: sqrt(sum(x^2, dim))
    let squared = weight.pow(2.0)?;
    let sum_squared = squared.sum()?;
    let norm = sum_squared.sqrt()?;
    let normalized = weight.div(&norm)?;
    let result = normalized.mul_op(g)?;

    Ok(result)
}

// =============================================================================
// RMS NORMALIZATION
// =============================================================================

/// RMS normalization (Root Mean Square normalization)
pub fn rms_norm(input: &Tensor, weight: &Tensor, eps: f32) -> Result<Tensor> {
    // RMS normalization: x / sqrt(mean(x^2) + eps) * weight
    let squared = input.pow(2.0)?;
    let last_dim = input.shape().dims().len() - 1;
    let mean_squared = squared.mean(Some(&[last_dim]), true)?;
    let eps_tensor = torsh_tensor::creation::full_like(&mean_squared, eps)?;
    let rms = mean_squared.add(&eps_tensor)?.sqrt()?;
    let normalized = input.div(&rms)?;
    normalized.mul(weight)
}

// =============================================================================
// CONVENIENCE FUNCTIONS WITH STANDARDIZED API
// =============================================================================

/// Convenient normalization functions with standardized API
pub mod configured {
    use super::*;

    /// Batch normalization with configuration
    pub fn batch_norm_configured(
        input: &Tensor,
        weight: Option<&Tensor>,
        bias: Option<&Tensor>,
        running_mean: Option<&Tensor>,
        running_var: Option<&Tensor>,
        training: bool,
        momentum: f32,
        eps: f32,
        config: &FunctionalConfig,
    ) -> Result<Tensor> {
        batch_norm_2d_with_config(
            input,
            weight,
            bias,
            running_mean,
            running_var,
            training,
            momentum,
            eps,
            config,
        )
    }
}

// =============================================================================
// UTILITY FUNCTIONS
// =============================================================================

/// Calculate the number of features to normalize over
pub fn get_norm_features(_input_shape: &[usize], normalized_shape: &[usize]) -> usize {
    // For layer norm, this is the product of the normalized dimensions
    normalized_shape.iter().product()
}

/// Validate normalization parameters
pub fn validate_norm_params(
    input_shape: &[usize],
    normalized_shape: &[usize],
    eps: f32,
) -> Result<()> {
    if eps <= 0.0 {
        return Err(torsh_core::error::TorshError::InvalidArgument(
            "Epsilon must be positive".to_string(),
        ));
    }

    if normalized_shape.len() > input_shape.len() {
        return Err(torsh_core::error::TorshError::InvalidArgument(
            "Normalized shape cannot have more dimensions than input".to_string(),
        ));
    }

    // Check that normalized shape matches the last dimensions of input
    let input_suffix = &input_shape[input_shape.len() - normalized_shape.len()..];
    if input_suffix != normalized_shape {
        return Err(torsh_core::error::TorshError::InvalidArgument(format!(
            "Normalized shape {:?} doesn't match input shape suffix {:?}",
            normalized_shape, input_suffix
        )));
    }

    Ok(())
}

/// Create affine parameters for normalization layers
pub fn create_affine_params(
    shape: &[usize],
    init_weight: f32,
    init_bias: f32,
) -> Result<(Tensor, Tensor)> {
    let weight = torsh_tensor::creation::full(shape, init_weight)?;
    let bias = torsh_tensor::creation::full(shape, init_bias)?;
    Ok((weight, bias))
}

// =============================================================================
// TESTS
// =============================================================================

#[cfg(test)]
mod tests {
    use super::*;
    use approx::assert_relative_eq;

    #[test]
    fn test_layer_norm_basic() -> Result<()> {
        // Test basic layer normalization with a simple example
        // Input: [2, 3] - 2 samples, 3 features
        let input = Tensor::from_vec(
            vec![
                1.0, 2.0, 3.0, // Sample 1
                4.0, 5.0, 6.0, // Sample 2
            ],
            &[2, 3],
        )?;

        // Normalize over the last dimension (features)
        let output = layer_norm(&input, &[3], None, None, 1e-5)?;

        assert_eq!(output.shape().dims(), &[2, 3]);

        // For sample 1: mean = 2.0, std ≈ 0.8165
        // Normalized: [-1.2247, 0, 1.2247]
        // For sample 2: mean = 5.0, std ≈ 0.8165
        // Normalized: [-1.2247, 0, 1.2247]

        let output_data = output.to_vec()?;

        // Check that mean is approximately 0 for each sample
        let sample1_mean = (output_data[0] + output_data[1] + output_data[2]) / 3.0;
        let sample2_mean = (output_data[3] + output_data[4] + output_data[5]) / 3.0;

        assert_relative_eq!(sample1_mean, 0.0, epsilon = 1e-5);
        assert_relative_eq!(sample2_mean, 0.0, epsilon = 1e-5);

        // Check that variance is approximately 1 for each sample
        let sample1_var =
            (output_data[0].powi(2) + output_data[1].powi(2) + output_data[2].powi(2)) / 3.0;
        let sample2_var =
            (output_data[3].powi(2) + output_data[4].powi(2) + output_data[5].powi(2)) / 3.0;

        assert_relative_eq!(sample1_var, 1.0, epsilon = 1e-4);
        assert_relative_eq!(sample2_var, 1.0, epsilon = 1e-4);

        Ok(())
    }

    #[test]
    fn test_layer_norm_with_affine() -> Result<()> {
        // Test layer normalization with learnable affine parameters
        let input = Tensor::from_vec(vec![1.0, 2.0, 3.0, 4.0], &[1, 4])?;

        // Create weight (scale) and bias (shift)
        let weight = Tensor::from_vec(vec![2.0, 2.0, 2.0, 2.0], &[4])?;
        let bias = Tensor::from_vec(vec![0.5, 0.5, 0.5, 0.5], &[4])?;

        let output = layer_norm(&input, &[4], Some(&weight), Some(&bias), 1e-5)?;

        let output_data = output.to_vec()?;

        // After normalization (mean=0, var=1), then scale by 2 and shift by 0.5
        // The normalized values should be scaled and shifted
        for &val in output_data.iter() {
            // Values should be centered around 0.5 (bias) with scale factor 2
            assert!(val.abs() < 10.0); // Sanity check
        }

        Ok(())
    }

    #[test]
    fn test_layer_norm_multidimensional() -> Result<()> {
        // Test layer normalization on higher dimensional tensor (like transformer outputs)
        // Shape: [batch=2, seq_len=3, hidden_dim=4]
        let input = Tensor::from_vec(
            vec![
                // Batch 0
                1.0, 2.0, 3.0, 4.0, // Position 0
                2.0, 3.0, 4.0, 5.0, // Position 1
                3.0, 4.0, 5.0, 6.0, // Position 2
                // Batch 1
                4.0, 5.0, 6.0, 7.0, // Position 0
                5.0, 6.0, 7.0, 8.0, // Position 1
                6.0, 7.0, 8.0, 9.0, // Position 2
            ],
            &[2, 3, 4],
        )?;

        // Normalize over the hidden dimension
        let output = layer_norm(&input, &[4], None, None, 1e-5)?;

        assert_eq!(output.shape().dims(), &[2, 3, 4]);

        let output_data = output.to_vec()?;

        // Check that each position has mean ≈ 0 and variance ≈ 1
        for batch in 0..2 {
            for pos in 0..3 {
                let start_idx = (batch * 3 + pos) * 4;
                let slice = &output_data[start_idx..start_idx + 4];

                let mean: f32 = slice.iter().sum::<f32>() / 4.0;
                let var: f32 = slice.iter().map(|x| x.powi(2)).sum::<f32>() / 4.0;

                assert_relative_eq!(mean, 0.0, epsilon = 1e-4);
                assert_relative_eq!(var, 1.0, epsilon = 1e-4);
            }
        }

        Ok(())
    }

    #[test]
    fn test_layer_norm_single_value() -> Result<()> {
        // Edge case: normalize over a single dimension
        let input = Tensor::from_vec(vec![5.0, 10.0, 15.0], &[3, 1])?;

        let output = layer_norm(&input, &[1], None, None, 1e-5)?;

        let output_data = output.to_vec()?;

        // With a single value per sample, the normalized value should be 0
        // (after centering by the mean)
        for &val in output_data.iter() {
            assert_relative_eq!(val, 0.0, epsilon = 1e-5);
        }

        Ok(())
    }

    #[test]
    fn test_layer_norm_zeros_input() -> Result<()> {
        // Test with all zeros input
        let input = Tensor::from_vec(vec![0.0, 0.0, 0.0, 0.0], &[1, 4])?;

        let output = layer_norm(&input, &[4], None, None, 1e-5)?;

        let output_data = output.to_vec()?;

        // With zero variance, output should be zeros (0 - 0) / eps^0.5 ≈ 0
        for &val in output_data.iter() {
            assert!(val.abs() < 1e-2); // Should be very close to 0
        }

        Ok(())
    }

    #[test]
    fn test_layer_norm_consistency() -> Result<()> {
        // Test that layer_norm produces same results as layer_norm_enhanced
        let input = Tensor::from_vec(vec![1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0], &[2, 4])?;

        let output1 = layer_norm(&input, &[4], None, None, 1e-5)?;
        let output2 = layer_norm_enhanced(&input, &[4], None, None, 1e-5)?;

        let data1 = output1.to_vec()?;
        let data2 = output2.to_vec()?;

        assert_eq!(data1.len(), data2.len());
        for (v1, v2) in data1.iter().zip(data2.iter()) {
            assert_relative_eq!(v1, v2, epsilon = 1e-6);
        }

        Ok(())
    }

    #[test]
    fn test_group_norm_basic() -> Result<()> {
        // Test basic group normalization
        // Input shape: [batch=2, channels=4, height=3, width=3]
        // num_groups=2 means 2 channels per group
        let batch_size = 2;
        let channels = 4;
        let height = 3;
        let width = 3;
        let num_groups = 2;
        let channels_per_group = channels / num_groups;

        let input_data: Vec<f32> = (0..batch_size * channels * height * width)
            .map(|i| (i as f32) * 0.1)
            .collect();
        let input = Tensor::from_vec(input_data, &[batch_size, channels, height, width])?;

        let output = group_norm(&input, num_groups, None, None, 1e-5)?;

        assert_eq!(
            output.shape().dims(),
            &[batch_size, channels, height, width]
        );

        // Verify normalization for first group of first sample
        let output_data = output.to_vec()?;

        // For group norm, each group should have mean ≈ 0 and variance ≈ 1
        // First group is channels 0-1, spatial dims 0-8 (9 spatial elements)
        let group_size = channels_per_group * height * width;
        let first_group_start = 0;
        let first_group_end = group_size;
        let first_group: Vec<f32> = output_data[first_group_start..first_group_end].to_vec();

        let mean: f32 = first_group.iter().sum::<f32>() / first_group.len() as f32;
        let variance: f32 =
            first_group.iter().map(|&x| (x - mean).powi(2)).sum::<f32>() / first_group.len() as f32;

        assert_relative_eq!(mean, 0.0, epsilon = 1e-4);
        assert_relative_eq!(variance, 1.0, epsilon = 1e-3);

        Ok(())
    }

    #[test]
    fn test_group_norm_with_affine() -> Result<()> {
        // Test group normalization with learnable affine parameters
        let batch_size = 1;
        let channels = 6;
        let spatial_dim = 4;
        let num_groups = 3; // 2 channels per group

        let input_data: Vec<f32> = (0..batch_size * channels * spatial_dim)
            .map(|i| (i as f32) * 0.2 + 1.0)
            .collect();
        let input = Tensor::from_vec(input_data, &[batch_size, channels, spatial_dim])?;

        // Create weight (scale) and bias parameters
        let weight = Tensor::from_vec(vec![2.0, 1.5, 1.0, 0.5, 2.5, 3.0], &[channels])?;
        let bias = Tensor::from_vec(vec![0.1, -0.1, 0.2, -0.2, 0.3, -0.3], &[channels])?;

        let output = group_norm(&input, num_groups, Some(&weight), Some(&bias), 1e-5)?;

        assert_eq!(output.shape().dims(), &[batch_size, channels, spatial_dim]);

        // Output should be scaled and shifted according to weight and bias
        let output_data = output.to_vec()?;
        assert!(output_data.len() == batch_size * channels * spatial_dim);

        Ok(())
    }

    #[test]
    fn test_group_norm_invalid_groups() {
        // Test error handling when channels not divisible by num_groups
        let input = Tensor::from_vec(vec![1.0; 2 * 5 * 3 * 3], &[2, 5, 3, 3])
            .expect("Tensor should succeed");

        let result = group_norm(&input, 3, None, None, 1e-5); // 5 channels, 3 groups
        assert!(result.is_err());
    }

    #[test]
    fn test_instance_norm_basic() -> Result<()> {
        // Test basic instance normalization
        // Input shape: [batch=2, channels=3, spatial=4]
        let batch_size = 2;
        let channels = 3;
        let spatial_size = 4;

        let input_data: Vec<f32> = (0..batch_size * channels * spatial_size)
            .map(|i| (i as f32) * 0.5 + 2.0)
            .collect();
        let input = Tensor::from_vec(input_data, &[batch_size, channels, spatial_size])?;

        let output = instance_norm(&input, None, None, 1e-5)?;

        assert_eq!(output.shape().dims(), &[batch_size, channels, spatial_size]);

        // For instance norm, each (batch, channel) instance should have mean ≈ 0, variance ≈ 1
        let output_data = output.to_vec()?;

        // Check first instance (batch=0, channel=0)
        let instance_start = 0;
        let instance_end = spatial_size;
        let first_instance: Vec<f32> = output_data[instance_start..instance_end].to_vec();

        let mean: f32 = first_instance.iter().sum::<f32>() / first_instance.len() as f32;
        let variance: f32 = first_instance
            .iter()
            .map(|&x| (x - mean).powi(2))
            .sum::<f32>()
            / first_instance.len() as f32;

        assert_relative_eq!(mean, 0.0, epsilon = 1e-4);
        assert_relative_eq!(variance, 1.0, epsilon = 1e-3);

        Ok(())
    }

    #[test]
    fn test_instance_norm_with_affine() -> Result<()> {
        // Test instance normalization with learnable parameters
        let batch_size = 2;
        let channels = 4;
        let height = 3;
        let width = 3;

        let input_data: Vec<f32> = (0..batch_size * channels * height * width)
            .map(|i| (i as f32) * 0.1)
            .collect();
        let input = Tensor::from_vec(input_data, &[batch_size, channels, height, width])?;

        let weight = Tensor::from_vec(vec![1.5, 2.0, 0.5, 3.0], &[channels])?;
        let bias = Tensor::from_vec(vec![0.2, -0.2, 0.1, -0.1], &[channels])?;

        let output = instance_norm(&input, Some(&weight), Some(&bias), 1e-5)?;

        assert_eq!(
            output.shape().dims(),
            &[batch_size, channels, height, width]
        );

        // Output should be affected by weight and bias
        let output_data = output.to_vec()?;
        assert!(output_data.len() == batch_size * channels * height * width);

        Ok(())
    }

    #[test]
    fn test_instance_norm_2d_image() -> Result<()> {
        // Test instance norm on 2D image data
        let batch_size = 1;
        let channels = 3; // RGB
        let height = 4;
        let width = 4;

        let input_data: Vec<f32> = (0..batch_size * channels * height * width)
            .map(|i| (i as f32) / 10.0)
            .collect();
        let input = Tensor::from_vec(input_data, &[batch_size, channels, height, width])?;

        let output = instance_norm(&input, None, None, 1e-5)?;

        assert_eq!(
            output.shape().dims(),
            &[batch_size, channels, height, width]
        );

        Ok(())
    }

    #[test]
    fn test_instance_norm_invalid_dims() {
        // Test error handling for insufficient dimensions
        let input =
            Tensor::from_vec(vec![1.0, 2.0, 3.0, 4.0], &[2, 2]).expect("Tensor should succeed");
        let result = instance_norm(&input, None, None, 1e-5);
        assert!(result.is_err());
    }

    #[test]
    fn test_weight_norm_basic() -> Result<()> {
        // Test basic weight normalization
        // Weight norm: w = g * v / ||v||
        let weight = Tensor::from_vec(
            vec![3.0, 4.0], // L2 norm = 5.0
            &[2],
        )?;
        let g = Tensor::from_vec(vec![10.0], &[1])?;

        let output = weight_norm(&weight, &g, 0)?;

        let output_data = output.to_vec()?;

        // Expected: [3.0/5.0 * 10.0, 4.0/5.0 * 10.0] = [6.0, 8.0]
        assert_relative_eq!(output_data[0], 6.0, epsilon = 1e-5);
        assert_relative_eq!(output_data[1], 8.0, epsilon = 1e-5);

        Ok(())
    }

    #[test]
    fn test_weight_norm_matrix() -> Result<()> {
        // Test weight normalization on a matrix
        let weight = Tensor::from_vec(vec![1.0, 2.0, 3.0, 4.0], &[2, 2])?;
        let g = Tensor::from_vec(vec![5.0], &[1])?;

        let output = weight_norm(&weight, &g, 0)?;

        assert_eq!(output.shape().dims(), &[2, 2]);

        // Check normalization occurred
        let output_data = output.to_vec()?;
        assert!(output_data.iter().all(|&x| x != 0.0));

        Ok(())
    }

    #[test]
    fn test_weight_norm_preserve_direction() -> Result<()> {
        // Weight normalization should preserve direction, only normalize magnitude
        let weight = Tensor::from_vec(vec![6.0, 8.0], &[2])?; // L2 norm = 10.0
        let g = Tensor::from_vec(vec![20.0], &[1])?;

        let output = weight_norm(&weight, &g, 0)?;
        let output_data = output.to_vec()?;

        // Normalized: [6/10, 8/10] * 20 = [12.0, 16.0]
        assert_relative_eq!(output_data[0], 12.0, epsilon = 1e-4);
        assert_relative_eq!(output_data[1], 16.0, epsilon = 1e-4);

        // Verify direction is preserved (ratio should be same as input)
        let input_ratio = 6.0 / 8.0;
        let output_ratio = output_data[0] / output_data[1];
        assert_relative_eq!(input_ratio, output_ratio, epsilon = 1e-5);

        Ok(())
    }
}