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

use crate::numeric::{Numeric, NumericRef};
use crate::tensors::indexing::{TensorAccess, TensorReferenceIterator};
use crate::tensors::views::{TensorIndex, TensorRef, TensorView};
use crate::tensors::{Dimension, Tensor};

use std::ops::{Add, Div, Mul, Sub};

// Common tensor equality definition (list of dimension names must match, and elements must match)
#[inline]
pub(crate) fn tensor_equality<T, S1, S2, const D: usize>(left: &S1, right: &S2) -> bool
where
    T: PartialEq,
    S1: TensorRef<T, D>,
    S2: TensorRef<T, D>,
{
    left.view_shape() == right.view_shape()
        && TensorReferenceIterator::from(left)
            .zip(TensorReferenceIterator::from(right))
            .all(|(x, y)| x == y)
}

// Common tensor similarity definition (sets of dimensions must match, and elements using a
// common dimension order must match - one tensor could be reordered to make them equal if
// they are similar but not equal).
#[inline]
pub(crate) fn tensor_similarity<T, S1, S2, const D: usize>(left: &S1, right: &S2) -> bool
where
    T: PartialEq,
    S1: TensorRef<T, D>,
    S2: TensorRef<T, D>,
{
    use crate::tensors::dimensions::names_of;
    let left_shape = left.view_shape();
    let access_order = names_of(&left_shape);
    let left_access = TensorAccess::from_source_order(left);
    let right_access = match TensorAccess::try_from(right, access_order) {
        Ok(right_access) => right_access,
        Err(_) => return false,
    };
    // left_access.shape() is equal to left_shape so no need to compute it
    if left_shape != right_access.shape() {
        return false;
    }
    left_access
        .iter_reference()
        .zip(right_access.iter_reference())
        .all(|(x, y)| x == y)
}

/**
 * Two Tensors are equal if they have an equal shape and all their elements are equal
 *
 * ```
 * use easy_ml::tensors::Tensor;
 * let one = Tensor::from([("a", 2), ("b", 3)], vec![
 *     1, 2, 3,
 *     4, 5, 6
 * ]);
 * let two = Tensor::from([("b", 3), ("a", 2)], vec![
 *     1, 4,
 *     2, 5,
 *     3, 6
 * ]);
 * let three = Tensor::from([("b", 2), ("a", 3)], vec![
 *     1, 2, 3,
 *     4, 5, 6
 * ]);
 * assert_eq!(one, one);
 * assert_eq!(two, two);
 * assert_eq!(three, three);
 * assert_ne!(one, two); // similar, but dimension order is not the same
 * assert_eq!(one, two.reorder(["a", "b"])); // reordering b to the order of a makes it equal
 * assert_ne!(one, three); // elementwise data is same, but dimensions are not equal
 * assert_ne!(two, three); // dimensions are not equal, and elementwise data is not the same
 * ```
 */
impl<T: PartialEq, const D: usize> PartialEq for Tensor<T, D> {
    fn eq(&self, other: &Self) -> bool {
        tensor_equality(self, other)
    }
}

/**
 * Two TensorViews are equal if they have an equal shape and all their elements are equal.
 * Differences in their source types are ignored.
 */
impl<T, S1, S2, const D: usize> PartialEq<TensorView<T, S2, D>> for TensorView<T, S1, D>
where
    T: PartialEq,
    S1: TensorRef<T, D>,
    S2: TensorRef<T, D>,
{
    fn eq(&self, other: &TensorView<T, S2, D>) -> bool {
        tensor_equality(self.source_ref(), other.source_ref())
    }
}

/**
 * A Tensor and a TensorView can be compared for equality. The tensors are equal if they
 * have an equal shape and all their elements are equal.
 */
impl<T, S, const D: usize> PartialEq<TensorView<T, S, D>> for Tensor<T, D>
where
    T: PartialEq,
    S: TensorRef<T, D>,
{
    fn eq(&self, other: &TensorView<T, S, D>) -> bool {
        tensor_equality(self, other.source_ref())
    }
}

/**
 * A TensorView and a Tensor can be compared for equality. The tensors are equal if they
 * have an equal shape and all their elements are equal.
 */
impl<T, S, const D: usize> PartialEq<Tensor<T, D>> for TensorView<T, S, D>
where
    T: PartialEq,
    S: TensorRef<T, D>,
{
    fn eq(&self, other: &Tensor<T, D>) -> bool {
        tensor_equality(self.source_ref(), other)
    }
}

/**
 * Similarity comparisons. This is a looser comparison than [PartialEq],
 * but anything which returns true for [PartialEq::eq] will also return true
 * for [Similar::similar].
 *
 * This trait is sealed and cannot be implemented for types outside this crate.
 */
pub trait Similar<Rhs: ?Sized = Self>: private::Sealed {
    /**
     * Tests if two values are similar. This is a looser comparison than [PartialEq],
     * but anything which is PartialEq is also similar.
     */
    #[must_use]
    fn similar(&self, other: &Rhs) -> bool;
}

mod private {
    use crate::tensors::views::{TensorRef, TensorView};
    use crate::tensors::Tensor;

    pub trait Sealed<Rhs: ?Sized = Self> {}

    impl<T: PartialEq, const D: usize> Sealed for Tensor<T, D> {}
    impl<T, S1, S2, const D: usize> Sealed<TensorView<T, S2, D>> for TensorView<T, S1, D>
    where
        T: PartialEq,
        S1: TensorRef<T, D>,
        S2: TensorRef<T, D>,
    {
    }
    impl<T, S, const D: usize> Sealed<TensorView<T, S, D>> for Tensor<T, D>
    where
        T: PartialEq,
        S: TensorRef<T, D>,
    {
    }
    impl<T, S, const D: usize> Sealed<Tensor<T, D>> for TensorView<T, S, D>
    where
        T: PartialEq,
        S: TensorRef<T, D>,
    {
    }
}

