aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/include/any-macos-any/simd/geometry.h
blob: f0529c6ffbf48c406e1fe799546bb131fdc52a0b (plain)
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
/*  Copyright (c) 2014-2017 Apple, Inc. All rights reserved.
 *
 *  The interfaces declared in this header provide operations for mathematical
 *  vectors; these functions and macros operate on vectors of floating-point
 *  data only.
 *
 *      Function                    Result
 *      ------------------------------------------------------------------
 *      simd_dot(x,y)               The dot product of x and y.
 *
 *      simd_project(x,y)           x projected onto y.  There are two variants
 *                                  of this function, simd_precise_project
 *                                  and simd_fast_project.  simd_project
 *                                  is equivalent to simd_precise_project
 *                                  unless you are compiling with -ffast-math
 *                                  specified, in which case it is equivalent
 *                                  to simd_fast_project.
 *
 *      simd_length(x)              The length (two-norm) of x.  Undefined if
 *                                  x is poorly scaled such that an
 *                                  intermediate computation overflows or
 *                                  underflows.  There are two variants
 *                                  of this function, simd_precise_length
 *                                  and simd_fast_length.  simd_length
 *                                  is equivalent to simd_precise_length
 *                                  unless you are compiling with -ffast-math
 *                                  specified, in which case it is equivalent
 *                                  to simd_fast_length.
 *
 *      simd_length_squared(x)      The square of the length of x.  If you
 *                                  simply need to compare relative magnitudes,
 *                                  use this instead of simd_length; it is
 *                                  faster than simd_fast_length and as
 *                                  accurate as simd_precise_length.
 *
 *      simd_norm_one(x)            The one-norm (sum of absolute values) of x.
 *
 *      simd_norm_inf(x)            The inf-norm (max absolute value) of x.
 *
 *      simd_distance(x,y)          The distance between x and y. Undefined if
 *                                  x and y are poorly scaled such that an
 *                                  intermediate computation overflows
 *                                  or underflows.  There are two variants
 *                                  of this function, simd_precise_distance
 *                                  and simd_fast_distance.  simd_distance
 *                                  is equivalent to simd_precise_distance
 *                                  unless you are compiling with -ffast-math
 *                                  specified, in which case it is equivalent
 *                                  to simd_fast_distance.
 *
 *      simd_distance_squared(x,y)  The square of the distance between x and y.
 *
 *      simd_normalize(x)           A vector pointing in the direction of x
 *                                  with length 1.0.  Undefined if x is
 *                                  the zero vector, or if x is poorly scaled
 *                                  such that an intermediate computation
 *                                  overflows or underflows.  There are two
 *                                  variants of this function,
 *                                  simd_precise_normalize and
 *                                  simd_fast_normalize.  simd_normalize
 *                                  is equivalent to simd_precise_normalize
 *                                  unless you are compiling with -ffast-math
 *                                  specified, in which case it is equivalent
 *                                  to simd_fast_normalize.
 *
 *      simd_cross(x,y)             If x and y are vectors of dimension 3,
 *                                  the cross-product of x and y.
 *
 *                                  If x and y are vectors of dimension 2,
 *                                  the cross-product of x and y interpreted as
 *                                  vectors in the z == 0 plane of a three-
 *                                  dimensional space.
 *
 *                                  If x and y are vectors with a length that
 *                                  is neither 2 nor 3, this operation is not
 *                                  available.
 *
 *      simd_reflect(x,n)           Reflects x through the plane perpendicular
 *                                  to the normal vector n.  Only available
 *                                  for vectors of length 2, 3, or 4.
 *
 *      simd_refract(x,n,eta)       Calculates the refraction direction given
 *                                  unit incident vector x, unit normal vector
 *                                  n, and index of refraction eta.  If the
 *                                  angle between the incident vector and the
 *                                  surface normal is too great for the
 *                                  specified index of refraction, zero is
 *                                  returned.
 *                                  Available for vectors of length 2, 3, or 4.
 *
 *     simd_orient(x,y,...)         Return a positive value if the origin and
 *                                  their ordered arguments determine a positively
 *                                  oriented parallelepiped, zero if it is degenerate,
 *                                  and a negative value if it is negatively oriented.
 *
 *  In C++ the following geometric functions are available in the simd::
 *  namespace:
 *
 *      C++ Function                    Equivalent C Function
 *      -----------------------------------------------------------
 *      simd::dot(x,y)                  simd_dot(x,y)
 *      simd::project(x,y)              simd_project(x,y)
 *      simd::length_squared(x)         simd_length_squared(x)
 *      simd::length(x)                 simd_length(x)
 *      simd::distance_squared(x,y)     simd_distance_squared(x,y)
 *      simd::norm_one(x)               simd_norm_one(x)
 *      simd::norm_inf(x)               simd_norm_inf(x)
 *      simd::distance(x,y)             simd_distance(x,y)
 *      simd::normalize(x)              simd_normalize(x)
 *      simd::cross(x,y)                simd_cross(x,y)
 *      simd::reflect(x,n)              simd_reflect(x,n)
 *      simd::refract(x,n,eta)          simd_refract(x,n,eta)
 *      simd::orient(x,y,...)           simd_orient(x,y,...)
 *
 *      simd::precise::project(x,y)     simd_precise_project(x,y)
 *      simd::precise::length(x)        simd_precise_length(x)
 *      simd::precise::distance(x,y)    simd_precise_distance(x,y)
 *      simd::precise::normalize(x)     simd_precise_normalize(x)
 *
 *      simd::fast::project(x,y)        simd_fast_project(x,y)
 *      simd::fast::length(x)           simd_fast_length(x)
 *      simd::fast::distance(x,y)       simd_fast_distance(x,y)
 *      simd::fast::normalize(x)        simd_fast_normalize(x)
 */

#ifndef __SIMD_GEOMETRY_HEADER__
#define __SIMD_GEOMETRY_HEADER__

#include <simd/base.h>
#if SIMD_COMPILER_HAS_REQUIRED_FEATURES
#include <simd/vector_types.h>
#include <simd/common.h>
#include <simd/extern.h>