/**
 * Two Tensors are similar if they have the same **set** of dimension names and lengths even
 * if two shapes are not in the same order, and all their elements are equal
 * when comparing both tensors via the same dimension ordering.
 *
 * Elements are compared by iterating through the right most index of the left tensor
 * and the corresponding index in the right tensor when [accessed](TensorAccess) using
 * the dimension order of the left. When both tensors have their dimensions in the same
 * order, this corresponds to the right most index of the right tensor as well, and will
 * be an elementwise comparison.
 *
 * If two Tensors are similar, you can reorder one of them to the dimension order of the
 * other and they will be equal.
 *
 * ```
 * use easy_ml::tensors::Tensor;
 * use easy_ml::tensors::operations::Similar;
 * let one = Tensor::from([("a", 2), ("b", 3)], vec![
 *     1, 2, 3,
 *     4, 5, 6
 * ]);
 * let two = Tensor::from([("b", 3), ("a", 2)], vec![
 *     1, 4,
 *     2, 5,
 *     3, 6
 * ]);
 * let three = Tensor::from([("b", 2), ("a", 3)], vec![
 *     1, 2, 3,
 *     4, 5, 6
 * ]);
 * assert!(one.similar(&one));
 * assert!(two.similar(&two));
 * assert!(three.similar(&three));
 * assert!(one.similar(&two)); // similar, dimension order is not the same
 * assert!(!one.similar(&three)); // elementwise data is same, but dimensions are not equal
 * assert!(!two.similar(&three)); // dimension lengths are not the same, and elementwise data is not the same
 * ```
 */
impl<T: PartialEq, const D: usize> Similar for Tensor<T, D> {
    fn similar(&self, other: &Tensor<T, D>) -> bool {
        tensor_similarity(self, other)
    }
}

/**
 * Two TensorViews are similar if they have the same **set** of dimension names and
 * lengths even if two shapes are not in the same order, and all their elements are equal
 * when comparing both tensors via the same dimension ordering.
 * Differences in their source types are ignored.
 */
impl<T, S1, S2, const D: usize> Similar<TensorView<T, S2, D>> for TensorView<T, S1, D>
where
    T: PartialEq,
    S1: TensorRef<T, D>,
    S2: TensorRef<T, D>,
{
    fn similar(&self, other: &TensorView<T, S2, D>) -> bool {
        tensor_similarity(self.source_ref(), other.source_ref())
    }
}

/**
 * A Tensor and a TensorView can be compared for similarity. The tensors are similar if they
 * have the same **set** of dimension names and lengths even if two shapes are not in the same
 * order, and all their elements are equal when comparing both tensors via the same dimension
 * ordering.
 */
impl<T, S, const D: usize> Similar<TensorView<T, S, D>> for Tensor<T, D>
where
    T: PartialEq,
    S: TensorRef<T, D>,
{
    fn similar(&self, other: &TensorView<T, S, D>) -> bool {
        tensor_similarity(self, other.source_ref())
    }
}

/**
 * A TensorView and a Tensor can be compared for similarity. The tensors are similar if they
 * have the same **set** of dimension names and lengths even if two shapes are not in the same
 * order, and all their elements are equal when comparing both tensors via the same dimension
 * ordering.
 */
impl<T, S, const D: usize> Similar<Tensor<T, D>> for TensorView<T, S, D>
where
    T: PartialEq,
    S: TensorRef<T, D>,
{
    fn similar(&self, other: &Tensor<T, D>) -> bool {
        tensor_similarity(self.source_ref(), other)
    }
}

#[track_caller]
#[inline]
fn assert_same_dimensions<const D: usize>(
    left_shape: [(Dimension, usize); D],
    right_shape: [(Dimension, usize); D],
) {
    if left_shape != right_shape {
        panic!(
            "Dimensions of left and right tensors are not the same: (left: {:?}, right: {:?})",
            left_shape, right_shape
        );
    }
}

#[track_caller]
#[inline]
fn tensor_view_addition_iter<'l, 'r, T, S1, S2, const D: usize>(
    left_iter: S1,
    left_shape: [(Dimension, usize); D],
    right_iter: S2,
    right_shape: [(Dimension, usize); D],
) -> Tensor<T, D>
where
    T: Numeric,
    T: 'l,
    T: 'r,
    for<'a> &'a T: NumericRef<T>,
    S1: Iterator<Item = &'l T>,
    S2: Iterator<Item = &'r T>,
{
    assert_same_dimensions(left_shape, right_shape);
    // LxM + LxM -> LxM
    Tensor::from(
        left_shape,
        left_iter.zip(right_iter).map(|(x, y)| x + y).collect(),
    )
}

#[track_caller]
#[inline]
fn tensor_view_subtraction_iter<'l, 'r, T, S1, S2, const D: usize>(
    left_iter: S1,
    left_shape: [(Dimension, usize); D],
    right_iter: S2,
    right_shape: [(Dimension, usize); D],
) -> Tensor<T, D>
where
    T: Numeric,
    T: 'l,
    T: 'r,
    for<'a> &'a T: NumericRef<T>,
    S1: Iterator<Item = &'l T>,
    S2: Iterator<Item = &'r T>,
{
    assert_same_dimensions(left_shape, right_shape);
    // LxM - LxM -> LxM
    Tensor::from(
        left_shape,
        left_iter.zip(right_iter).map(|(x, y)| x - y).collect(),
    )
}