#ifdef __cplusplus
extern "C" {
#endif
  
static _Float16 SIMD_CFUNC simd_dot(simd_half2  __x, simd_half2  __y);
static _Float16 SIMD_CFUNC simd_dot(simd_half3  __x, simd_half3  __y);
static _Float16 SIMD_CFUNC simd_dot(simd_half4  __x, simd_half4  __y);
static _Float16 SIMD_CFUNC simd_dot(simd_half8  __x, simd_half8  __y);
static _Float16 SIMD_CFUNC simd_dot(simd_half16 __x, simd_half16 __y);
static _Float16 SIMD_CFUNC simd_dot(simd_half32 __x, simd_half32 __y);
static float  SIMD_CFUNC simd_dot(simd_float2  __x, simd_float2  __y);
static float  SIMD_CFUNC simd_dot(simd_float3  __x, simd_float3  __y);
static float  SIMD_CFUNC simd_dot(simd_float4  __x, simd_float4  __y);
static float  SIMD_CFUNC simd_dot(simd_float8  __x, simd_float8  __y);
static float  SIMD_CFUNC simd_dot(simd_float16 __x, simd_float16 __y);
static double SIMD_CFUNC simd_dot(simd_double2 __x, simd_double2 __y);
static double SIMD_CFUNC simd_dot(simd_double3 __x, simd_double3 __y);
static double SIMD_CFUNC simd_dot(simd_double4 __x, simd_double4 __y);
static double SIMD_CFUNC simd_dot(simd_double8 __x, simd_double8 __y);
#define vector_dot simd_dot

static simd_half2   SIMD_CFUNC simd_precise_project(simd_half2   __x, simd_half2   __y);
static simd_half3   SIMD_CFUNC simd_precise_project(simd_half3   __x, simd_half3   __y);
static simd_half4   SIMD_CFUNC simd_precise_project(simd_half4   __x, simd_half4   __y);
static simd_half8   SIMD_CFUNC simd_precise_project(simd_half8   __x, simd_half8   __y);
static simd_half16  SIMD_CFUNC simd_precise_project(simd_half16  __x, simd_half16  __y);
static simd_half32  SIMD_CFUNC simd_precise_project(simd_half32  __x, simd_half32  __y);
static simd_float2  SIMD_CFUNC simd_precise_project(simd_float2  __x, simd_float2  __y);
static simd_float3  SIMD_CFUNC simd_precise_project(simd_float3  __x, simd_float3  __y);
static simd_float4  SIMD_CFUNC simd_precise_project(simd_float4  __x, simd_float4  __y);
static simd_float8  SIMD_CFUNC simd_precise_project(simd_float8  __x, simd_float8  __y);
static simd_float16 SIMD_CFUNC simd_precise_project(simd_float16 __x, simd_float16 __y);
static simd_double2 SIMD_CFUNC simd_precise_project(simd_double2 __x, simd_double2 __y);
static simd_double3 SIMD_CFUNC simd_precise_project(simd_double3 __x, simd_double3 __y);
static simd_double4 SIMD_CFUNC simd_precise_project(simd_double4 __x, simd_double4 __y);
static simd_double8 SIMD_CFUNC simd_precise_project(simd_double8 __x, simd_double8 __y);
#define vector_precise_project simd_precise_project

static simd_half2   SIMD_CFUNC simd_fast_project(simd_half2   __x, simd_half2   __y);
static simd_half3   SIMD_CFUNC simd_fast_project(simd_half3   __x, simd_half3   __y);
static simd_half4   SIMD_CFUNC simd_fast_project(simd_half4   __x, simd_half4   __y);
static simd_half8   SIMD_CFUNC simd_fast_project(simd_half8   __x, simd_half8   __y);
static simd_half16  SIMD_CFUNC simd_fast_project(simd_half16  __x, simd_half16  __y);
static simd_half32  SIMD_CFUNC simd_fast_project(simd_half32  __x, simd_half32  __y);
static simd_float2  SIMD_CFUNC simd_fast_project(simd_float2  __x, simd_float2  __y);
static simd_float3  SIMD_CFUNC simd_fast_project(simd_float3  __x, simd_float3  __y);
static simd_float4  SIMD_CFUNC simd_fast_project(simd_float4  __x, simd_float4  __y);
static simd_float8  SIMD_CFUNC simd_fast_project(simd_float8  __x, simd_float8  __y);
static simd_float16 SIMD_CFUNC simd_fast_project(simd_float16 __x, simd_float16 __y);
static simd_double2 SIMD_CFUNC simd_fast_project(simd_double2 __x, simd_double2 __y);
static simd_double3 SIMD_CFUNC simd_fast_project(simd_double3 __x, simd_double3 __y);
static simd_double4 SIMD_CFUNC simd_fast_project(simd_double4 __x, simd_double4 __y);
static simd_double8 SIMD_CFUNC simd_fast_project(simd_double8 __x, simd_double8 __y);
#define vector_fast_project simd_fast_project

static simd_half2   SIMD_CFUNC simd_project(simd_half2   __x, simd_half2   __y);
static simd_half3   SIMD_CFUNC simd_project(simd_half3   __x, simd_half3   __y);
static simd_half4   SIMD_CFUNC simd_project(simd_half4   __x, simd_half4   __y);
static simd_half8   SIMD_CFUNC simd_project(simd_half8   __x, simd_half8   __y);
static simd_half16  SIMD_CFUNC simd_project(simd_half16  __x, simd_half16  __y);
static simd_half32  SIMD_CFUNC simd_project(simd_half32  __x, simd_half32  __y);
static simd_float2  SIMD_CFUNC simd_project(simd_float2  __x, simd_float2  __y);
static simd_float3  SIMD_CFUNC simd_project(simd_float3  __x, simd_float3  __y);
static simd_float4  SIMD_CFUNC simd_project(simd_float4  __x, simd_float4  __y);
static simd_float8  SIMD_CFUNC simd_project(simd_float8  __x, simd_float8  __y);
static simd_float16 SIMD_CFUNC simd_project(simd_float16 __x, simd_float16 __y);
static simd_double2 SIMD_CFUNC simd_project(simd_double2 __x, simd_double2 __y);
static simd_double3 SIMD_CFUNC simd_project(simd_double3 __x, simd_double3 __y);
static simd_double4 SIMD_CFUNC simd_project(simd_double4 __x, simd_double4 __y);
static simd_double8 SIMD_CFUNC simd_project(simd_double8 __x, simd_double8 __y);
#define vector_project simd_project

#if SIMD_LIBRARY_VERSION >= 6
static _Float16 SIMD_CFUNC simd_precise_length(simd_half2  __x);
static _Float16 SIMD_CFUNC simd_precise_length(simd_half3  __x);
static _Float16 SIMD_CFUNC simd_precise_length(simd_half4  __x);
static _Float16 SIMD_CFUNC simd_precise_length(simd_half8  __x);
static _Float16 SIMD_CFUNC simd_precise_length(simd_half16 __x);
static _Float16 SIMD_CFUNC simd_precise_length(simd_half32 __x);
#endif // SIMD_LIBRARY_VERSION >= 6
static float  SIMD_CFUNC simd_precise_length(simd_float2  __x);
static float  SIMD_CFUNC simd_precise_length(simd_float3  __x);
static float  SIMD_CFUNC simd_precise_length(simd_float4  __x);
static float  SIMD_CFUNC simd_precise_length(simd_float8  __x);
static float  SIMD_CFUNC simd_precise_length(simd_float16 __x);
static double SIMD_CFUNC simd_precise_length(simd_double2 __x);
static double SIMD_CFUNC simd_precise_length(simd_double3 __x);
static double SIMD_CFUNC simd_precise_length(simd_double4 __x);
static double SIMD_CFUNC simd_precise_length(simd_double8 __x);
#define vector_precise_length simd_precise_length

static _Float16 SIMD_CFUNC simd_fast_length(simd_half2  __x);
static _Float16 SIMD_CFUNC simd_fast_length(simd_half3  __x);
static _Float16 SIMD_CFUNC simd_fast_length(simd_half4  __x);
static _Float16 SIMD_CFUNC simd_fast_length(simd_half8  __x);
static _Float16 SIMD_CFUNC simd_fast_length(simd_half16 __x);
static _Float16 SIMD_CFUNC simd_fast_length(simd_half32 __x);
static float  SIMD_CFUNC simd_fast_length(simd_float2  __x);
static float  SIMD_CFUNC simd_fast_length(simd_float3  __x);
static float  SIMD_CFUNC simd_fast_length(simd_float4  __x);
static float  SIMD_CFUNC simd_fast_length(simd_float8  __x);
static float  SIMD_CFUNC simd_fast_length(simd_float16 __x);
static double SIMD_CFUNC simd_fast_length(simd_double2 __x);
static double SIMD_CFUNC simd_fast_length(simd_double3 __x);
static double SIMD_CFUNC simd_fast_length(simd_double4 __x);
static double SIMD_CFUNC simd_fast_length(simd_double8 __x);
#define vector_fast_length simd_fast_length

static _Float16 SIMD_CFUNC simd_length(simd_half2  __x);
static _Float16 SIMD_CFUNC simd_length(simd_half3  __x);
static _Float16 SIMD_CFUNC simd_length(simd_half4  __x);
static _Float16 SIMD_CFUNC simd_length(simd_half8  __x);
static _Float16 SIMD_CFUNC simd_length(simd_half16 __x);
static _Float16 SIMD_CFUNC simd_length(simd_half32 __x);
static float  SIMD_CFUNC simd_length(simd_float2  __x);
static float  SIMD_CFUNC simd_length(simd_float3  __x);
static float  SIMD_CFUNC simd_length(simd_float4  __x);
static float  SIMD_CFUNC simd_length(simd_float8  __x);
static float  SIMD_CFUNC simd_length(simd_float16 __x);
static double SIMD_CFUNC simd_length(simd_double2 __x);
static double SIMD_CFUNC simd_length(simd_double3 __x);
static double SIMD_CFUNC simd_length(simd_double4 __x);
static double SIMD_CFUNC simd_length(simd_double8 __x);
#define vector_length simd_length

static _Float16 SIMD_CFUNC simd_length_squared(simd_half2  __x);
static _Float16 SIMD_CFUNC simd_length_squared(simd_half3  __x);
static _Float16 SIMD_CFUNC simd_length_squared(simd_half4  __x);
static _Float16 SIMD_CFUNC simd_length_squared(simd_half8  __x);
static _Float16 SIMD_CFUNC simd_length_squared(simd_half16 __x);
static _Float16 SIMD_CFUNC simd_length_squared(simd_half32 __x);
static float  SIMD_CFUNC simd_length_squared(simd_float2  __x);
static float  SIMD_CFUNC simd_length_squared(simd_float3  __x);
static float  SIMD_CFUNC simd_length_squared(simd_float4  __x);
static float  SIMD_CFUNC simd_length_squared(simd_float8  __x);
static float  SIMD_CFUNC simd_length_squared(simd_float16 __x);
static double SIMD_CFUNC simd_length_squared(simd_double2 __x);
static double SIMD_CFUNC simd_length_squared(simd_double3 __x);
static double SIMD_CFUNC simd_length_squared(simd_double4 __x);
static double SIMD_CFUNC simd_length_squared(simd_double8 __x);
#define vector_length_squared simd_length_squared

static _Float16 SIMD_CFUNC simd_norm_one(simd_half2 __x);
static _Float16 SIMD_CFUNC simd_norm_one(simd_half3 __x);
static _Float16 SIMD_CFUNC simd_norm_one(simd_half4 __x);
static _Float16 SIMD_CFUNC simd_norm_one(simd_half8 __x);
static _Float16 SIMD_CFUNC simd_norm_one(simd_half16 __x);
static _Float16 SIMD_CFUNC simd_norm_one(simd_half32 __x);
static float SIMD_CFUNC simd_norm_one(simd_float2 __x);
static float SIMD_CFUNC simd_norm_one(simd_float3 __x);
static float SIMD_CFUNC simd_norm_one(simd_float4 __x);
static float SIMD_CFUNC simd_norm_one(simd_float8 __x);
static float SIMD_CFUNC simd_norm_one(simd_float16 __x);
static double SIMD_CFUNC simd_norm_one(simd_double2 __x);
static double SIMD_CFUNC simd_norm_one(simd_double3 __x);
static double SIMD_CFUNC simd_norm_one(simd_double4 __x);
static double SIMD_CFUNC simd_norm_one(simd_double8 __x);
#define vector_norm_one simd_norm_one

static _Float16 SIMD_CFUNC simd_norm_inf(simd_half2 __x);
static _Float16 SIMD_CFUNC simd_norm_inf(simd_half3 __x);
static _Float16 SIMD_CFUNC simd_norm_inf(simd_half4 __x);
static _Float16 SIMD_CFUNC simd_norm_inf(simd_half8 __x);
static _Float16 SIMD_CFUNC simd_norm_inf(simd_half16 __x);
static _Float16 SIMD_CFUNC simd_norm_inf(simd_half32 __x);
static float SIMD_CFUNC simd_norm_inf(simd_float2 __x);
static float SIMD_CFUNC simd_norm_inf(simd_float3 __x);
static float SIMD_CFUNC simd_norm_inf(simd_float4 __x);
static float SIMD_CFUNC simd_norm_inf(simd_float8 __x);
static float SIMD_CFUNC simd_norm_inf(simd_float16 __x);
static double SIMD_CFUNC simd_norm_inf(simd_double2 __x);
static double SIMD_CFUNC simd_norm_inf(simd_double3 __x);
static double SIMD_CFUNC simd_norm_inf(simd_double4 __x);
static double SIMD_CFUNC simd_norm_inf(simd_double8 __x);
#define vector_norm_inf simd_norm_inf

static _Float16 SIMD_CFUNC simd_precise_distance(simd_half2  __x, simd_half2  __y);
static _Float16 SIMD_CFUNC simd_precise_distance(simd_half3  __x, simd_half3  __y);
static _Float16 SIMD_CFUNC simd_precise_distance(simd_half4  __x, simd_half4  __y);
static _Float16 SIMD_CFUNC simd_precise_distance(simd_half8  __x, simd_half8  __y);
static _Float16 SIMD_CFUNC simd_precise_distance(simd_half16 __x, simd_half16 __y);
static _Float16 SIMD_CFUNC simd_precise_distance(simd_half32 __x, simd_half32 __y);
static float  SIMD_CFUNC simd_precise_distance(simd_float2  __x, simd_float2  __y);
static float  SIMD_CFUNC simd_precise_distance(simd_float3  __x, simd_float3  __y);
static float  SIMD_CFUNC simd_precise_distance(simd_float4  __x, simd_float4  __y);
static float  SIMD_CFUNC simd_precise_distance(simd_float8  __x, simd_float8  __y);
static float  SIMD_CFUNC simd_precise_distance(simd_float16 __x, simd_float16 __y);
static double SIMD_CFUNC simd_precise_distance(simd_double2 __x, simd_double2 __y);
static double SIMD_CFUNC simd_precise_distance(simd_double3 __x, simd_double3 __y);
static double SIMD_CFUNC simd_precise_distance(simd_double4 __x, simd_double4 __y);
static double SIMD_CFUNC simd_precise_distance(simd_double8 __x, simd_double8 __y);
#define vector_precise_distance simd_precise_distance

static _Float16 SIMD_CFUNC simd_fast_distance(simd_half2  __x, simd_half2  __y);
static _Float16 SIMD_CFUNC simd_fast_distance(simd_half3  __x, simd_half3  __y);
static _Float16 SIMD_CFUNC simd_fast_distance(simd_half4  __x, simd_half4  __y);
static _Float16 SIMD_CFUNC simd_fast_distance(simd_half8  __x, simd_half8  __y);
static _Float16 SIMD_CFUNC simd_fast_distance(simd_half16 __x, simd_half16 __y);
static _Float16 SIMD_CFUNC simd_fast_distance(simd_half32 __x, simd_half32 __y);
static float  SIMD_CFUNC simd_fast_distance(simd_float2  __x, simd_float2  __y);
static float  SIMD_CFUNC simd_fast_distance(simd_float3  __x, simd_float3  __y);
static float  SIMD_CFUNC simd_fast_distance(simd_float4  __x, simd_float4  __y);
static float  SIMD_CFUNC simd_fast_distance(simd_float8  __x, simd_float8  __y);
static float  SIMD_CFUNC simd_fast_distance(simd_float16 __x, simd_float16 __y);
static double SIMD_CFUNC simd_fast_distance(simd_double2 __x, simd_double2 __y);
static double SIMD_CFUNC simd_fast_distance(simd_double3 __x, simd_double3 __y);
static double SIMD_CFUNC simd_fast_distance(simd_double4 __x, simd_double4 __y);
static double SIMD_CFUNC simd_fast_distance(simd_double8 __x, simd_double8 __y);
#define vector_fast_distance simd_fast_distance

static _Float16 SIMD_CFUNC simd_distance(simd_half2  __x, simd_half2  __y);
static _Float16 SIMD_CFUNC simd_distance(simd_half3  __x, simd_half3  __y);
static _Float16 SIMD_CFUNC simd_distance(simd_half4  __x, simd_half4  __y);
static _Float16 SIMD_CFUNC simd_distance(simd_half8  __x, simd_half8  __y);
static _Float16 SIMD_CFUNC simd_distance(simd_half16 __x, simd_half16 __y);
static _Float16 SIMD_CFUNC simd_distance(simd_half32 __x, simd_half32 __y);
static float  SIMD_CFUNC simd_distance(simd_float2  __x, simd_float2  __y);
static float  SIMD_CFUNC simd_distance(simd_float3  __x, simd_float3  __y);
static float  SIMD_CFUNC simd_distance(simd_float4  __x, simd_float4  __y);
static float  SIMD_CFUNC simd_distance(simd_float8  __x, simd_float8  __y);
static float  SIMD_CFUNC simd_distance(simd_float16 __x, simd_float16 __y);
static double SIMD_CFUNC simd_distance(simd_double2 __x, simd_double2 __y);
static double SIMD_CFUNC simd_distance(simd_double3 __x, simd_double3 __y);
static double SIMD_CFUNC simd_distance(simd_double4 __x, simd_double4 __y);
static double SIMD_CFUNC simd_distance(simd_double8 __x, simd_double8 __y);
#define vector_distance simd_distance

static _Float16 SIMD_CFUNC simd_distance_squared(simd_half2  __x, simd_half2  __y);
static _Float16 SIMD_CFUNC simd_distance_squared(simd_half3  __x, simd_half3  __y);
static _Float16 SIMD_CFUNC simd_distance_squared(simd_half4  __x, simd_half4  __y);
static _Float16 SIMD_CFUNC simd_distance_squared(simd_half8  __x, simd_half8  __y);
static _Float16 SIMD_CFUNC simd_distance_squared(simd_half16 __x, simd_half16 __y);
static _Float16 SIMD_CFUNC simd_distance_squared(simd_half32 __x, simd_half32 __y);
static float  SIMD_CFUNC simd_distance_squared(simd_float2  __x, simd_float2  __y);
static float  SIMD_CFUNC simd_distance_squared(simd_float3  __x, simd_float3  __y);
static float  SIMD_CFUNC simd_distance_squared(simd_float4  __x, simd_float4  __y);
static float  SIMD_CFUNC simd_distance_squared(simd_float8  __x, simd_float8  __y);
static float  SIMD_CFUNC simd_distance_squared(simd_float16 __x, simd_float16 __y);
static double SIMD_CFUNC simd_distance_squared(simd_double2 __x, simd_double2 __y);
static double SIMD_CFUNC simd_distance_squared(simd_double3 __x, simd_double3 __y);
static double SIMD_CFUNC simd_distance_squared(simd_double4 __x, simd_double4 __y);
static double SIMD_CFUNC simd_distance_squared(simd_double8 __x, simd_double8 __y);
#define vector_distance_squared simd_distance_squared

static simd_half2   SIMD_CFUNC simd_precise_normalize(simd_half2   __x);
static simd_half3   SIMD_CFUNC simd_precise_normalize(simd_half3   __x);
static simd_half4   SIMD_CFUNC simd_precise_normalize(simd_half4   __x);
static simd_half8   SIMD_CFUNC simd_precise_normalize(simd_half8   __x);
static simd_half16  SIMD_CFUNC simd_precise_normalize(simd_half16  __x);
static simd_half32  SIMD_CFUNC simd_precise_normalize(simd_half32  __x);
static simd_float2  SIMD_CFUNC simd_precise_normalize(simd_float2  __x);
static simd_float3  SIMD_CFUNC simd_precise_normalize(simd_float3  __x);
static simd_float4  SIMD_CFUNC simd_precise_normalize(simd_float4  __x);
static simd_float8  SIMD_CFUNC simd_precise_normalize(simd_float8  __x);
static simd_float16 SIMD_CFUNC simd_precise_normalize(simd_float16 __x);
static simd_double2 SIMD_CFUNC simd_precise_normalize(simd_double2 __x);
static simd_double3 SIMD_CFUNC simd_precise_normalize(simd_double3 __x);
static simd_double4 SIMD_CFUNC simd_precise_normalize(simd_double4 __x);
static simd_double8 SIMD_CFUNC simd_precise_normalize(simd_double8 __x);
#define vector_precise_normalize simd_precise_normalize

static simd_half2   SIMD_CFUNC simd_fast_normalize(simd_half2   __x);
static simd_half3   SIMD_CFUNC simd_fast_normalize(simd_half3   __x);
static simd_half4   SIMD_CFUNC simd_fast_normalize(simd_half4   __x);
static simd_half8   SIMD_CFUNC simd_fast_normalize(simd_half8   __x);
static simd_half16  SIMD_CFUNC simd_fast_normalize(simd_half16  __x);
static simd_half32  SIMD_CFUNC simd_fast_normalize(simd_half32  __x);
static simd_float2  SIMD_CFUNC simd_fast_normalize(simd_float2  __x);
static simd_float3  SIMD_CFUNC simd_fast_normalize(simd_float3  __x);
static simd_float4  SIMD_CFUNC simd_fast_normalize(simd_float4  __x);
static simd_float8  SIMD_CFUNC simd_fast_normalize(simd_float8  __x);
static simd_float16 SIMD_CFUNC simd_fast_normalize(simd_float16 __x);
static simd_double2 SIMD_CFUNC simd_fast_normalize(simd_double2 __x);
static simd_double3 SIMD_CFUNC simd_fast_normalize(simd_double3 __x);
static simd_double4 SIMD_CFUNC simd_fast_normalize(simd_double4 __x);
static simd_double8 SIMD_CFUNC simd_fast_normalize(simd_double8 __x);
#define vector_fast_normalize simd_fast_normalize

static simd_half2   SIMD_CFUNC simd_normalize(simd_half2   __x);
static simd_half3   SIMD_CFUNC simd_normalize(simd_half3   __x);
static simd_half4   SIMD_CFUNC simd_normalize(simd_half4   __x);
static simd_half8   SIMD_CFUNC simd_normalize(simd_half8   __x);
static simd_half16  SIMD_CFUNC simd_normalize(simd_half16  __x);
static simd_half32  SIMD_CFUNC simd_normalize(simd_half32  __x);
static simd_float2  SIMD_CFUNC simd_normalize(simd_float2  __x);
static simd_float3  SIMD_CFUNC simd_normalize(simd_float3  __x);
static simd_float4  SIMD_CFUNC simd_normalize(simd_float4  __x);
static simd_float8  SIMD_CFUNC simd_normalize(simd_float8  __x);
static simd_float16 SIMD_CFUNC simd_normalize(simd_float16 __x);
static simd_double2 SIMD_CFUNC simd_normalize(simd_double2 __x);
static simd_double3 SIMD_CFUNC simd_normalize(simd_double3 __x);
static simd_double4 SIMD_CFUNC simd_normalize(simd_double4 __x);
static simd_double8 SIMD_CFUNC simd_normalize(simd_double8 __x);
#define vector_normalize simd_normalize

static simd_half3   SIMD_CFUNC simd_cross(simd_half2   __x, simd_half2   __y);
static simd_half3   SIMD_CFUNC simd_cross(simd_half3   __x, simd_half3   __y);
static simd_float3  SIMD_CFUNC simd_cross(simd_float2  __x, simd_float2  __y);
static simd_float3  SIMD_CFUNC simd_cross(simd_float3  __x, simd_float3  __y);
static simd_double3 SIMD_CFUNC simd_cross(simd_double2 __x, simd_double2 __y);
static simd_double3 SIMD_CFUNC simd_cross(simd_double3 __x, simd_double3 __y);
#define vector_cross simd_cross

static simd_half2   SIMD_CFUNC simd_reflect(simd_half2   __x, simd_half2   __n);
static simd_half3   SIMD_CFUNC simd_reflect(simd_half3   __x, simd_half3   __n);
static simd_half4   SIMD_CFUNC simd_reflect(simd_half4   __x, simd_half4   __n);
static simd_float2  SIMD_CFUNC simd_reflect(simd_float2  __x, simd_float2  __n);
static simd_float3  SIMD_CFUNC simd_reflect(simd_float3  __x, simd_float3  __n);
static simd_float4  SIMD_CFUNC simd_reflect(simd_float4  __x, simd_float4  __n);
static simd_double2 SIMD_CFUNC simd_reflect(simd_double2 __x, simd_double2 __n);
static simd_double3 SIMD_CFUNC simd_reflect(simd_double3 __x, simd_double3 __n);
static simd_double4 SIMD_CFUNC simd_reflect(simd_double4 __x, simd_double4 __n);
#define vector_reflect simd_reflect

#if SIMD_LIBRARY_VERSION >= 6
static simd_half2   SIMD_CFUNC simd_refract(simd_half2   __x, simd_half2   __n, _Float16 __eta);
static simd_half3   SIMD_CFUNC simd_refract(simd_half3   __x, simd_half3   __n, _Float16 __eta);
static simd_half4   SIMD_CFUNC simd_refract(simd_half4   __x, simd_half4   __n, _Float16 __eta);
#endif // SIMD_LIBRARY_VERSION >= 6
static simd_float2  SIMD_CFUNC simd_refract(simd_float2  __x, simd_float2  __n, float __eta);
static simd_float3  SIMD_CFUNC simd_refract(simd_float3  __x, simd_float3  __n, float __eta);
static simd_float4  SIMD_CFUNC simd_refract(simd_float4  __x, simd_float4  __n, float __eta);
static simd_double2 SIMD_CFUNC simd_refract(simd_double2 __x, simd_double2 __n, double __eta);
static simd_double3 SIMD_CFUNC simd_refract(simd_double3 __x, simd_double3 __n, double __eta);
static simd_double4 SIMD_CFUNC simd_refract(simd_double4 __x, simd_double4 __n, double __eta);
#define vector_refract simd_refract

#if SIMD_LIBRARY_VERSION >= 2
/*  These functions require that you are building for OS X 10.12 or later,
 *  iOS 10.0 or later, watchOS 3.0 or later, and tvOS 10.0 or later.  On
 *  earlier OS versions, the library functions that implement these
 *  operations are not available.                                             */

/*! @functiongroup vector orientation
 *
 *  @discussion These functions return a positive value if the origin and
 *  their ordered arguments determine a positively oriented parallelepiped,
 *  zero if it is degenerate, and a negative value if it is negatively
 *  oriented.  This is equivalent to saying that the matrix with rows equal
 *  to the vectors has a positive, zero, or negative determinant,
 *  respectively.
 *
 *  Naive evaluation of the determinant is prone to producing incorrect
 *  results if the vectors are nearly degenerate (e.g. floating-point
 *  rounding might cause the determinant to be zero or negative when
 *  the points are very nearly coplanar but positively oriented).  If
 *  the vectors are very large or small, computing the determininat is
 *  also prone to premature overflow, which may cause the result to be
 *  NaN even though the vectors contain normal floating-point numbers.
 *
 *  These routines take care to avoid those issues and always return a
 *  result with correct sign, even when the problem is very ill-
 *  conditioned.                                                              */

/*! @abstract Test the orientation of two 2d vectors.
 *
 *  @param __x The first vector.
 *  @param __y The second vector.
 *
 *  @result Positive if (x, y) are positively oriented, zero if they are
 *  colinear, and negative if they are negatively oriented.
 *
 *  @discussion For two-dimensional vectors, "positively oriented" is
 *  equivalent to the ordering (0, x, y) proceeding counter-clockwise
 *  when viewed down the z axis, or to the cross product of x and y
 *  extended to three-dimensions having positive z-component.                 */
static float SIMD_CFUNC simd_orient(simd_float2 __x, simd_float2 __y);

/*! @abstract Test the orientation of two 2d vectors.
 *
 *  @param __x The first vector.
 *  @param __y The second vector.
 *
 *  @result Positive if (x, y) are positively oriented, zero if they are
 *  colinear, and negative if they are negatively oriented.
 *
 *  @discussion For two-dimensional vectors, "positively oriented" is
 *  equivalent to the ordering (0, x, y) proceeding counter- clockwise
 *  when viewed down the z axis, or to the cross product of x and y
 *  extended to three-dimensions having positive z-component.                 */
static double SIMD_CFUNC simd_orient(simd_double2 __x, simd_double2 __y);

/*! @abstract Test the orientation of three 3d vectors.
 *
 *  @param __x The first vector.
 *  @param __y The second vector.
 *  @param __z The third vector.
 *
 *  @result Positive if (x, y, z) are positively oriented, zero if they
 *  are coplanar, and negative if they are negatively oriented.
 *
 *  @discussion For three-dimensional vectors, "positively oriented" is
 *  equivalent to the ordering (x, y, z) following the "right hand rule",
 *  or to the dot product of z with the cross product of x and y being
 *  positive.                                                                 */
static float SIMD_CFUNC simd_orient(simd_float3 __x, simd_float3 __y, simd_float3 __z);

/*! @abstract Test the orientation of three 3d vectors.
 *
 *  @param __x The first vector.
 *  @param __y The second vector.
 *  @param __z The third vector.
 *
 *  @result Positive if (x, y, c) are positively oriented, zero if they
 *  are coplanar, and negative if they are negatively oriented.
 *
 *  @discussion For three-dimensional vectors, "positively oriented" is
 *  equivalent to the ordering (x, y, z) following the "right hand rule",
 *  or to the dot product of z with the cross product of x and y being
 *  positive.                                                                 */
static double SIMD_CFUNC simd_orient(simd_double3 __x, simd_double3 __y, simd_double3 __z);

/*! @functiongroup point (affine) orientation
 *
 *  @discussion These functions return a positive value if their ordered
 *  arguments determine a positively oriented parallelepiped, zero if it
 *  is degenerate, and a negative value if it is negatively oriented.
 *
 *  simd_orient(a, b, c) is formally equivalent to simd_orient(b-a, c-a),
 *  but it is not effected by rounding error from subtraction of points,
 *  as that implementation would be.  Care is taken so that the sign of
 *  the result is always correct, even if the problem is ill-conditioned.     */

/*! @abstract Test the orientation of a triangle in 2d.
 *
 *  @param __a The first point of the triangle.
 *  @param __b The second point of the triangle.
 *  @param __c The third point of the triangle.
 *
 *  @result Positive if the triangle is positively oriented, zero if it
 *  is degenerate (three points in a line), and negative if it is negatively
 *  oriented.
 *
 *  @discussion "Positively oriented" is equivalent to the ordering
 *  (a, b, c) proceeding counter-clockwise when viewed down the z axis,
 *  or to the cross product of a-c and b-c extended to three-dimensions
 *  having positive z-component.                                              */
static float SIMD_CFUNC simd_orient(simd_float2 __a, simd_float2 __b, simd_float2 __c);

/*! @abstract Test the orientation of a triangle in 2d.
 *
 *  @param __a The first point of the triangle.
 *  @param __b The second point of the triangle.
 *  @param __c The third point of the triangle.
 *
 *  @result Positive if the triangle is positively oriented, zero if it
 *  is degenerate (three points in a line), and negative if it is negatively
 *  oriented.
 *
 *  @discussion "Positively oriented" is equivalent to the ordering
 *  (a, b, c) proceeding counter-clockwise when viewed down the z axis,
 *  or to the cross product of a-c and b-c extended to three-dimensions
 *  having positive z-component.                                              */
static double SIMD_CFUNC simd_orient(simd_double2 __a, simd_double2 __b, simd_double2 __c);

/*! @abstract Test the orientation of a tetrahedron in 3d.
 *
 *  @param __a The first point of the tetrahedron.
 *  @param __b The second point of the tetrahedron.
 *  @param __c The third point of the tetrahedron.
 *  @param __d The fourth point of the tetrahedron.
 *
 *  @result Positive if the tetrahedron is positively oriented, zero if it
 *  is degenerate (four points in a plane), and negative if it is negatively
 *  oriented.
 *
 *  @discussion "Positively oriented" is equivalent to the vectors
 *  (a-d, b-d, c-d) following the "right hand rule", or to the dot product
 *  of c-d with the the cross product of a-d and b-d being positive.          */
static float SIMD_CFUNC simd_orient(simd_float3 __a, simd_float3 __b, simd_float3 __c, simd_float3 __d);

/*! @abstract Test the orientation of a tetrahedron in 3d.
 *
 *  @param __a The first point of the tetrahedron.
 *  @param __b The second point of the tetrahedron.
 *  @param __c The third point of the tetrahedron.
 *  @param __d The fourth point of the tetrahedron.
 *
 *  @result Positive if the tetrahedron is positively oriented, zero if it
 *  is degenerate (four points in a plane), and negative if it is negatively
 *  oriented.
 *
 *  @discussion "Positively oriented" is equivalent to the vectors
 *  (a-d, b-d, c-d) following the "right hand rule", or to the dot product
 *  of c-d with the the cross product of a-d and b-d being positive.          */
static double SIMD_CFUNC simd_orient(simd_double3 __a, simd_double3 __b, simd_double3 __c, simd_double3 __d);

/*! @functiongroup incircle (points) tests
 *
 *  @discussion These functions determine whether the point x is inside, on,
 *  or outside the circle or sphere passing through a group of points.  If
 *  x is inside the circle, the result is positive; if x is on the circle,
 *  the result is zero; if x is outside the circle the result is negative.
 *
 *  These functions are always exact, even if the problem is ill-
 *  conditioned (meaning that the points are nearly co-linear or
 *  co-planar).
 *
 *  If the points are negatively-oriented, the the notions of "inside" and
 *  "outside" are flipped.  If the points are degenerate, then the result
 *  is undefined.                                                             */

/*! @abstract Test if x lies inside, on, or outside the circle passing
 *  through a, b, and c.
 *
 *  @param __x The point being tested.
 *  @param __a The first point determining the circle.
 *  @param __b The second point determining the circle.
 *  @param __c The third point determining the circle.
 *
 *  @result Assuming that (a,b,c) are positively-oriented, positive if x is
 *  inside the circle, zero if x is on the circle, and negative if x is
 *  outside the circle.  The sign of the result is flipped if (a,b,c) are
 *  negatively-oriented.                                                      */
static float SIMD_CFUNC simd_incircle(simd_float2 __x, simd_float2 __a, simd_float2 __b, simd_float2 __c);

/*! @abstract Test if x lies inside, on, or outside the circle passing
 *  through a, b, and c.
 *
 *  @param __x The point being tested.
 *  @param __a The first point determining the circle.
 *  @param __b The second point determining the circle.
 *  @param __c The third point determining the circle.
 *
 *  @result Assuming that (a,b,c) are positively-oriented, positive if x is
 *  inside the circle, zero if x is on the circle, and negative if x is
 *  outside the circle.  The sign of the result is flipped if (a,b,c) are
 *  negatively-oriented.                                                      */
static double SIMD_CFUNC simd_incircle(simd_double2 __x, simd_double2 __a, simd_double2 __b, simd_double2 __c);

/*! @abstract Test if x lies inside, on, or outside the sphere passing
 *  through a, b, c, and d.
 *
 *  @param __x The point being tested.
 *  @param __a The first point determining the sphere.
 *  @param __b The second point determining the sphere.
 *  @param __c The third point determining the sphere.
 *  @param __d The fourth point determining the sphere.
 *
 *  @result Assuming that the points are positively-oriented, positive if x
 *  is inside the sphere, zero if x is on the sphere, and negative if x is
 *  outside the sphere.  The sign of the result is flipped if the points are
 *  negatively-oriented.                                                      */
static float SIMD_CFUNC simd_insphere(simd_float3 __x, simd_float3 __a, simd_float3 __b, simd_float3 __c, simd_float3 __d);

/*! @abstract Test if x lies inside, on, or outside the sphere passing
 *  through a, b, c, and d.
 *
 *  @param __x The point being tested.
 *  @param __a The first point determining the sphere.
 *  @param __b The second point determining the sphere.
 *  @param __c The third point determining the sphere.
 *  @param __d The fourth point determining the sphere.
 *
 *  @result Assuming that the points are positively-oriented, positive if x
 *  is inside the sphere, zero if x is on the sphere, and negative if x is
 *  outside the sphere.  The sign of the result is flipped if the points are
 *  negatively-oriented.                                                      */
static double SIMD_CFUNC simd_insphere(simd_double3 __x, simd_double3 __a, simd_double3 __b, simd_double3 __c, simd_double3 __d);
#endif /* SIMD_LIBRARY_VERSION */

#if SIMD_LIBRARY_VERSION >= 6
/*  fp16 support requires that you are building for OS X 15.0 or later,
 *  iOS 18.0 or later, watchOS 11.0 or later, and tvOS 18.0 or later.  On
 *  earlier OS versions, the library functions that implement these
 *  operations are not available.                                             */

  static _Float16 SIMD_CFUNC simd_orient(simd_half2 __x, simd_half2 __y);
  static _Float16 SIMD_CFUNC simd_orient(simd_half3 __x, simd_half3 __y, simd_half3 __z);
  static _Float16 SIMD_CFUNC simd_orient(simd_half2 __a, simd_half2 __b, simd_half2 __c);
  static _Float16 SIMD_CFUNC simd_orient(simd_half3 __a, simd_half3 __b, simd_half3 __c, simd_half3 __d);
  static _Float16 SIMD_CFUNC simd_incircle(simd_half2 __x, simd_half2 __a, simd_half2 __b, simd_half2 __c);
  static _Float16 SIMD_CFUNC simd_insphere(simd_half3 __x, simd_half3 __a, simd_half3 __b, simd_half3 __c, simd_half3 __d);
#endif /* SIMD_LIBRARY_VERSION */

#ifdef __cplusplus
} /* extern "C" */