/**
 * Computes the dot product (also known as scalar product) on two equal length iterators,
 * yielding a scalar which is the sum of the products of each pair in the iterators.
 *
 * https://en.wikipedia.org/wiki/Dot_product
 */
#[inline]
pub(crate) fn scalar_product<'l, 'r, T, S1, S2>(left_iter: S1, right_iter: S2) -> T
where
    T: Numeric,
    T: 'l,
    T: 'r,
    for<'a> &'a T: NumericRef<T>,
    S1: Iterator<Item = &'l T>,
    S2: Iterator<Item = &'r T>,
{
    // Using reduce instead of sum because when T is a Record type adding the first element to 0
    // has a minor cost on the WengertList.
    left_iter
        .zip(right_iter)
        .map(|(x, y)| x * y)
        .reduce(|x, y| x + y)
        .unwrap() // this won't be called on 0 length iterators
}

#[track_caller]
#[inline]
fn tensor_view_vector_product_iter<'l, 'r, T, S1, S2>(
    left_iter: S1,
    left_shape: [(Dimension, usize); 1],
    right_iter: S2,
    right_shape: [(Dimension, usize); 1],
) -> T
where
    T: Numeric,
    T: 'l,
    T: 'r,
    for<'a> &'a T: NumericRef<T>,
    S1: Iterator<Item = &'l T>,
    S2: Iterator<Item = &'r T>,
{
    if left_shape[0].1 != right_shape[0].1 {
        panic!(
            "Dimension lengths of left and right tensors are not the same: (left: {:?}, right: {:?})",
            left_shape, right_shape
        );
    }
    // [a,b,c] . [d,e,f] -> a*d + b*e + c*f
    scalar_product::<T, S1, S2>(left_iter, right_iter)
}

#[track_caller]
#[inline]
fn tensor_view_matrix_product<T, S1, S2>(left: S1, right: S2) -> Tensor<T, 2>
where
    T: Numeric,
    for<'a> &'a T: NumericRef<T>,
    S1: TensorRef<T, 2>,
    S2: TensorRef<T, 2>,
{
    let left_shape = left.view_shape();
    let right_shape = right.view_shape();
    if left_shape[1].1 != right_shape[0].1 {
        panic!(
            "Mismatched tensors, left is {:?}, right is {:?}, * is only defined for MxN * NxL dimension lengths",
            left.view_shape(), right.view_shape()
        );
    }
    if left_shape[0].0 == right_shape[1].0 {
        panic!(
            "Matrix multiplication of tensors with shapes left {:?} and right {:?} would \
             create duplicate dimension names as the shape {:?}. Rename one or both of the \
             dimension names in the input to prevent this. * is defined as MxN * NxL = MxL",
            left_shape,
            right_shape,
            [left_shape[0], right_shape[1]]
        )
    }
    // LxM * MxN -> LxN
    // [a,b,c; d,e,f] * [g,h; i,j; k,l] -> [a*g+b*i+c*k, a*h+b*j+c*l; d*g+e*i+f*k, d*h+e*j+f*l]
    // Matrix multiplication gives us another Matrix where each element [i,j] is the dot product
    // of the i'th row in the left matrix and the j'th column in the right matrix.
    let mut tensor = Tensor::empty([left.view_shape()[0], right.view_shape()[1]], T::zero());
    for ([i, j], x) in tensor.iter_reference_mut().with_index() {
        // Select the i'th row in the left tensor to give us a vector
        let left = TensorIndex::from(&left, [(left.view_shape()[0].0, i)]);
        // Select the j'th column in the right tensor to give us a vector
        let right = TensorIndex::from(&right, [(right.view_shape()[1].0, j)]);
        // Since we checked earlier that we have MxN * NxL these two vectors have the same length.
        *x = scalar_product::<T, _, _>(
            TensorReferenceIterator::from(&left),
            TensorReferenceIterator::from(&right),
        )
    }
    tensor
}

#[test]
fn test_matrix_product() {
    #[rustfmt::skip]
    let left = Tensor::from([("r", 2), ("c", 3)], vec![
        1, 2, 3,
        4, 5, 6
    ]);
    #[rustfmt::skip]
    let right = Tensor::from([("r", 3), ("c", 2)], vec![
        10, 11,
        12, 13,
        14, 15
    ]);
    let result = tensor_view_matrix_product::<i32, _, _>(left, right);
    #[rustfmt::skip]
    assert_eq!(
        result,
        Tensor::from(
            [("r", 2), ("c", 2)],
            vec![
                1 * 10 + 2 * 12 + 3 * 14, 1 * 11 + 2 * 13 + 3 * 15,
                4 * 10 + 5 * 12 + 6 * 14, 4 * 11 + 5 * 13 + 6 * 15
            ]
        )
    );
}

// Tensor multiplication (⊗) gives another Tensor where each element [i,j,k] is the dot product of
// the [i,j,*] vector in the left tensor and the [*,j,k] vector in the right tensor???

macro_rules! tensor_view_reference_tensor_view_reference_operation_iter {
    (impl $op:tt for TensorView { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S1, S2, const D: usize> $op<&TensorView<T, S2, D>> for &TensorView<T, S1, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S1: TensorRef<T, D>,
            S2: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &TensorView<T, S2, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.iter_reference(),
                    self.shape(),
                    rhs.iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_view_reference_tensor_view_reference_operation {
    (impl $op:tt for TensorView $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S1, S2> $op<&TensorView<T, S2, $d>> for &TensorView<T, S1, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S1: TensorRef<T, $d>,
            S2: TensorRef<T, $d>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &TensorView<T, S2, $d>) -> Self::Output {
                $implementation::<T, _, _>(self.source_ref(), rhs.source_ref())
            }
        }
    };
}

tensor_view_reference_tensor_view_reference_operation_iter!(impl Add for TensorView { fn add } tensor_view_addition_iter "Elementwise addition for two referenced tensor views");
tensor_view_reference_tensor_view_reference_operation_iter!(impl Sub for TensorView { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for two referenced tensor views");
tensor_view_reference_tensor_view_reference_operation!(impl Mul for TensorView 2 { fn mul } tensor_view_matrix_product "Matrix multiplication of two referenced 2-dimensional tensors");

macro_rules! tensor_view_reference_tensor_view_value_operation_iter {
    (impl $op:tt for TensorView { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S1, S2, const D: usize> $op<TensorView<T, S2, D>> for &TensorView<T, S1, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S1: TensorRef<T, D>,
            S2: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: TensorView<T, S2, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.iter_reference(),
                    self.shape(),
                    rhs.iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_view_reference_tensor_view_value_operation {
    (impl $op:tt for TensorView $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S1, S2> $op<TensorView<T, S2, $d>> for &TensorView<T, S1, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S1: TensorRef<T, $d>,
            S2: TensorRef<T, $d>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: TensorView<T, S2, $d>) -> Self::Output {
                $implementation::<T, _, _>(self.source_ref(), rhs.source_ref())
            }
        }
    };
}

tensor_view_reference_tensor_view_value_operation_iter!(impl Add for TensorView { fn add } tensor_view_addition_iter "Elementwise addition for two tensor views with one referenced");
tensor_view_reference_tensor_view_value_operation_iter!(impl Sub for TensorView { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for two tensor views with one referenced");
tensor_view_reference_tensor_view_value_operation!(impl Mul for TensorView 2 { fn mul } tensor_view_matrix_product "Matrix multiplication of two 2-dimensional tensors with one referenced");

macro_rules! tensor_view_value_tensor_view_reference_operation_iter {
    (impl $op:tt for TensorView { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S1, S2, const D: usize> $op<&TensorView<T, S2, D>> for TensorView<T, S1, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S1: TensorRef<T, D>,
            S2: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &TensorView<T, S2, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.iter_reference(),
                    self.shape(),
                    rhs.iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_view_value_tensor_view_reference_operation {
    (impl $op:tt for TensorView $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S1, S2> $op<&TensorView<T, S2, $d>> for TensorView<T, S1, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S1: TensorRef<T, $d>,
            S2: TensorRef<T, $d>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &TensorView<T, S2, $d>) -> Self::Output {
                $implementation::<T, _, _>(self.source_ref(), rhs.source_ref())
            }
        }
    };
}

tensor_view_value_tensor_view_reference_operation_iter!(impl Add for TensorView { fn add } tensor_view_addition_iter "Elementwise addition for two tensor views with one referenced");
tensor_view_value_tensor_view_reference_operation_iter!(impl Sub for TensorView { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for two tensor views with one referenced");
tensor_view_value_tensor_view_reference_operation!(impl Mul for TensorView 2 { fn mul } tensor_view_matrix_product "Matrix multiplication of two 2-dimensional tensors with one referenced");

macro_rules! tensor_view_value_tensor_view_value_operation_iter {
    (impl $op:tt for TensorView { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S1, S2, const D: usize> $op<TensorView<T, S2, D>> for TensorView<T, S1, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S1: TensorRef<T, D>,
            S2: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: TensorView<T, S2, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.iter_reference(),
                    self.shape(),
                    rhs.iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_view_value_tensor_view_value_operation {
    (impl $op:tt for TensorView $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S1, S2> $op<TensorView<T, S2, $d>> for TensorView<T, S1, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S1: TensorRef<T, $d>,
            S2: TensorRef<T, $d>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: TensorView<T, S2, $d>) -> Self::Output {
                $implementation::<T, _, _>(self.source_ref(), rhs.source_ref())
            }
        }
    };
}

tensor_view_value_tensor_view_value_operation_iter!(impl Add for TensorView { fn add } tensor_view_addition_iter "Elementwise addition for two tensor views");
tensor_view_value_tensor_view_value_operation_iter!(impl Sub for TensorView { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for two tensor views");
tensor_view_value_tensor_view_value_operation!(impl Mul for TensorView 2 { fn mul } tensor_view_matrix_product "Matrix multiplication of two 2-dimensional tensors");

macro_rules! tensor_view_reference_tensor_reference_operation_iter {
    (impl $op:tt for TensorView { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S, const D: usize> $op<&Tensor<T, D>> for &TensorView<T, S, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &Tensor<T, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.iter_reference(),
                    self.shape(),
                    rhs.direct_iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_view_reference_tensor_reference_operation {
    (impl $op:tt for TensorView $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S> $op<&Tensor<T, $d>> for &TensorView<T, S, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, $d>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &Tensor<T, $d>) -> Self::Output {
                $implementation::<T, _, _>(self.source_ref(), rhs)
            }
        }
    };
}

tensor_view_reference_tensor_reference_operation_iter!(impl Add for TensorView { fn add } tensor_view_addition_iter "Elementwise addition for a referenced tensor view and a referenced tensor");
tensor_view_reference_tensor_reference_operation_iter!(impl Sub for TensorView { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for a referenced tensor view and a referenced tensor");
tensor_view_reference_tensor_reference_operation!(impl Mul for TensorView 2 { fn mul } tensor_view_matrix_product "Matrix multiplication for a 2-dimensional referenced tensor view and a referenced tensor");

macro_rules! tensor_view_reference_tensor_value_operation_iter {
    (impl $op:tt for TensorView { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S, const D: usize> $op<Tensor<T, D>> for &TensorView<T, S, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: Tensor<T, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.iter_reference(),
                    self.shape(),
                    rhs.direct_iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_view_reference_tensor_value_operation {
    (impl $op:tt for TensorView $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S> $op<Tensor<T, $d>> for &TensorView<T, S, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, $d>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: Tensor<T, $d>) -> Self::Output {
                $implementation::<T, _, _>(self.source_ref(), rhs)
            }
        }
    };
}

tensor_view_reference_tensor_value_operation_iter!(impl Add for TensorView { fn add } tensor_view_addition_iter "Elementwise addition for a referenced tensor view and a tensor");
tensor_view_reference_tensor_value_operation_iter!(impl Sub for TensorView { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for a referenced tensor view and a tensor");
tensor_view_reference_tensor_value_operation!(impl Mul for TensorView 2 { fn mul } tensor_view_matrix_product "Matrix multiplication for a 2-dimensional referenced tensor view and a tensor");

macro_rules! tensor_view_value_tensor_reference_operation_iter {
    (impl $op:tt for TensorView { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S, const D: usize> $op<&Tensor<T, D>> for TensorView<T, S, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &Tensor<T, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.iter_reference(),
                    self.shape(),
                    rhs.direct_iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_view_value_tensor_reference_operation {
    (impl $op:tt for TensorView $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S> $op<&Tensor<T, $d>> for TensorView<T, S, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, $d>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &Tensor<T, $d>) -> Self::Output {
                $implementation::<T, _, _>(self.source_ref(), rhs)
            }
        }
    };
}

tensor_view_value_tensor_reference_operation_iter!(impl Add for TensorView { fn add } tensor_view_addition_iter "Elementwise addition for a tensor view and a referenced tensor");
tensor_view_value_tensor_reference_operation_iter!(impl Sub for TensorView { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for a tensor view and a referenced tensor");
tensor_view_value_tensor_reference_operation!(impl Mul for TensorView 2 { fn mul } tensor_view_matrix_product "Matrix multiplication for a 2-dimensional tensor view and a referenced tensor");

macro_rules! tensor_view_value_tensor_value_operation_iter {
    (impl $op:tt for TensorView { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S, const D: usize> $op<Tensor<T, D>> for TensorView<T, S, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: Tensor<T, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.iter_reference(),
                    self.shape(),
                    rhs.direct_iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_view_value_tensor_value_operation {
    (impl $op:tt for TensorView $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S> $op<Tensor<T, $d>> for TensorView<T, S, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, $d>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: Tensor<T, $d>) -> Self::Output {
                $implementation::<T, _, _>(self.source_ref(), rhs)
            }
        }
    };
}

tensor_view_value_tensor_value_operation_iter!(impl Add for TensorView { fn add } tensor_view_addition_iter "Elementwise addition for a tensor view and a tensor");
tensor_view_value_tensor_value_operation_iter!(impl Sub for TensorView { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for a tensor view and a tensor");
tensor_view_value_tensor_value_operation!(impl Mul for TensorView 2 { fn mul } tensor_view_matrix_product "Matrix multiplication for a 2-dimensional tensor view and a tensor");

macro_rules! tensor_reference_tensor_view_reference_operation_iter {
    (impl $op:tt for Tensor { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S, const D: usize> $op<&TensorView<T, S, D>> for &Tensor<T, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &TensorView<T, S, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.direct_iter_reference(),
                    self.shape(),
                    rhs.iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_reference_tensor_view_reference_operation {
    (impl $op:tt for Tensor $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S> $op<&TensorView<T, S, $d>> for &Tensor<T, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, $d>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &TensorView<T, S, $d>) -> Self::Output {
                $implementation::<T, _, _>(self, rhs.source_ref())
            }
        }
    };
}

tensor_reference_tensor_view_reference_operation_iter!(impl Add for Tensor { fn add } tensor_view_addition_iter "Elementwise addition for a referenced tensor and a referenced tensor view");
tensor_reference_tensor_view_reference_operation_iter!(impl Sub for Tensor { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for a referenced tensor and a referenced tensor view");
tensor_reference_tensor_view_reference_operation!(impl Mul for Tensor 2 { fn mul } tensor_view_matrix_product "Matrix multiplication for a 2-dimensional referenced tensor and a referenced tensor view");

macro_rules! tensor_reference_tensor_view_value_operation_iter {
    (impl $op:tt for Tensor { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S, const D: usize> $op<TensorView<T, S, D>> for &Tensor<T, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: TensorView<T, S, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.direct_iter_reference(),
                    self.shape(),
                    rhs.iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_reference_tensor_view_value_operation {
    (impl $op:tt for Tensor $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S> $op<TensorView<T, S, $d>> for &Tensor<T, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, $d>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: TensorView<T, S, $d>) -> Self::Output {
                $implementation::<T, _, _>(self, rhs.source_ref())
            }
        }
    };
}

tensor_reference_tensor_view_value_operation_iter!(impl Add for Tensor { fn add } tensor_view_addition_iter "Elementwise addition for a referenced tensor and a tensor view");
tensor_reference_tensor_view_value_operation_iter!(impl Sub for Tensor { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for a referenced tensor and a tensor view");
tensor_reference_tensor_view_value_operation!(impl Mul for Tensor 2 { fn mul } tensor_view_matrix_product "Matrix multiplication for a 2-dimensional referenced tensor and a tensor view");

macro_rules! tensor_value_tensor_view_reference_operation_iter {
    (impl $op:tt for Tensor { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S, const D: usize> $op<&TensorView<T, S, D>> for Tensor<T, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &TensorView<T, S, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.direct_iter_reference(),
                    self.shape(),
                    rhs.iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_value_tensor_view_reference_operation {
    (impl $op:tt for Tensor $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S> $op<&TensorView<T, S, $d>> for Tensor<T, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, $d>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &TensorView<T, S, $d>) -> Self::Output {
                $implementation::<T, _, _>(self, rhs.source_ref())
            }
        }
    };
}

tensor_value_tensor_view_reference_operation_iter!(impl Add for Tensor { fn add } tensor_view_addition_iter "Elementwise addition for a tensor and a referenced tensor view");
tensor_value_tensor_view_reference_operation_iter!(impl Sub for Tensor { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for a tensor and a referenced tensor view");
tensor_value_tensor_view_reference_operation!(impl Mul for Tensor 2 { fn mul } tensor_view_matrix_product "Matrix multiplication for a 2-dimensional tensor and a referenced tensor view");

macro_rules! tensor_value_tensor_view_value_operation_iter {
    (impl $op:tt for Tensor { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S, const D: usize> $op<TensorView<T, S, D>> for Tensor<T, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: TensorView<T, S, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.direct_iter_reference(),
                    self.shape(),
                    rhs.iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_value_tensor_view_value_operation {
    (impl $op:tt for Tensor $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, S> $op<TensorView<T, S, $d>> for Tensor<T, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, $d>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: TensorView<T, S, $d>) -> Self::Output {
                $implementation::<T, _, _>(self, rhs.source_ref())
            }
        }
    };
}

tensor_value_tensor_view_value_operation_iter!(impl Add for Tensor { fn add } tensor_view_addition_iter "Elementwise addition for a tensor and a tensor view");
tensor_value_tensor_view_value_operation_iter!(impl Sub for Tensor { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for a tensor and a tensor view");
tensor_value_tensor_view_value_operation!(impl Mul for Tensor 2 { fn mul } tensor_view_matrix_product "Matrix multiplication for a 2-dimensional tensor and a tensor view");

macro_rules! tensor_reference_tensor_reference_operation_iter {
    (impl $op:tt for Tensor { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, const D: usize> $op<&Tensor<T, D>> for &Tensor<T, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &Tensor<T, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.direct_iter_reference(),
                    self.shape(),
                    rhs.direct_iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_reference_tensor_reference_operation {
    (impl $op:tt for Tensor $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T> $op<&Tensor<T, $d>> for &Tensor<T, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &Tensor<T, $d>) -> Self::Output {
                $implementation::<T, _, _>(self, rhs)
            }
        }
    };
}

tensor_reference_tensor_reference_operation_iter!(impl Add for Tensor { fn add } tensor_view_addition_iter "Elementwise addition for two referenced tensors");
tensor_reference_tensor_reference_operation_iter!(impl Sub for Tensor { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for two referenced tensors");
tensor_reference_tensor_reference_operation!(impl Mul for Tensor 2 { fn mul } tensor_view_matrix_product "Matrix multiplication for two 2-dimensional referenced tensors");

macro_rules! tensor_reference_tensor_value_operation_iter {
    (impl $op:tt for Tensor { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, const D: usize> $op<Tensor<T, D>> for &Tensor<T, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: Tensor<T, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.direct_iter_reference(),
                    self.shape(),
                    rhs.direct_iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_reference_tensor_value_operation {
    (impl $op:tt for Tensor $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T> $op<Tensor<T, $d>> for &Tensor<T, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: Tensor<T, $d>) -> Self::Output {
                $implementation::<T, _, _>(self, rhs)
            }
        }
    };
}

tensor_reference_tensor_value_operation_iter!(impl Add for Tensor { fn add } tensor_view_addition_iter "Elementwise addition for two tensors with one referenced");
tensor_reference_tensor_value_operation_iter!(impl Sub for Tensor { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for two tensors with one referenced");
tensor_reference_tensor_value_operation!(impl Mul for Tensor 2 { fn mul } tensor_view_matrix_product "Matrix multiplication for two 2-dimensional tensors with one referenced");

macro_rules! tensor_value_tensor_reference_operation_iter {
    (impl $op:tt for Tensor { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, const D: usize> $op<&Tensor<T, D>> for Tensor<T, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &Tensor<T, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.direct_iter_reference(),
                    self.shape(),
                    rhs.direct_iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_value_tensor_reference_operation {
    (impl $op:tt for Tensor $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T> $op<&Tensor<T, $d>> for Tensor<T, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: &Tensor<T, $d>) -> Self::Output {
                $implementation::<T, _, _>(self, rhs)
            }
        }
    };
}

tensor_value_tensor_reference_operation_iter!(impl Add for Tensor { fn add } tensor_view_addition_iter "Elementwise addition for two tensors with one referenced");
tensor_value_tensor_reference_operation_iter!(impl Sub for Tensor { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for two tensors with one referenced");
tensor_value_tensor_reference_operation!(impl Mul for Tensor 2 { fn mul } tensor_view_matrix_product "Matrix multiplication for two 2-dimensional tensors with one referenced");

macro_rules! tensor_value_tensor_value_operation_iter {
    (impl $op:tt for Tensor { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T, const D: usize> $op<Tensor<T, D>> for Tensor<T, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
        {
            type Output = Tensor<T, D>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: Tensor<T, D>) -> Self::Output {
                $implementation::<T, _, _, D>(
                    self.direct_iter_reference(),
                    self.shape(),
                    rhs.direct_iter_reference(),
                    rhs.shape(),
                )
            }
        }
    };
}

macro_rules! tensor_value_tensor_value_operation {
    (impl $op:tt for Tensor $d:literal { fn $method:ident } $implementation:ident $doc:tt) => {
        #[doc=$doc]
        impl<T> $op<Tensor<T, $d>> for Tensor<T, $d>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
        {
            type Output = Tensor<T, $d>;

            #[track_caller]
            #[inline]
            fn $method(self, rhs: Tensor<T, $d>) -> Self::Output {
                $implementation::<T, _, _>(self, rhs)
            }
        }
    };
}

tensor_value_tensor_value_operation_iter!(impl Add for Tensor { fn add } tensor_view_addition_iter "Elementwise addition for two tensors");
tensor_value_tensor_value_operation_iter!(impl Sub for Tensor { fn sub } tensor_view_subtraction_iter "Elementwise subtraction for two tensors");
tensor_value_tensor_value_operation!(impl Mul for Tensor 2 { fn mul } tensor_view_matrix_product "Matrix multiplication for two 2-dimensional tensors");

#[test]
fn elementwise_addition_test_all_16_combinations() {
    fn tensor() -> Tensor<i8, 1> {
        Tensor::from([("a", 1)], vec![1])
    }
    fn tensor_view() -> TensorView<i8, Tensor<i8, 1>, 1> {
        TensorView::from(tensor())
    }
    let mut results = Vec::with_capacity(16);
    results.push(tensor() + tensor());
    results.push(tensor() + &tensor());
    results.push(&tensor() + tensor());
    results.push(&tensor() + &tensor());
    results.push(tensor_view() + tensor());
    results.push(tensor_view() + &tensor());
    results.push(&tensor_view() + tensor());
    results.push(&tensor_view() + &tensor());
    results.push(tensor() + tensor_view());
    results.push(tensor() + &tensor_view());
    results.push(&tensor() + tensor_view());
    results.push(&tensor() + &tensor_view());
    results.push(tensor_view() + tensor_view());
    results.push(tensor_view() + &tensor_view());
    results.push(&tensor_view() + tensor_view());
    results.push(&tensor_view() + &tensor_view());
    for total in results {
        assert_eq!(total.index_by(["a"]).get([0]), 2);
    }
}

#[test]
fn elementwise_addition_test() {
    let tensor_1: Tensor<i32, 2> = Tensor::from([("r", 2), ("c", 2)], vec![1, 2, 3, 4]);
    let tensor_2: Tensor<i32, 2> = Tensor::from([("r", 2), ("c", 2)], vec![3, 2, 8, 1]);
    let added: Tensor<i32, 2> = tensor_1 + tensor_2;
    assert_eq!(added, Tensor::from([("r", 2), ("c", 2)], vec![4, 4, 11, 5]));
}

#[should_panic]
#[test]
fn elementwise_addition_test_similar_not_matching() {
    let tensor_1: Tensor<i32, 2> = Tensor::from([("r", 2), ("c", 2)], vec![1, 2, 3, 4]);
    let tensor_2: Tensor<i32, 2> = Tensor::from([("c", 2), ("r", 2)], vec![3, 8, 2, 1]);
    let _: Tensor<i32, 2> = tensor_1 + tensor_2;
}

#[test]
fn matrix_multiplication_test_all_16_combinations() {
    #[rustfmt::skip]
    fn tensor_1() -> Tensor<i8, 2> {
        Tensor::from([("r", 2), ("c", 3)], vec![
            1, 2, 3,
            4, 5, 6
        ])
    }
    fn tensor_1_view() -> TensorView<i8, Tensor<i8, 2>, 2> {
        TensorView::from(tensor_1())
    }
    #[rustfmt::skip]
    fn tensor_2() -> Tensor<i8, 2> {
        Tensor::from([("a", 3), ("b", 2)], vec![
            1, 2,
            3, 4,
            5, 6
        ])
    }
    fn tensor_2_view() -> TensorView<i8, Tensor<i8, 2>, 2> {
        TensorView::from(tensor_2())
    }
    let mut results = Vec::with_capacity(16);
    results.push(tensor_1() * tensor_2());
    results.push(tensor_1() * &tensor_2());
    results.push(&tensor_1() * tensor_2());
    results.push(&tensor_1() * &tensor_2());
    results.push(tensor_1_view() * tensor_2());
    results.push(tensor_1_view() * &tensor_2());
    results.push(&tensor_1_view() * tensor_2());
    results.push(&tensor_1_view() * &tensor_2());
    results.push(tensor_1() * tensor_2_view());
    results.push(tensor_1() * &tensor_2_view());
    results.push(&tensor_1() * tensor_2_view());
    results.push(&tensor_1() * &tensor_2_view());
    results.push(tensor_1_view() * tensor_2_view());
    results.push(tensor_1_view() * &tensor_2_view());
    results.push(&tensor_1_view() * tensor_2_view());
    results.push(&tensor_1_view() * &tensor_2_view());
    for total in results {
        #[rustfmt::skip]
        assert_eq!(
            total,
            Tensor::from(
                [("r", 2), ("b", 2)],
                vec![
                    1 * 1 + 2 * 3 + 3 * 5, 1 * 2 + 2 * 4 + 3 * 6,
                    4 * 1 + 5 * 3 + 6 * 5, 4 * 2 + 5 * 4 + 6 * 6,
                ]
            )
        );
    }
}

impl<T> Tensor<T, 1>
where
    T: Numeric,
    for<'a> &'a T: NumericRef<T>,
{
    pub(crate) fn scalar_product_less_generic<S>(&self, rhs: TensorView<T, S, 1>) -> T
    where
        S: TensorRef<T, 1>,
    {
        let left_shape = self.shape();
        let right_shape = rhs.shape();
        assert_same_dimensions(left_shape, right_shape);
        tensor_view_vector_product_iter::<T, _, _>(
            self.direct_iter_reference(),
            left_shape,
            rhs.iter_reference(),
            right_shape,
        )
    }
}

impl<T, S> TensorView<T, S, 1>
where
    T: Numeric,
    for<'a> &'a T: NumericRef<T>,
    S: TensorRef<T, 1>,
{
    pub(crate) fn scalar_product_less_generic<S2>(&self, rhs: TensorView<T, S2, 1>) -> T
    where
        S2: TensorRef<T, 1>,
    {
        let left_shape = self.shape();
        let right_shape = rhs.shape();
        assert_same_dimensions(left_shape, right_shape);
        tensor_view_vector_product_iter::<T, _, _>(
            self.iter_reference(),
            left_shape,
            rhs.iter_reference(),
            right_shape,
        )
    }
}

macro_rules! tensor_scalar {
    (impl $op:tt for Tensor { fn $method:ident }) => {
        /**
         * Operation for a tensor and scalar by reference. The scalar is applied to
         * all elements, this is a shorthand for [map()](Tensor::map).
         */
        impl<T: Numeric, const D: usize> $op<&T> for &Tensor<T, D>
        where
            for<'a> &'a T: NumericRef<T>,
        {
            type Output = Tensor<T, D>;
            #[inline]
            fn $method(self, rhs: &T) -> Self::Output {
                self.map(|x| (x).$method(rhs.clone()))
            }
        }

        /**
         * Operation for a tensor by value and scalar by reference. The scalar is applied to
         * all elements, this is a shorthand for [map()](Tensor::map).
         */
        impl<T: Numeric, const D: usize> $op<&T> for Tensor<T, D>
        where
            for<'a> &'a T: NumericRef<T>,
        {
            type Output = Tensor<T, D>;
            #[inline]
            fn $method(self, rhs: &T) -> Self::Output {
                self.map(|x| (x).$method(rhs.clone()))
            }
        }

        /**
         * Operation for a tensor by reference and scalar by value. The scalar is applied to
         * all elements, this is a shorthand for [map()](Tensor::map).
         */
        impl<T: Numeric, const D: usize> $op<T> for &Tensor<T, D>
        where
            for<'a> &'a T: NumericRef<T>,
        {
            type Output = Tensor<T, D>;
            #[inline]
            fn $method(self, rhs: T) -> Self::Output {
                self.map(|x| (x).$method(rhs.clone()))
            }
        }

        /**
         * Operation for a tensor and scalar by value. The scalar is applied to
         * all elements, this is a shorthand for [map()](Tensor::map).
         */
        impl<T: Numeric, const D: usize> $op<T> for Tensor<T, D>
        where
            for<'a> &'a T: NumericRef<T>,
        {
            type Output = Tensor<T, D>;
            #[inline]
            fn $method(self, rhs: T) -> Self::Output {
                self.map(|x| (x).$method(rhs.clone()))
            }
        }
    };
}

macro_rules! tensor_view_scalar {
    (impl $op:tt for TensorView { fn $method:ident }) => {
        /**
         * Operation for a tensor view and scalar by reference. The scalar is applied to
         * all elements, this is a shorthand for [map()](TensorView::map).
         */
        impl<T, S, const D: usize> $op<&T> for &TensorView<T, S, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;
            #[inline]
            fn $method(self, rhs: &T) -> Self::Output {
                self.map(|x| (x).$method(rhs.clone()))
            }
        }

        /**
         * Operation for a tensor view by value and scalar by reference. The scalar is applied to
         * all elements, this is a shorthand for [map()](TensorView::map).
         */
        impl<T, S, const D: usize> $op<&T> for TensorView<T, S, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;
            #[inline]
            fn $method(self, rhs: &T) -> Self::Output {
                self.map(|x| (x).$method(rhs.clone()))
            }
        }

        /**
         * Operation for a tensor view by reference and scalar by value. The scalar is applied to
         * all elements, this is a shorthand for [map()](TensorView::map).
         */
        impl<T, S, const D: usize> $op<T> for &TensorView<T, S, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;
            #[inline]
            fn $method(self, rhs: T) -> Self::Output {
                self.map(|x| (x).$method(rhs.clone()))
            }
        }

        /**
         * Operation for a tensor view and scalar by value. The scalar is applied to
         * all elements, this is a shorthand for [map()](TensorView::map).
         */
        impl<T, S, const D: usize> $op<T> for TensorView<T, S, D>
        where
            T: Numeric,
            for<'a> &'a T: NumericRef<T>,
            S: TensorRef<T, D>,
        {
            type Output = Tensor<T, D>;
            #[inline]
            fn $method(self, rhs: T) -> Self::Output {
                self.map(|x| (x).$method(rhs.clone()))
            }
        }
    };
}

tensor_scalar!(impl Add for Tensor { fn add });
tensor_scalar!(impl Sub for Tensor { fn sub });
tensor_scalar!(impl Mul for Tensor { fn mul });
tensor_scalar!(impl Div for Tensor { fn div });

tensor_view_scalar!(impl Add for TensorView { fn add });
tensor_view_scalar!(impl Sub for TensorView { fn sub });
tensor_view_scalar!(impl Mul for TensorView { fn mul });
tensor_view_scalar!(impl Div for TensorView { fn div });