namespace simd {
  static SIMD_CPPFUNC _Float16 dot(const half2  x, const half2  y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC _Float16 dot(const half3  x, const half3  y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC _Float16 dot(const half4  x, const half4  y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC _Float16 dot(const half8  x, const half8  y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC _Float16 dot(const half16 x, const half16 y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC _Float16 dot(const half32 x, const half32 y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC float  dot(const float2  x, const float2  y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC float  dot(const float3  x, const float3  y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC float  dot(const float4  x, const float4  y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC float  dot(const float8  x, const float8  y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC float  dot(const float16 x, const float16 y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC double dot(const double2 x, const double2 y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC double dot(const double3 x, const double3 y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC double dot(const double4 x, const double4 y) { return ::simd_dot(x, y); }
  static SIMD_CPPFUNC double dot(const double8 x, const double8 y) { return ::simd_dot(x, y); }
  
  static SIMD_CPPFUNC half2   project(const half2   x, const half2   y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC half3   project(const half3   x, const half3   y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC half4   project(const half4   x, const half4   y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC half8   project(const half8   x, const half8   y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC half16  project(const half16  x, const half16  y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC half32  project(const half32  x, const half32  y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC float2  project(const float2  x, const float2  y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC float3  project(const float3  x, const float3  y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC float4  project(const float4  x, const float4  y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC float8  project(const float8  x, const float8  y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC float16 project(const float16 x, const float16 y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC double2 project(const double2 x, const double2 y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC double3 project(const double3 x, const double3 y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC double4 project(const double4 x, const double4 y) { return ::simd_project(x, y); }
  static SIMD_CPPFUNC double8 project(const double8 x, const double8 y) { return ::simd_project(x, y); }
  
  static SIMD_CPPFUNC _Float16 length_squared(const half2  x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC _Float16 length_squared(const half3  x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC _Float16 length_squared(const half4  x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC _Float16 length_squared(const half8  x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC _Float16 length_squared(const half16 x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC _Float16 length_squared(const half32 x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC float  length_squared(const float2  x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC float  length_squared(const float3  x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC float  length_squared(const float4  x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC float  length_squared(const float8  x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC float  length_squared(const float16 x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC double length_squared(const double2 x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC double length_squared(const double3 x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC double length_squared(const double4 x) { return ::simd_length_squared(x); }
  static SIMD_CPPFUNC double length_squared(const double8 x) { return ::simd_length_squared(x); }
  
  static SIMD_CPPFUNC _Float16 norm_one(const half2  x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC _Float16 norm_one(const half3  x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC _Float16 norm_one(const half4  x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC _Float16 norm_one(const half8  x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC _Float16 norm_one(const half16 x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC _Float16 norm_one(const half32 x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC float  norm_one(const float2  x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC float  norm_one(const float3  x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC float  norm_one(const float4  x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC float  norm_one(const float8  x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC float  norm_one(const float16 x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC double norm_one(const double2 x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC double norm_one(const double3 x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC double norm_one(const double4 x) { return ::simd_norm_one(x); }
  static SIMD_CPPFUNC double norm_one(const double8 x) { return ::simd_norm_one(x); }
  
  static SIMD_CPPFUNC _Float16 norm_inf(const half2  x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC _Float16 norm_inf(const half3  x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC _Float16 norm_inf(const half4  x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC _Float16 norm_inf(const half8  x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC _Float16 norm_inf(const half16 x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC _Float16 norm_inf(const half32 x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC float  norm_inf(const float2  x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC float  norm_inf(const float3  x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC float  norm_inf(const float4  x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC float  norm_inf(const float8  x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC float  norm_inf(const float16 x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC double norm_inf(const double2 x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC double norm_inf(const double3 x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC double norm_inf(const double4 x) { return ::simd_norm_inf(x); }
  static SIMD_CPPFUNC double norm_inf(const double8 x) { return ::simd_norm_inf(x); }
  
  static SIMD_CPPFUNC _Float16 length(const half2  x) { return ::simd_length(x); }
  static SIMD_CPPFUNC _Float16 length(const half3  x) { return ::simd_length(x); }
  static SIMD_CPPFUNC _Float16 length(const half4  x) { return ::simd_length(x); }
  static SIMD_CPPFUNC _Float16 length(const half8  x) { return ::simd_length(x); }
  static SIMD_CPPFUNC _Float16 length(const half16 x) { return ::simd_length(x); }
  static SIMD_CPPFUNC _Float16 length(const half32 x) { return ::simd_length(x); }
  static SIMD_CPPFUNC float  length(const float2  x) { return ::simd_length(x); }
  static SIMD_CPPFUNC float  length(const float3  x) { return ::simd_length(x); }
  static SIMD_CPPFUNC float  length(const float4  x) { return ::simd_length(x); }
  static SIMD_CPPFUNC float  length(const float8  x) { return ::simd_length(x); }
  static SIMD_CPPFUNC float  length(const float16 x) { return ::simd_length(x); }
  static SIMD_CPPFUNC double length(const double2 x) { return ::simd_length(x); }
  static SIMD_CPPFUNC double length(const double3 x) { return ::simd_length(x); }
  static SIMD_CPPFUNC double length(const double4 x) { return ::simd_length(x); }
  static SIMD_CPPFUNC double length(const double8 x) { return ::simd_length(x); }
  
  static SIMD_CPPFUNC _Float16 distance_squared(const half2  x, const half2  y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC _Float16 distance_squared(const half3  x, const half3  y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC _Float16 distance_squared(const half4  x, const half4  y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC _Float16 distance_squared(const half8  x, const half8  y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC _Float16 distance_squared(const half16 x, const half16 y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC _Float16 distance_squared(const half32 x, const half32 y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC float  distance_squared(const float2  x, const float2  y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC float  distance_squared(const float3  x, const float3  y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC float  distance_squared(const float4  x, const float4  y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC float  distance_squared(const float8  x, const float8  y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC float  distance_squared(const float16 x, const float16 y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC double distance_squared(const double2 x, const double2 y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC double distance_squared(const double3 x, const double3 y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC double distance_squared(const double4 x, const double4 y) { return ::simd_distance_squared(x, y); }
  static SIMD_CPPFUNC double distance_squared(const double8 x, const double8 y) { return ::simd_distance_squared(x, y); }
  
  static SIMD_CPPFUNC _Float16 distance(const half2  x, const half2  y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC _Float16 distance(const half3  x, const half3  y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC _Float16 distance(const half4  x, const half4  y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC _Float16 distance(const half8  x, const half8  y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC _Float16 distance(const half16 x, const half16 y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC _Float16 distance(const half32 x, const half32 y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC float  distance(const float2  x, const float2  y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC float  distance(const float3  x, const float3  y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC float  distance(const float4  x, const float4  y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC float  distance(const float8  x, const float8  y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC float  distance(const float16 x, const float16 y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC double distance(const double2 x, const double2 y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC double distance(const double3 x, const double3 y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC double distance(const double4 x, const double4 y) { return ::simd_distance(x, y); }
  static SIMD_CPPFUNC double distance(const double8 x, const double8 y) { return ::simd_distance(x, y); }
  
  static SIMD_CPPFUNC half2   normalize(const half2   x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC half3   normalize(const half3   x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC half4   normalize(const half4   x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC half8   normalize(const half8   x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC half16  normalize(const half16  x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC half32  normalize(const half32  x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC float2  normalize(const float2  x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC float3  normalize(const float3  x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC float4  normalize(const float4  x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC float8  normalize(const float8  x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC float16 normalize(const float16 x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC double2 normalize(const double2 x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC double3 normalize(const double3 x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC double4 normalize(const double4 x) { return ::simd_normalize(x); }
  static SIMD_CPPFUNC double8 normalize(const double8 x) { return ::simd_normalize(x); }
  
  static SIMD_CPPFUNC half3   cross(const half2   x, const half2   y) { return ::simd_cross(x,y); }
  static SIMD_CPPFUNC half3   cross(const half3   x, const half3   y) { return ::simd_cross(x,y); }
  static SIMD_CPPFUNC float3  cross(const float2  x, const float2  y) { return ::simd_cross(x,y); }
  static SIMD_CPPFUNC float3  cross(const float3  x, const float3  y) { return ::simd_cross(x,y); }
  static SIMD_CPPFUNC double3 cross(const double2 x, const double2 y) { return ::simd_cross(x,y); }
  static SIMD_CPPFUNC double3 cross(const double3 x, const double3 y) { return ::simd_cross(x,y); }
  
  static SIMD_CPPFUNC half2   reflect(const half2   x, const half2   n) { return ::simd_reflect(x,n); }
  static SIMD_CPPFUNC half3   reflect(const half3   x, const half3   n) { return ::simd_reflect(x,n); }
  static SIMD_CPPFUNC half4   reflect(const half4   x, const half4   n) { return ::simd_reflect(x,n); }
  static SIMD_CPPFUNC float2  reflect(const float2  x, const float2  n) { return ::simd_reflect(x,n); }
  static SIMD_CPPFUNC float3  reflect(const float3  x, const float3  n) { return ::simd_reflect(x,n); }
  static SIMD_CPPFUNC float4  reflect(const float4  x, const float4  n) { return ::simd_reflect(x,n); }
  static SIMD_CPPFUNC double2 reflect(const double2 x, const double2 n) { return ::simd_reflect(x,n); }
  static SIMD_CPPFUNC double3 reflect(const double3 x, const double3 n) { return ::simd_reflect(x,n); }
  static SIMD_CPPFUNC double4 reflect(const double4 x, const double4 n) { return ::simd_reflect(x,n); }

#if SIMD_LIBRARY_VERSION >= 6
  static SIMD_CPPFUNC half2   refract(const half2   x, const half2   n, const _Float16 eta) { return ::simd_refract(x,n,eta); }
  static SIMD_CPPFUNC half3   refract(const half3   x, const half3   n, const _Float16 eta) { return ::simd_refract(x,n,eta); }
  static SIMD_CPPFUNC half4   refract(const half4   x, const half4   n, const _Float16 eta) { return ::simd_refract(x,n,eta); }
#endif // SIMD_LIBRARY_VERSION >= 6
  static SIMD_CPPFUNC float2  refract(const float2  x, const float2  n, const float eta) { return ::simd_refract(x,n,eta); }
  static SIMD_CPPFUNC float3  refract(const float3  x, const float3  n, const float eta) { return ::simd_refract(x,n,eta); }
  static SIMD_CPPFUNC float4  refract(const float4  x, const float4  n, const float eta) { return ::simd_refract(x,n,eta); }
  static SIMD_CPPFUNC double2 refract(const double2 x, const double2 n, const float eta) { return ::simd_refract(x,n,eta); }
  static SIMD_CPPFUNC double3 refract(const double3 x, const double3 n, const float eta) { return ::simd_refract(x,n,eta); }
  static SIMD_CPPFUNC double4 refract(const double4 x, const double4 n, const float eta) { return ::simd_refract(x,n,eta); }
  
#if SIMD_LIBRARY_VERSION >= 2
  static SIMD_CPPFUNC float  orient(const float2  x, const float2 y) { return ::simd_orient(x,y); }
  static SIMD_CPPFUNC float  orient(const float2  a, const float2 b, const float2 c) { return ::simd_orient(a,b,c); }
  static SIMD_CPPFUNC float  orient(const float3  x, const float3 y, const float3 z) { return ::simd_orient(x,y,z); }
  static SIMD_CPPFUNC float  orient(const float3  a, const float3 b, const float3 c, const float3 d) { return ::simd_orient(a,b,c,d); }
  static SIMD_CPPFUNC double orient(const double2 x, const double2 y) { return ::simd_orient(x,y); }
  static SIMD_CPPFUNC double orient(const double2 a, const double2 b, const double2 c) { return ::simd_orient(a,b,c); }
  static SIMD_CPPFUNC double orient(const double3 x, const double3 y, const double3 z) { return ::simd_orient(x,y,z); }
  static SIMD_CPPFUNC double orient(const double3 a, const double3 b, const double3 c, const double3 d) { return ::simd_orient(a,b,c,d); }
#endif

#if SIMD_LIBRARY_VERSION >= 6
  static SIMD_CPPFUNC _Float16  orient(const half2  x, const half2 y) { return ::simd_orient(x,y); }
  static SIMD_CPPFUNC _Float16  orient(const half2  a, const half2 b, const half2 c) { return ::simd_orient(a,b,c); }
  static SIMD_CPPFUNC _Float16  orient(const half3  x, const half3 y, const half3 z) { return ::simd_orient(x,y,z); }
  static SIMD_CPPFUNC _Float16  orient(const half3  a, const half3 b, const half3 c, const half3 d) { return ::simd_orient(a,b,c,d); }
#endif

  /* precise and fast sub-namespaces                                        */
  namespace precise {
    static SIMD_CPPFUNC half2   project(const half2   x, const half2   y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC half3   project(const half3   x, const half3   y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC half4   project(const half4   x, const half4   y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC half8   project(const half8   x, const half8   y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC half16  project(const half16  x, const half16  y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC half32  project(const half32  x, const half32  y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC float2  project(const float2  x, const float2  y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC float3  project(const float3  x, const float3  y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC float4  project(const float4  x, const float4  y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC float8  project(const float8  x, const float8  y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC float16 project(const float16 x, const float16 y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC double2 project(const double2 x, const double2 y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC double3 project(const double3 x, const double3 y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC double4 project(const double4 x, const double4 y) { return ::simd_precise_project(x, y); }
    static SIMD_CPPFUNC double8 project(const double8 x, const double8 y) { return ::simd_precise_project(x, y); }

#if SIMD_LIBRARY_VERSION >= 6
    static SIMD_CPPFUNC _Float16 length(const half2  x) { return ::simd_precise_length(x); }
    static SIMD_CPPFUNC _Float16 length(const half3  x) { return ::simd_precise_length(x); }
    static SIMD_CPPFUNC _Float16 length(const half4  x) { return ::simd_precise_length(x); }
    static SIMD_CPPFUNC _Float16 length(const half8  x) { return ::simd_precise_length(x); }
    static SIMD_CPPFUNC _Float16 length(const half16 x) { return ::simd_precise_length(x); }
    static SIMD_CPPFUNC _Float16 length(const half32 x) { return ::simd_precise_length(x); }
#endif // #if SIMD_LIBRARY_VERSION >= 6
    static SIMD_CPPFUNC float  length(const float2  x) { return ::simd_precise_length(x); }
    static SIMD_CPPFUNC float  length(const float3  x) { return ::simd_precise_length(x); }
    static SIMD_CPPFUNC float  length(const float4  x) { return ::simd_precise_length(x); }
    static SIMD_CPPFUNC float  length(const float8  x) { return ::simd_precise_length(x); }
    static SIMD_CPPFUNC float  length(const float16 x) { return ::simd_precise_length(x); }
    static SIMD_CPPFUNC double length(const double2 x) { return ::simd_precise_length(x); }
    static SIMD_CPPFUNC double length(const double3 x) { return ::simd_precise_length(x); }
    static SIMD_CPPFUNC double length(const double4 x) { return ::simd_precise_length(x); }
    static SIMD_CPPFUNC double length(const double8 x) { return ::simd_precise_length(x); }
    
    static SIMD_CPPFUNC _Float16 distance(const half2  x, const half2  y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC _Float16 distance(const half3  x, const half3  y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC _Float16 distance(const half4  x, const half4  y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC _Float16 distance(const half8  x, const half8  y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC _Float16 distance(const half16 x, const half16 y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC _Float16 distance(const half32 x, const half32 y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC float  distance(const float2  x, const float2  y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC float  distance(const float3  x, const float3  y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC float  distance(const float4  x, const float4  y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC float  distance(const float8  x, const float8  y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC float  distance(const float16 x, const float16 y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC double distance(const double2 x, const double2 y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC double distance(const double3 x, const double3 y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC double distance(const double4 x, const double4 y) { return ::simd_precise_distance(x, y); }
    static SIMD_CPPFUNC double distance(const double8 x, const double8 y) { return ::simd_precise_distance(x, y); }
    
    static SIMD_CPPFUNC half2   normalize(const half2   x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC half3   normalize(const half3   x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC half4   normalize(const half4   x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC half8   normalize(const half8   x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC half16  normalize(const half16  x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC half32  normalize(const half32  x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC float2  normalize(const float2  x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC float3  normalize(const float3  x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC float4  normalize(const float4  x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC float8  normalize(const float8  x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC float16 normalize(const float16 x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC double2 normalize(const double2 x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC double3 normalize(const double3 x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC double4 normalize(const double4 x) { return ::simd_precise_normalize(x); }
    static SIMD_CPPFUNC double8 normalize(const double8 x) { return ::simd_precise_normalize(x); }
  }
  
  namespace fast {
    static SIMD_CPPFUNC half2   project(const half2   x, const half2   y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC half3   project(const half3   x, const half3   y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC half4   project(const half4   x, const half4   y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC half8   project(const half8   x, const half8   y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC half16  project(const half16  x, const half16  y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC half32  project(const half32  x, const half32  y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC float2  project(const float2  x, const float2  y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC float3  project(const float3  x, const float3  y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC float4  project(const float4  x, const float4  y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC float8  project(const float8  x, const float8  y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC float16 project(const float16 x, const float16 y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC double2 project(const double2 x, const double2 y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC double3 project(const double3 x, const double3 y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC double4 project(const double4 x, const double4 y) { return ::simd_fast_project(x, y); }
    static SIMD_CPPFUNC double8 project(const double8 x, const double8 y) { return ::simd_fast_project(x, y); }
    
    static SIMD_CPPFUNC _Float16 length(const half2  x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC _Float16 length(const half3  x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC _Float16 length(const half4  x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC _Float16 length(const half8  x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC _Float16 length(const half16 x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC _Float16 length(const half32 x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC float  length(const float2  x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC float  length(const float3  x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC float  length(const float4  x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC float  length(const float8  x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC float  length(const float16 x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC double length(const double2 x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC double length(const double3 x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC double length(const double4 x) { return ::simd_fast_length(x); }
    static SIMD_CPPFUNC double length(const double8 x) { return ::simd_fast_length(x); }
    
    static SIMD_CPPFUNC _Float16 distance(const half2  x, const half2  y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC _Float16 distance(const half3  x, const half3  y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC _Float16 distance(const half4  x, const half4  y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC _Float16 distance(const half8  x, const half8  y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC _Float16 distance(const half16 x, const half16 y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC _Float16 distance(const half32 x, const half32 y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC float  distance(const float2  x, const float2  y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC float  distance(const float3  x, const float3  y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC float  distance(const float4  x, const float4  y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC float  distance(const float8  x, const float8  y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC float  distance(const float16 x, const float16 y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC double distance(const double2 x, const double2 y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC double distance(const double3 x, const double3 y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC double distance(const double4 x, const double4 y) { return ::simd_fast_distance(x, y); }
    static SIMD_CPPFUNC double distance(const double8 x, const double8 y) { return ::simd_fast_distance(x, y); }
    
    static SIMD_CPPFUNC half2   normalize(const half2   x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC half3   normalize(const half3   x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC half4   normalize(const half4   x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC half8   normalize(const half8   x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC half16  normalize(const half16  x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC half32  normalize(const half32  x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC float2  normalize(const float2  x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC float3  normalize(const float3  x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC float4  normalize(const float4  x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC float8  normalize(const float8  x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC float16 normalize(const float16 x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC double2 normalize(const double2 x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC double3 normalize(const double3 x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC double4 normalize(const double4 x) { return ::simd_fast_normalize(x); }
    static SIMD_CPPFUNC double8 normalize(const double8 x) { return ::simd_fast_normalize(x); }
  }
}

extern "C" {
#endif /* __cplusplus */
  
#pragma mark - Implementation

static _Float16 SIMD_CFUNC simd_dot(simd_half2  __x, simd_half2  __y) { return simd_reduce_add(__x*__y); }
static _Float16 SIMD_CFUNC simd_dot(simd_half3  __x, simd_half3  __y) { return simd_reduce_add(__x*__y); }
static _Float16 SIMD_CFUNC simd_dot(simd_half4  __x, simd_half4  __y) { return simd_reduce_add(__x*__y); }
static _Float16 SIMD_CFUNC simd_dot(simd_half8  __x, simd_half8  __y) { return simd_reduce_add(__x*__y); }
static _Float16 SIMD_CFUNC simd_dot(simd_half16 __x, simd_half16 __y) { return simd_reduce_add(__x*__y); }
static _Float16 SIMD_CFUNC simd_dot(simd_half32 __x, simd_half32 __y) { return simd_reduce_add(__x*__y); }
static float  SIMD_CFUNC simd_dot(simd_float2  __x, simd_float2  __y) { return simd_reduce_add(__x*__y); }
static float  SIMD_CFUNC simd_dot(simd_float3  __x, simd_float3  __y) { return simd_reduce_add(__x*__y); }
static float  SIMD_CFUNC simd_dot(simd_float4  __x, simd_float4  __y) { return simd_reduce_add(__x*__y); }
static float  SIMD_CFUNC simd_dot(simd_float8  __x, simd_float8  __y) { return simd_reduce_add(__x*__y); }
static float  SIMD_CFUNC simd_dot(simd_float16 __x, simd_float16 __y) { return simd_reduce_add(__x*__y); }
static double SIMD_CFUNC simd_dot(simd_double2 __x, simd_double2 __y) { return simd_reduce_add(__x*__y); }
static double SIMD_CFUNC simd_dot(simd_double3 __x, simd_double3 __y) { return simd_reduce_add(__x*__y); }
static double SIMD_CFUNC simd_dot(simd_double4 __x, simd_double4 __y) { return simd_reduce_add(__x*__y); }
static double SIMD_CFUNC simd_dot(simd_double8 __x, simd_double8 __y) { return simd_reduce_add(__x*__y); }

static simd_half2   SIMD_CFUNC simd_precise_project(simd_half2   __x, simd_half2   __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_half3   SIMD_CFUNC simd_precise_project(simd_half3   __x, simd_half3   __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_half4   SIMD_CFUNC simd_precise_project(simd_half4   __x, simd_half4   __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_half8   SIMD_CFUNC simd_precise_project(simd_half8   __x, simd_half8   __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_half16  SIMD_CFUNC simd_precise_project(simd_half16  __x, simd_half16  __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_half32  SIMD_CFUNC simd_precise_project(simd_half32  __x, simd_half32  __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_float2  SIMD_CFUNC simd_precise_project(simd_float2  __x, simd_float2  __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_float3  SIMD_CFUNC simd_precise_project(simd_float3  __x, simd_float3  __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_float4  SIMD_CFUNC simd_precise_project(simd_float4  __x, simd_float4  __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_float8  SIMD_CFUNC simd_precise_project(simd_float8  __x, simd_float8  __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_float16 SIMD_CFUNC simd_precise_project(simd_float16 __x, simd_float16 __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_double2 SIMD_CFUNC simd_precise_project(simd_double2 __x, simd_double2 __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_double3 SIMD_CFUNC simd_precise_project(simd_double3 __x, simd_double3 __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_double4 SIMD_CFUNC simd_precise_project(simd_double4 __x, simd_double4 __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }
static simd_double8 SIMD_CFUNC simd_precise_project(simd_double8 __x, simd_double8 __y) { return simd_dot(__x,__y)/simd_dot(__y,__y)*__y; }

static simd_half2   SIMD_CFUNC simd_fast_project(simd_half2   __x, simd_half2   __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_half3   SIMD_CFUNC simd_fast_project(simd_half3   __x, simd_half3   __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_half4   SIMD_CFUNC simd_fast_project(simd_half4   __x, simd_half4   __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_half8   SIMD_CFUNC simd_fast_project(simd_half8   __x, simd_half8   __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_half16  SIMD_CFUNC simd_fast_project(simd_half16  __x, simd_half16  __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_half32  SIMD_CFUNC simd_fast_project(simd_half32  __x, simd_half32  __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_float2  SIMD_CFUNC simd_fast_project(simd_float2  __x, simd_float2  __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_float3  SIMD_CFUNC simd_fast_project(simd_float3  __x, simd_float3  __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_float4  SIMD_CFUNC simd_fast_project(simd_float4  __x, simd_float4  __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_float8  SIMD_CFUNC simd_fast_project(simd_float8  __x, simd_float8  __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_float16 SIMD_CFUNC simd_fast_project(simd_float16 __x, simd_float16 __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_double2 SIMD_CFUNC simd_fast_project(simd_double2 __x, simd_double2 __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_double3 SIMD_CFUNC simd_fast_project(simd_double3 __x, simd_double3 __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_double4 SIMD_CFUNC simd_fast_project(simd_double4 __x, simd_double4 __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }
static simd_double8 SIMD_CFUNC simd_fast_project(simd_double8 __x, simd_double8 __y) { return __y*simd_dot(__x,__y)*simd_fast_recip(simd_dot(__y,__y)); }

#if defined __FAST_MATH__
static simd_half2   SIMD_CFUNC simd_project(simd_half2   __x, simd_half2   __y) { return simd_fast_project(__x,__y); }
static simd_half3   SIMD_CFUNC simd_project(simd_half3   __x, simd_half3   __y) { return simd_fast_project(__x,__y); }
static simd_half4   SIMD_CFUNC simd_project(simd_half4   __x, simd_half4   __y) { return simd_fast_project(__x,__y); }
static simd_half8   SIMD_CFUNC simd_project(simd_half8   __x, simd_half8   __y) { return simd_fast_project(__x,__y); }
static simd_half16  SIMD_CFUNC simd_project(simd_half16  __x, simd_half16  __y) { return simd_fast_project(__x,__y); }
static simd_half32  SIMD_CFUNC simd_project(simd_half32  __x, simd_half32  __y) { return simd_fast_project(__x,__y); }
static simd_float2  SIMD_CFUNC simd_project(simd_float2  __x, simd_float2  __y) { return simd_fast_project(__x,__y); }
static simd_float3  SIMD_CFUNC simd_project(simd_float3  __x, simd_float3  __y) { return simd_fast_project(__x,__y); }
static simd_float4  SIMD_CFUNC simd_project(simd_float4  __x, simd_float4  __y) { return simd_fast_project(__x,__y); }
static simd_float8  SIMD_CFUNC simd_project(simd_float8  __x, simd_float8  __y) { return simd_fast_project(__x,__y); }
static simd_float16 SIMD_CFUNC simd_project(simd_float16 __x, simd_float16 __y) { return simd_fast_project(__x,__y); }
static simd_double2 SIMD_CFUNC simd_project(simd_double2 __x, simd_double2 __y) { return simd_fast_project(__x,__y); }
static simd_double3 SIMD_CFUNC simd_project(simd_double3 __x, simd_double3 __y) { return simd_fast_project(__x,__y); }
static simd_double4 SIMD_CFUNC simd_project(simd_double4 __x, simd_double4 __y) { return simd_fast_project(__x,__y); }
static simd_double8 SIMD_CFUNC simd_project(simd_double8 __x, simd_double8 __y) { return simd_fast_project(__x,__y); }
#else
static simd_half2   SIMD_CFUNC simd_project(simd_half2   __x, simd_half2   __y) { return simd_precise_project(__x,__y); }
static simd_half3   SIMD_CFUNC simd_project(simd_half3   __x, simd_half3   __y) { return simd_precise_project(__x,__y); }
static simd_half4   SIMD_CFUNC simd_project(simd_half4   __x, simd_half4   __y) { return simd_precise_project(__x,__y); }
static simd_half8   SIMD_CFUNC simd_project(simd_half8   __x, simd_half8   __y) { return simd_precise_project(__x,__y); }
static simd_half16  SIMD_CFUNC simd_project(simd_half16  __x, simd_half16  __y) { return simd_precise_project(__x,__y); }
static simd_half32  SIMD_CFUNC simd_project(simd_half32  __x, simd_half32  __y) { return simd_precise_project(__x,__y); }
static simd_float2  SIMD_CFUNC simd_project(simd_float2  __x, simd_float2  __y) { return simd_precise_project(__x,__y); }
static simd_float3  SIMD_CFUNC simd_project(simd_float3  __x, simd_float3  __y) { return simd_precise_project(__x,__y); }
static simd_float4  SIMD_CFUNC simd_project(simd_float4  __x, simd_float4  __y) { return simd_precise_project(__x,__y); }
static simd_float8  SIMD_CFUNC simd_project(simd_float8  __x, simd_float8  __y) { return simd_precise_project(__x,__y); }
static simd_float16 SIMD_CFUNC simd_project(simd_float16 __x, simd_float16 __y) { return simd_precise_project(__x,__y); }
static simd_double2 SIMD_CFUNC simd_project(simd_double2 __x, simd_double2 __y) { return simd_precise_project(__x,__y); }
static simd_double3 SIMD_CFUNC simd_project(simd_double3 __x, simd_double3 __y) { return simd_precise_project(__x,__y); }
static simd_double4 SIMD_CFUNC simd_project(simd_double4 __x, simd_double4 __y) { return simd_precise_project(__x,__y); }
static simd_double8 SIMD_CFUNC simd_project(simd_double8 __x, simd_double8 __y) { return simd_precise_project(__x,__y); }
#endif

#if SIMD_LIBRARY_VERSION >= 6
static _Float16 SIMD_CFUNC simd_precise_length(simd_half2  __x) { return __sqrtf16(simd_length_squared(__x)); }
static _Float16 SIMD_CFUNC simd_precise_length(simd_half3  __x) { return __sqrtf16(simd_length_squared(__x)); }
static _Float16 SIMD_CFUNC simd_precise_length(simd_half4  __x) { return __sqrtf16(simd_length_squared(__x)); }
static _Float16 SIMD_CFUNC simd_precise_length(simd_half8  __x) { return __sqrtf16(simd_length_squared(__x)); }
static _Float16 SIMD_CFUNC simd_precise_length(simd_half16 __x) { return __sqrtf16(simd_length_squared(__x)); }
static _Float16 SIMD_CFUNC simd_precise_length(simd_half32 __x) { return __sqrtf16(simd_length_squared(__x)); }
#endif // SIMD_LIBRARY_VERSION >= 6
static float  SIMD_CFUNC simd_precise_length(simd_float2  __x) { return sqrtf(simd_length_squared(__x)); }
static float  SIMD_CFUNC simd_precise_length(simd_float3  __x) { return sqrtf(simd_length_squared(__x)); }
static float  SIMD_CFUNC simd_precise_length(simd_float4  __x) { return sqrtf(simd_length_squared(__x)); }
static float  SIMD_CFUNC simd_precise_length(simd_float8  __x) { return sqrtf(simd_length_squared(__x)); }
static float  SIMD_CFUNC simd_precise_length(simd_float16 __x) { return sqrtf(simd_length_squared(__x)); }
static double SIMD_CFUNC simd_precise_length(simd_double2 __x) { return sqrt(simd_length_squared(__x)); }
static double SIMD_CFUNC simd_precise_length(simd_double3 __x) { return sqrt(simd_length_squared(__x)); }
static double SIMD_CFUNC simd_precise_length(simd_double4 __x) { return sqrt(simd_length_squared(__x)); }
static double SIMD_CFUNC simd_precise_length(simd_double8 __x) { return sqrt(simd_length_squared(__x)); }
#if SIMD_LIBRARY_VERSION >= 6
static _Float16 SIMD_CFUNC simd_fast_length(simd_half2  __x) { return simd_precise_length(__x); }
static _Float16 SIMD_CFUNC simd_fast_length(simd_half3  __x) { return simd_precise_length(__x); }
static _Float16 SIMD_CFUNC simd_fast_length(simd_half4  __x) { return simd_precise_length(__x); }
static _Float16 SIMD_CFUNC simd_fast_length(simd_half8  __x) { return simd_precise_length(__x); }
static _Float16 SIMD_CFUNC simd_fast_length(simd_half16 __x) { return simd_precise_length(__x); }
static _Float16 SIMD_CFUNC simd_fast_length(simd_half32 __x) { return simd_precise_length(__x); }
#endif // SIMD_LIBRARY_VERSION >= 6
static float  SIMD_CFUNC simd_fast_length(simd_float2  __x) { return simd_precise_length(__x); }
static float  SIMD_CFUNC simd_fast_length(simd_float3  __x) { return simd_precise_length(__x); }
static float  SIMD_CFUNC simd_fast_length(simd_float4  __x) { return simd_precise_length(__x); }
static float  SIMD_CFUNC simd_fast_length(simd_float8  __x) { return simd_precise_length(__x); }
static float  SIMD_CFUNC simd_fast_length(simd_float16 __x) { return simd_precise_length(__x); }
static double SIMD_CFUNC simd_fast_length(simd_double2 __x) { return simd_precise_length(__x); }
static double SIMD_CFUNC simd_fast_length(simd_double3 __x) { return simd_precise_length(__x); }
static double SIMD_CFUNC simd_fast_length(simd_double4 __x) { return simd_precise_length(__x); }
static double SIMD_CFUNC simd_fast_length(simd_double8 __x) { return simd_precise_length(__x); }

#if defined __FAST_MATH__
static _Float16 SIMD_CFUNC simd_length(simd_half2  __x) { return simd_fast_length(__x); }
static _Float16 SIMD_CFUNC simd_length(simd_half3  __x) { return simd_fast_length(__x); }
static _Float16 SIMD_CFUNC simd_length(simd_half4  __x) { return simd_fast_length(__x); }
static _Float16 SIMD_CFUNC simd_length(simd_half8  __x) { return simd_fast_length(__x); }
static _Float16 SIMD_CFUNC simd_length(simd_half16 __x) { return simd_fast_length(__x); }
static _Float16 SIMD_CFUNC simd_length(simd_half32 __x) { return simd_fast_length(__x); }
static float  SIMD_CFUNC simd_length(simd_float2  __x) { return simd_fast_length(__x); }
static float  SIMD_CFUNC simd_length(simd_float3  __x) { return simd_fast_length(__x); }
static float  SIMD_CFUNC simd_length(simd_float4  __x) { return simd_fast_length(__x); }
static float  SIMD_CFUNC simd_length(simd_float8  __x) { return simd_fast_length(__x); }
static float  SIMD_CFUNC simd_length(simd_float16 __x) { return simd_fast_length(__x); }
static double SIMD_CFUNC simd_length(simd_double2 __x) { return simd_fast_length(__x); }
static double SIMD_CFUNC simd_length(simd_double3 __x) { return simd_fast_length(__x); }
static double SIMD_CFUNC simd_length(simd_double4 __x) { return simd_fast_length(__x); }
static double SIMD_CFUNC simd_length(simd_double8 __x) { return simd_fast_length(__x); }
#else
#if SIMD_LIBRARY_VERSION >= 6
static _Float16 SIMD_CFUNC simd_length(simd_half2  __x) { return simd_precise_length(__x); }
static _Float16 SIMD_CFUNC simd_length(simd_half3  __x) { return simd_precise_length(__x); }
static _Float16 SIMD_CFUNC simd_length(simd_half4  __x) { return simd_precise_length(__x); }
static _Float16 SIMD_CFUNC simd_length(simd_half8  __x) { return simd_precise_length(__x); }
static _Float16 SIMD_CFUNC simd_length(simd_half16 __x) { return simd_precise_length(__x); }
static _Float16 SIMD_CFUNC simd_length(simd_half32 __x) { return simd_precise_length(__x); }
#endif // SIMD_LIBRARY_VERSION >= 6
static float  SIMD_CFUNC simd_length(simd_float2  __x) { return simd_precise_length(__x); }
static float  SIMD_CFUNC simd_length(simd_float3  __x) { return simd_precise_length(__x); }
static float  SIMD_CFUNC simd_length(simd_float4  __x) { return simd_precise_length(__x); }
static float  SIMD_CFUNC simd_length(simd_float8  __x) { return simd_precise_length(__x); }
static float  SIMD_CFUNC simd_length(simd_float16 __x) { return simd_precise_length(__x); }
static double SIMD_CFUNC simd_length(simd_double2 __x) { return simd_precise_length(__x); }
static double SIMD_CFUNC simd_length(simd_double3 __x) { return simd_precise_length(__x); }
static double SIMD_CFUNC simd_length(simd_double4 __x) { return simd_precise_length(__x); }
static double SIMD_CFUNC simd_length(simd_double8 __x) { return simd_precise_length(__x); }
#endif

static _Float16 SIMD_CFUNC simd_length_squared(simd_half2  __x) { return simd_dot(__x,__x); }
static _Float16 SIMD_CFUNC simd_length_squared(simd_half3  __x) { return simd_dot(__x,__x); }
static _Float16 SIMD_CFUNC simd_length_squared(simd_half4  __x) { return simd_dot(__x,__x); }
static _Float16 SIMD_CFUNC simd_length_squared(simd_half8  __x) { return simd_dot(__x,__x); }
static _Float16 SIMD_CFUNC simd_length_squared(simd_half16 __x) { return simd_dot(__x,__x); }
static _Float16 SIMD_CFUNC simd_length_squared(simd_half32 __x) { return simd_dot(__x,__x); }
static float  SIMD_CFUNC simd_length_squared(simd_float2  __x) { return simd_dot(__x,__x); }
static float  SIMD_CFUNC simd_length_squared(simd_float3  __x) { return simd_dot(__x,__x); }
static float  SIMD_CFUNC simd_length_squared(simd_float4  __x) { return simd_dot(__x,__x); }
static float  SIMD_CFUNC simd_length_squared(simd_float8  __x) { return simd_dot(__x,__x); }
static float  SIMD_CFUNC simd_length_squared(simd_float16 __x) { return simd_dot(__x,__x); }
static double SIMD_CFUNC simd_length_squared(simd_double2 __x) { return simd_dot(__x,__x); }
static double SIMD_CFUNC simd_length_squared(simd_double3 __x) { return simd_dot(__x,__x); }
static double SIMD_CFUNC simd_length_squared(simd_double4 __x) { return simd_dot(__x,__x); }
static double SIMD_CFUNC simd_length_squared(simd_double8 __x) { return simd_dot(__x,__x); }

static _Float16 SIMD_CFUNC simd_norm_one(simd_half2  __x) { return simd_reduce_add(__tg_fabs(__x)); }
static _Float16 SIMD_CFUNC simd_norm_one(simd_half3  __x) { return simd_reduce_add(__tg_fabs(__x)); }
static _Float16 SIMD_CFUNC simd_norm_one(simd_half4  __x) { return simd_reduce_add(__tg_fabs(__x)); }
static _Float16 SIMD_CFUNC simd_norm_one(simd_half8  __x) { return simd_reduce_add(__tg_fabs(__x)); }
static _Float16 SIMD_CFUNC simd_norm_one(simd_half16 __x) { return simd_reduce_add(__tg_fabs(__x)); }
static _Float16 SIMD_CFUNC simd_norm_one(simd_half32 __x) { return simd_reduce_add(__tg_fabs(__x)); }
static float SIMD_CFUNC simd_norm_one(simd_float2 __x) { return simd_reduce_add(__tg_fabs(__x)); }
static float SIMD_CFUNC simd_norm_one(simd_float3 __x) { return simd_reduce_add(__tg_fabs(__x)); }
static float SIMD_CFUNC simd_norm_one(simd_float4 __x) { return simd_reduce_add(__tg_fabs(__x)); }
static float SIMD_CFUNC simd_norm_one(simd_float8 __x) { return simd_reduce_add(__tg_fabs(__x)); }
static float SIMD_CFUNC simd_norm_one(simd_float16 __x) { return simd_reduce_add(__tg_fabs(__x)); }
static double SIMD_CFUNC simd_norm_one(simd_double2 __x) { return simd_reduce_add(__tg_fabs(__x)); }
static double SIMD_CFUNC simd_norm_one(simd_double3 __x) { return simd_reduce_add(__tg_fabs(__x)); }
static double SIMD_CFUNC simd_norm_one(simd_double4 __x) { return simd_reduce_add(__tg_fabs(__x)); }
static double SIMD_CFUNC simd_norm_one(simd_double8 __x) { return simd_reduce_add(__tg_fabs(__x)); }

static _Float16 SIMD_CFUNC simd_norm_inf(simd_half2  __x) { return simd_reduce_max(__tg_fabs(__x)); }
static _Float16 SIMD_CFUNC simd_norm_inf(simd_half3  __x) { return simd_reduce_max(__tg_fabs(__x)); }
static _Float16 SIMD_CFUNC simd_norm_inf(simd_half4  __x) { return simd_reduce_max(__tg_fabs(__x)); }
static _Float16 SIMD_CFUNC simd_norm_inf(simd_half8  __x) { return simd_reduce_max(__tg_fabs(__x)); }
static _Float16 SIMD_CFUNC simd_norm_inf(simd_half16 __x) { return simd_reduce_max(__tg_fabs(__x)); }
static _Float16 SIMD_CFUNC simd_norm_inf(simd_half32 __x) { return simd_reduce_max(__tg_fabs(__x)); }
static float SIMD_CFUNC simd_norm_inf(simd_float2 __x) { return simd_reduce_max(__tg_fabs(__x)); }
static float SIMD_CFUNC simd_norm_inf(simd_float3 __x) { return simd_reduce_max(__tg_fabs(__x)); }
static float SIMD_CFUNC simd_norm_inf(simd_float4 __x) { return simd_reduce_max(__tg_fabs(__x)); }
static float SIMD_CFUNC simd_norm_inf(simd_float8 __x) { return simd_reduce_max(__tg_fabs(__x)); }
static float SIMD_CFUNC simd_norm_inf(simd_float16 __x) { return simd_reduce_max(__tg_fabs(__x)); }
static double SIMD_CFUNC simd_norm_inf(simd_double2 __x) { return simd_reduce_max(__tg_fabs(__x)); }
static double SIMD_CFUNC simd_norm_inf(simd_double3 __x) { return simd_reduce_max(__tg_fabs(__x)); }
static double SIMD_CFUNC simd_norm_inf(simd_double4 __x) { return simd_reduce_max(__tg_fabs(__x)); }
static double SIMD_CFUNC simd_norm_inf(simd_double8 __x) { return simd_reduce_max(__tg_fabs(__x)); }

#if SIMD_LIBRARY_VERSION >= 6
static _Float16 SIMD_CFUNC simd_precise_distance(simd_half2  __x, simd_half2  __y) { return simd_precise_length(__x - __y); }
static _Float16 SIMD_CFUNC simd_precise_distance(simd_half3  __x, simd_half3  __y) { return simd_precise_length(__x - __y); }
static _Float16 SIMD_CFUNC simd_precise_distance(simd_half4  __x, simd_half4  __y) { return simd_precise_length(__x - __y); }
static _Float16 SIMD_CFUNC simd_precise_distance(simd_half8  __x, simd_half8  __y) { return simd_precise_length(__x - __y); }
static _Float16 SIMD_CFUNC simd_precise_distance(simd_half16 __x, simd_half16 __y) { return simd_precise_length(__x - __y); }
static _Float16 SIMD_CFUNC simd_precise_distance(simd_half32 __x, simd_half32 __y) { return simd_precise_length(__x - __y); }
#endif // SIMD_LIBRARY_VERSION >= 6
static float  SIMD_CFUNC simd_precise_distance(simd_float2  __x, simd_float2  __y) { return simd_precise_length(__x - __y); }
static float  SIMD_CFUNC simd_precise_distance(simd_float3  __x, simd_float3  __y) { return simd_precise_length(__x - __y); }
static float  SIMD_CFUNC simd_precise_distance(simd_float4  __x, simd_float4  __y) { return simd_precise_length(__x - __y); }
static float  SIMD_CFUNC simd_precise_distance(simd_float8  __x, simd_float8  __y) { return simd_precise_length(__x - __y); }
static float  SIMD_CFUNC simd_precise_distance(simd_float16 __x, simd_float16 __y) { return simd_precise_length(__x - __y); }
static double SIMD_CFUNC simd_precise_distance(simd_double2 __x, simd_double2 __y) { return simd_precise_length(__x - __y); }
static double SIMD_CFUNC simd_precise_distance(simd_double3 __x, simd_double3 __y) { return simd_precise_length(__x - __y); }
static double SIMD_CFUNC simd_precise_distance(simd_double4 __x, simd_double4 __y) { return simd_precise_length(__x - __y); }
static double SIMD_CFUNC simd_precise_distance(simd_double8 __x, simd_double8 __y) { return simd_precise_length(__x - __y); }

static _Float16 SIMD_CFUNC simd_fast_distance(simd_half2  __x, simd_half2  __y) { return simd_fast_length(__x - __y); }
static _Float16 SIMD_CFUNC simd_fast_distance(simd_half3  __x, simd_half3  __y) { return simd_fast_length(__x - __y); }
static _Float16 SIMD_CFUNC simd_fast_distance(simd_half4  __x, simd_half4  __y) { return simd_fast_length(__x - __y); }
static _Float16 SIMD_CFUNC simd_fast_distance(simd_half8  __x, simd_half8  __y) { return simd_fast_length(__x - __y); }
static _Float16 SIMD_CFUNC simd_fast_distance(simd_half16 __x, simd_half16 __y) { return simd_fast_length(__x - __y); }
static _Float16 SIMD_CFUNC simd_fast_distance(simd_half32 __x, simd_half32 __y) { return simd_fast_length(__x - __y); }
static float  SIMD_CFUNC simd_fast_distance(simd_float2  __x, simd_float2  __y) { return simd_fast_length(__x - __y); }
static float  SIMD_CFUNC simd_fast_distance(simd_float3  __x, simd_float3  __y) { return simd_fast_length(__x - __y); }
static float  SIMD_CFUNC simd_fast_distance(simd_float4  __x, simd_float4  __y) { return simd_fast_length(__x - __y); }
static float  SIMD_CFUNC simd_fast_distance(simd_float8  __x, simd_float8  __y) { return simd_fast_length(__x - __y); }
static float  SIMD_CFUNC simd_fast_distance(simd_float16 __x, simd_float16 __y) { return simd_fast_length(__x - __y); }
static double SIMD_CFUNC simd_fast_distance(simd_double2 __x, simd_double2 __y) { return simd_fast_length(__x - __y); }
static double SIMD_CFUNC simd_fast_distance(simd_double3 __x, simd_double3 __y) { return simd_fast_length(__x - __y); }
static double SIMD_CFUNC simd_fast_distance(simd_double4 __x, simd_double4 __y) { return simd_fast_length(__x - __y); }
static double SIMD_CFUNC simd_fast_distance(simd_double8 __x, simd_double8 __y) { return simd_fast_length(__x - __y); }

#if defined __FAST_MATH__
static _Float16 SIMD_CFUNC simd_distance(simd_half2  __x, simd_half2  __y) { return simd_fast_distance(__x,__y); }
static _Float16 SIMD_CFUNC simd_distance(simd_half3  __x, simd_half3  __y) { return simd_fast_distance(__x,__y); }
static _Float16 SIMD_CFUNC simd_distance(simd_half4  __x, simd_half4  __y) { return simd_fast_distance(__x,__y); }
static _Float16 SIMD_CFUNC simd_distance(simd_half8  __x, simd_half8  __y) { return simd_fast_distance(__x,__y); }
static _Float16 SIMD_CFUNC simd_distance(simd_half16 __x, simd_half16 __y) { return simd_fast_distance(__x,__y); }
static _Float16 SIMD_CFUNC simd_distance(simd_half32 __x, simd_half32 __y) { return simd_fast_distance(__x,__y); }
static float  SIMD_CFUNC simd_distance(simd_float2  __x, simd_float2  __y) { return simd_fast_distance(__x,__y); }
static float  SIMD_CFUNC simd_distance(simd_float3  __x, simd_float3  __y) { return simd_fast_distance(__x,__y); }
static float  SIMD_CFUNC simd_distance(simd_float4  __x, simd_float4  __y) { return simd_fast_distance(__x,__y); }
static float  SIMD_CFUNC simd_distance(simd_float8  __x, simd_float8  __y) { return simd_fast_distance(__x,__y); }
static float  SIMD_CFUNC simd_distance(simd_float16 __x, simd_float16 __y) { return simd_fast_distance(__x,__y); }
static double SIMD_CFUNC simd_distance(simd_double2 __x, simd_double2 __y) { return simd_fast_distance(__x,__y); }
static double SIMD_CFUNC simd_distance(simd_double3 __x, simd_double3 __y) { return simd_fast_distance(__x,__y); }
static double SIMD_CFUNC simd_distance(simd_double4 __x, simd_double4 __y) { return simd_fast_distance(__x,__y); }
static double SIMD_CFUNC simd_distance(simd_double8 __x, simd_double8 __y) { return simd_fast_distance(__x,__y); }
#else
static _Float16 SIMD_CFUNC simd_distance(simd_half2  __x, simd_half2  __y) { return simd_precise_distance(__x,__y); }
static _Float16 SIMD_CFUNC simd_distance(simd_half3  __x, simd_half3  __y) { return simd_precise_distance(__x,__y); }
static _Float16 SIMD_CFUNC simd_distance(simd_half4  __x, simd_half4  __y) { return simd_precise_distance(__x,__y); }
static _Float16 SIMD_CFUNC simd_distance(simd_half8  __x, simd_half8  __y) { return simd_precise_distance(__x,__y); }
static _Float16 SIMD_CFUNC simd_distance(simd_half16 __x, simd_half16 __y) { return simd_precise_distance(__x,__y); }
static _Float16 SIMD_CFUNC simd_distance(simd_half32 __x, simd_half32 __y) { return simd_precise_distance(__x,__y); }
static float  SIMD_CFUNC simd_distance(simd_float2  __x, simd_float2  __y) { return simd_precise_distance(__x,__y); }
static float  SIMD_CFUNC simd_distance(simd_float3  __x, simd_float3  __y) { return simd_precise_distance(__x,__y); }
static float  SIMD_CFUNC simd_distance(simd_float4  __x, simd_float4  __y) { return simd_precise_distance(__x,__y); }
static float  SIMD_CFUNC simd_distance(simd_float8  __x, simd_float8  __y) { return simd_precise_distance(__x,__y); }
static float  SIMD_CFUNC simd_distance(simd_float16 __x, simd_float16 __y) { return simd_precise_distance(__x,__y); }
static double SIMD_CFUNC simd_distance(simd_double2 __x, simd_double2 __y) { return simd_precise_distance(__x,__y); }
static double SIMD_CFUNC simd_distance(simd_double3 __x, simd_double3 __y) { return simd_precise_distance(__x,__y); }
static double SIMD_CFUNC simd_distance(simd_double4 __x, simd_double4 __y) { return simd_precise_distance(__x,__y); }
static double SIMD_CFUNC simd_distance(simd_double8 __x, simd_double8 __y) { return simd_precise_distance(__x,__y); }
#endif

static _Float16 SIMD_CFUNC simd_distance_squared(simd_half2  __x, simd_half2  __y) { return simd_length_squared(__x - __y); }
static _Float16 SIMD_CFUNC simd_distance_squared(simd_half3  __x, simd_half3  __y) { return simd_length_squared(__x - __y); }
static _Float16 SIMD_CFUNC simd_distance_squared(simd_half4  __x, simd_half4  __y) { return simd_length_squared(__x - __y); }
static _Float16 SIMD_CFUNC simd_distance_squared(simd_half8  __x, simd_half8  __y) { return simd_length_squared(__x - __y); }
static _Float16 SIMD_CFUNC simd_distance_squared(simd_half16 __x, simd_half16 __y) { return simd_length_squared(__x - __y); }
static _Float16 SIMD_CFUNC simd_distance_squared(simd_half32 __x, simd_half32 __y) { return simd_length_squared(__x - __y); }
static float  SIMD_CFUNC simd_distance_squared(simd_float2  __x, simd_float2  __y) { return simd_length_squared(__x - __y); }
static float  SIMD_CFUNC simd_distance_squared(simd_float3  __x, simd_float3  __y) { return simd_length_squared(__x - __y); }
static float  SIMD_CFUNC simd_distance_squared(simd_float4  __x, simd_float4  __y) { return simd_length_squared(__x - __y); }
static float  SIMD_CFUNC simd_distance_squared(simd_float8  __x, simd_float8  __y) { return simd_length_squared(__x - __y); }
static float  SIMD_CFUNC simd_distance_squared(simd_float16 __x, simd_float16 __y) { return simd_length_squared(__x - __y); }
static double SIMD_CFUNC simd_distance_squared(simd_double2 __x, simd_double2 __y) { return simd_length_squared(__x - __y); }
static double SIMD_CFUNC simd_distance_squared(simd_double3 __x, simd_double3 __y) { return simd_length_squared(__x - __y); }
static double SIMD_CFUNC simd_distance_squared(simd_double4 __x, simd_double4 __y) { return simd_length_squared(__x - __y); }
static double SIMD_CFUNC simd_distance_squared(simd_double8 __x, simd_double8 __y) { return simd_length_squared(__x - __y); }

static simd_half2   SIMD_CFUNC simd_precise_normalize(simd_half2   __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_half3   SIMD_CFUNC simd_precise_normalize(simd_half3   __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_half4   SIMD_CFUNC simd_precise_normalize(simd_half4   __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_half8   SIMD_CFUNC simd_precise_normalize(simd_half8   __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_half16  SIMD_CFUNC simd_precise_normalize(simd_half16  __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_half32  SIMD_CFUNC simd_precise_normalize(simd_half32  __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_float2  SIMD_CFUNC simd_precise_normalize(simd_float2  __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_float3  SIMD_CFUNC simd_precise_normalize(simd_float3  __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_float4  SIMD_CFUNC simd_precise_normalize(simd_float4  __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_float8  SIMD_CFUNC simd_precise_normalize(simd_float8  __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_float16 SIMD_CFUNC simd_precise_normalize(simd_float16 __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_double2 SIMD_CFUNC simd_precise_normalize(simd_double2 __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_double3 SIMD_CFUNC simd_precise_normalize(simd_double3 __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_double4 SIMD_CFUNC simd_precise_normalize(simd_double4 __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }
static simd_double8 SIMD_CFUNC simd_precise_normalize(simd_double8 __x) { return __x * simd_precise_rsqrt(simd_length_squared(__x)); }

static simd_half2   SIMD_CFUNC simd_fast_normalize(simd_half2   __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_half3   SIMD_CFUNC simd_fast_normalize(simd_half3   __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_half4   SIMD_CFUNC simd_fast_normalize(simd_half4   __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_half8   SIMD_CFUNC simd_fast_normalize(simd_half8   __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_half16  SIMD_CFUNC simd_fast_normalize(simd_half16  __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_half32  SIMD_CFUNC simd_fast_normalize(simd_half32  __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_float2  SIMD_CFUNC simd_fast_normalize(simd_float2  __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_float3  SIMD_CFUNC simd_fast_normalize(simd_float3  __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_float4  SIMD_CFUNC simd_fast_normalize(simd_float4  __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_float8  SIMD_CFUNC simd_fast_normalize(simd_float8  __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_float16 SIMD_CFUNC simd_fast_normalize(simd_float16 __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_double2 SIMD_CFUNC simd_fast_normalize(simd_double2 __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_double3 SIMD_CFUNC simd_fast_normalize(simd_double3 __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_double4 SIMD_CFUNC simd_fast_normalize(simd_double4 __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }
static simd_double8 SIMD_CFUNC simd_fast_normalize(simd_double8 __x) { return __x * simd_fast_rsqrt(simd_length_squared(__x)); }

#if defined __FAST_MATH__
static simd_half2   SIMD_CFUNC simd_normalize(simd_half2   __x) { return simd_fast_normalize(__x); }
static simd_half3   SIMD_CFUNC simd_normalize(simd_half3   __x) { return simd_fast_normalize(__x); }
static simd_half4   SIMD_CFUNC simd_normalize(simd_half4   __x) { return simd_fast_normalize(__x); }
static simd_half8   SIMD_CFUNC simd_normalize(simd_half8   __x) { return simd_fast_normalize(__x); }
static simd_half16  SIMD_CFUNC simd_normalize(simd_half16  __x) { return simd_fast_normalize(__x); }
static simd_half32  SIMD_CFUNC simd_normalize(simd_half32  __x) { return simd_fast_normalize(__x); }
static simd_float2  SIMD_CFUNC simd_normalize(simd_float2  __x) { return simd_fast_normalize(__x); }
static simd_float3  SIMD_CFUNC simd_normalize(simd_float3  __x) { return simd_fast_normalize(__x); }
static simd_float4  SIMD_CFUNC simd_normalize(simd_float4  __x) { return simd_fast_normalize(__x); }
static simd_float8  SIMD_CFUNC simd_normalize(simd_float8  __x) { return simd_fast_normalize(__x); }
static simd_float16 SIMD_CFUNC simd_normalize(simd_float16 __x) { return simd_fast_normalize(__x); }
static simd_double2 SIMD_CFUNC simd_normalize(simd_double2 __x) { return simd_fast_normalize(__x); }
static simd_double3 SIMD_CFUNC simd_normalize(simd_double3 __x) { return simd_fast_normalize(__x); }
static simd_double4 SIMD_CFUNC simd_normalize(simd_double4 __x) { return simd_fast_normalize(__x); }
static simd_double8 SIMD_CFUNC simd_normalize(simd_double8 __x) { return simd_fast_normalize(__x); }
#else
static simd_half2   SIMD_CFUNC simd_normalize(simd_half2   __x) { return simd_precise_normalize(__x); }
static simd_half3   SIMD_CFUNC simd_normalize(simd_half3   __x) { return simd_precise_normalize(__x); }
static simd_half4   SIMD_CFUNC simd_normalize(simd_half4   __x) { return simd_precise_normalize(__x); }
static simd_half8   SIMD_CFUNC simd_normalize(simd_half8   __x) { return simd_precise_normalize(__x); }
static simd_half16  SIMD_CFUNC simd_normalize(simd_half16  __x) { return simd_precise_normalize(__x); }
static simd_half32  SIMD_CFUNC simd_normalize(simd_half32  __x) { return simd_precise_normalize(__x); }
static simd_float2  SIMD_CFUNC simd_normalize(simd_float2  __x) { return simd_precise_normalize(__x); }
static simd_float3  SIMD_CFUNC simd_normalize(simd_float3  __x) { return simd_precise_normalize(__x); }
static simd_float4  SIMD_CFUNC simd_normalize(simd_float4  __x) { return simd_precise_normalize(__x); }
static simd_float8  SIMD_CFUNC simd_normalize(simd_float8  __x) { return simd_precise_normalize(__x); }
static simd_float16 SIMD_CFUNC simd_normalize(simd_float16 __x) { return simd_precise_normalize(__x); }
static simd_double2 SIMD_CFUNC simd_normalize(simd_double2 __x) { return simd_precise_normalize(__x); }
static simd_double3 SIMD_CFUNC simd_normalize(simd_double3 __x) { return simd_precise_normalize(__x); }
static simd_double4 SIMD_CFUNC simd_normalize(simd_double4 __x) { return simd_precise_normalize(__x); }
static simd_double8 SIMD_CFUNC simd_normalize(simd_double8 __x) { return simd_precise_normalize(__x); }
#endif

static simd_half3   SIMD_CFUNC simd_cross(simd_half2   __x, simd_half2   __y) { return (simd_half3){ 0, 0, __x.x*__y.y - __x.y*__y.x }; }
static simd_half3   SIMD_CFUNC simd_cross(simd_half3   __x, simd_half3   __y) { return (__x.zxy*__y - __x*__y.zxy).zxy; }
static simd_float3  SIMD_CFUNC simd_cross(simd_float2  __x, simd_float2  __y) { return (simd_float3){ 0, 0, __x.x*__y.y - __x.y*__y.x }; }
static simd_float3  SIMD_CFUNC simd_cross(simd_float3  __x, simd_float3  __y) { return (__x.zxy*__y - __x*__y.zxy).zxy; }
static simd_double3 SIMD_CFUNC simd_cross(simd_double2 __x, simd_double2 __y) { return (simd_double3){ 0, 0, __x.x*__y.y - __x.y*__y.x }; }
static simd_double3 SIMD_CFUNC simd_cross(simd_double3 __x, simd_double3 __y) { return (__x.zxy*__y - __x*__y.zxy).zxy; }

static simd_half2   SIMD_CFUNC simd_reflect(simd_half2   __x, simd_half2   __n) { return __x - 2*simd_dot(__x,__n)*__n; }
static simd_half3   SIMD_CFUNC simd_reflect(simd_half3   __x, simd_half3   __n) { return __x - 2*simd_dot(__x,__n)*__n; }
static simd_half4   SIMD_CFUNC simd_reflect(simd_half4   __x, simd_half4   __n) { return __x - 2*simd_dot(__x,__n)*__n; }
static simd_float2  SIMD_CFUNC simd_reflect(simd_float2  __x, simd_float2  __n) { return __x - 2*simd_dot(__x,__n)*__n; }
static simd_float3  SIMD_CFUNC simd_reflect(simd_float3  __x, simd_float3  __n) { return __x - 2*simd_dot(__x,__n)*__n; }
static simd_float4  SIMD_CFUNC simd_reflect(simd_float4  __x, simd_float4  __n) { return __x - 2*simd_dot(__x,__n)*__n; }
static simd_double2 SIMD_CFUNC simd_reflect(simd_double2 __x, simd_double2 __n) { return __x - 2*simd_dot(__x,__n)*__n; }
static simd_double3 SIMD_CFUNC simd_reflect(simd_double3 __x, simd_double3 __n) { return __x - 2*simd_dot(__x,__n)*__n; }
static simd_double4 SIMD_CFUNC simd_reflect(simd_double4 __x, simd_double4 __n) { return __x - 2*simd_dot(__x,__n)*__n; }

#if SIMD_LIBRARY_VERSION >= 6
static simd_half2  SIMD_CFUNC simd_refract(simd_half2  __x, simd_half2  __n, _Float16 __eta) {
  const _Float16 __k = 1.0f16 - __eta*__eta*(1.0f16 - simd_dot(__x,__n)*simd_dot(__x,__n));
  return (__k >= 0.0f16) ? __eta*__x - (__eta*simd_dot(__x,__n) + __sqrtf16(__k))*__n : (simd_half2)0.0f16;
}
static simd_half3  SIMD_CFUNC simd_refract(simd_half3  __x, simd_half3  __n, _Float16 __eta) {
  const _Float16 __k = 1.0f16 - __eta*__eta*(1.0f16 - simd_dot(__x,__n)*simd_dot(__x,__n));
  return (__k >= 0.0f16) ? __eta*__x - (__eta*simd_dot(__x,__n) + __sqrtf16(__k))*__n : (simd_half3)0.0f16;
}
static simd_half4  SIMD_CFUNC simd_refract(simd_half4  __x, simd_half4  __n, _Float16 __eta) {
  const _Float16 __k = 1.0f16 - __eta*__eta*(1.0f16 - simd_dot(__x,__n)*simd_dot(__x,__n));
  return (__k >= 0.0f16) ? __eta*__x - (__eta*simd_dot(__x,__n) + __sqrtf16(__k))*__n : (simd_half4)0.0f16;
}
#endif // SIMD_LIBRARY_VERSION >= 6
static simd_float2  SIMD_CFUNC simd_refract(simd_float2  __x, simd_float2  __n, float __eta) {
  const float __k = 1.0f - __eta*__eta*(1.0f - simd_dot(__x,__n)*simd_dot(__x,__n));
  return (__k >= 0.0f) ? __eta*__x - (__eta*simd_dot(__x,__n) + sqrt(__k))*__n : (simd_float2)0.0f;
}
static simd_float3  SIMD_CFUNC simd_refract(simd_float3  __x, simd_float3  __n, float __eta) {
  const float __k = 1.0f - __eta*__eta*(1.0f - simd_dot(__x,__n)*simd_dot(__x,__n));
  return (__k >= 0.0f) ? __eta*__x - (__eta*simd_dot(__x,__n) + sqrt(__k))*__n : (simd_float3)0.0f;
}
static simd_float4  SIMD_CFUNC simd_refract(simd_float4  __x, simd_float4  __n, float __eta) {
  const float __k = 1.0f - __eta*__eta*(1.0f - simd_dot(__x,__n)*simd_dot(__x,__n));
  return (__k >= 0.0f) ? __eta*__x - (__eta*simd_dot(__x,__n) + sqrt(__k))*__n : (simd_float4)0.0f;
}
static simd_double2 SIMD_CFUNC simd_refract(simd_double2 __x, simd_double2 __n, double __eta) {
  const double __k = 1.0 - __eta*__eta*(1.0 - simd_dot(__x,__n)*simd_dot(__x,__n));
  return (__k >= 0.0) ? __eta*__x - (__eta*simd_dot(__x,__n) + sqrt(__k))*__n : (simd_double2)0.0;
}
static simd_double3 SIMD_CFUNC simd_refract(simd_double3 __x, simd_double3 __n, double __eta) {
  const double __k = 1.0 - __eta*__eta*(1.0 - simd_dot(__x,__n)*simd_dot(__x,__n));
  return (__k >= 0.0) ? __eta*__x - (__eta*simd_dot(__x,__n) + sqrt(__k))*__n : (simd_double3)0.0;
}
static simd_double4 SIMD_CFUNC simd_refract(simd_double4 __x, simd_double4 __n, double __eta) {
  const double __k = 1.0 - __eta*__eta*(1.0 - simd_dot(__x,__n)*simd_dot(__x,__n));
  return (__k >= 0.0) ? __eta*__x - (__eta*simd_dot(__x,__n) + sqrt(__k))*__n : (simd_double4)0.0;
}

#if SIMD_LIBRARY_VERSION >= 2
static float SIMD_CFUNC simd_orient(simd_float2 __x, simd_float2 __y) {
  return _simd_orient_vf2(__x, __y);
}
static double SIMD_CFUNC simd_orient(simd_double2 __x, simd_double2 __y) {
  return _simd_orient_vd2(__x, __y);
}
static float SIMD_CFUNC simd_orient(simd_float3 __x, simd_float3 __y, simd_float3 __z) {
  return _simd_orient_vf3(__x, __y, __z);
}
static double SIMD_CFUNC simd_orient(simd_double3 __x, simd_double3 __y, simd_double3 __z) {
  simd_double3 __args[3] = { __x, __y, __z };
  return _simd_orient_vd3((const double *)__args);
}

static float SIMD_CFUNC simd_orient(simd_float2 __a, simd_float2 __b, simd_float2 __c) {
  return _simd_orient_pf2(__a, __b, __c);
}
static double SIMD_CFUNC simd_orient(simd_double2 __a, simd_double2 __b, simd_double2 __c) {
  return _simd_orient_pd2(__a, __b, __c);
}
static float SIMD_CFUNC simd_orient(simd_float3 __a, simd_float3 __b, simd_float3 __c, simd_float3 __d) {
  return _simd_orient_pf3(__a, __b, __c, __d);
}
static double SIMD_CFUNC simd_orient(simd_double3 __a, simd_double3 __b, simd_double3 __c, simd_double3 __d) {
  simd_double3 __args[4] = { __a, __b, __c, __d };
  return _simd_orient_pd3((const double *)__args);
}

static float SIMD_CFUNC simd_incircle(simd_float2 __x, simd_float2 __a, simd_float2 __b, simd_float2 __c) {
  return _simd_incircle_pf2(__x, __a, __b, __c);
}
static double SIMD_CFUNC simd_incircle(simd_double2 __x, simd_double2 __a, simd_double2 __b, simd_double2 __c) {
  return _simd_incircle_pd2(__x, __a, __b, __c);
}
static float SIMD_CFUNC simd_insphere(simd_float3 __x, simd_float3 __a, simd_float3 __b, simd_float3 __c, simd_float3 __d) {
  return _simd_insphere_pf3(__x, __a, __b, __c, __d);
}
static double SIMD_CFUNC simd_insphere(simd_double3 __x, simd_double3 __a, simd_double3 __b, simd_double3 __c, simd_double3 __d) {
  simd_double3 __args[5] = { __x, __a, __b, __c, __d };
  return _simd_insphere_pd3((const double *)__args);
}
#endif /* SIMD_LIBRARY_VERSION */

#if SIMD_LIBRARY_VERSION >= 6
static _Float16 SIMD_CFUNC simd_orient(simd_half2 __x, simd_half2 __y) {
  return _simd_orient_vh2(__x, __y);
}
static _Float16 SIMD_CFUNC simd_orient(simd_half3 __x, simd_half3 __y, simd_half3 __z) {
  return _simd_orient_vh3(__x, __y, __z);
}

static _Float16 SIMD_CFUNC simd_orient(simd_half2 __a, simd_half2 __b, simd_half2 __c) {
  return _simd_orient_ph2(__a, __b, __c);
}
static _Float16 SIMD_CFUNC simd_orient(simd_half3 __a, simd_half3 __b, simd_half3 __c, simd_half3 __d) {
  return _simd_orient_ph3(__a, __b, __c, __d);
}

static _Float16 SIMD_CFUNC simd_incircle(simd_half2 __x, simd_half2 __a, simd_half2 __b, simd_half2 __c) {
  return _simd_incircle_ph2(__x, __a, __b, __c);
}
static _Float16 SIMD_CFUNC simd_insphere(simd_half3 __x, simd_half3 __a, simd_half3 __b, simd_half3 __c, simd_half3 __d) {
  return _simd_insphere_ph3(__x, __a, __b, __c, __d);
}
#endif /* SIMD_LIBRARY_VERSION */

#ifdef __cplusplus
}
#endif
#endif /* SIMD_COMPILER_HAS_REQUIRED_FEATURES */
#endif /* __SIMD_COMMON_HEADER__ */