File: prng.h

package info (click to toggle)
xmds2 2.2.3%2Bdfsg-15
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 53,904 kB
  • sloc: python: 54,093; cpp: 3,929; ansic: 1,463; makefile: 115; sh: 54
file content (2020 lines) | stat: -rw-r--r-- 79,430 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
/* *****************************************************************************
/
/ This file is part of Solirte, a solenoid ion ray-tracing engine.
/ (c) 2008 Michael Brown.
/ michael.brown@anu.edu.au
/
/ A random number generator that can do various distributions.
/ *************************************************************************** */

#ifndef PRNG_H
#define PRNG_H

#include "randpool.h"
#include "ziggurat.h"
// #include <math.h>
#include <string>
#include <vector>

#ifndef CFG_TIMETRACK_DISABLE
#include "../platform/timetrack.h"
#endif

#if CFG_COMPILER == CFG_COMPILER_MSVC
// Shut up one of the more braindead MSVC warnings.
#pragma warning(push)
#pragma warning(disable: 4127)
#endif

template<class SFMTParams>
class CPRNG
{
  public:
    static const size_t BufSize = CRandPool<SFMTParams>::BufSize;
  private:
    #ifndef CFG_TIMETRACK_DISABLE
    static struct TMetrics
    {
      static THREADVAR uint32_t uniform_FP64_refill_count;
      static THREADVAR uint64_t uniform_FP64_refill_time;
      static THREADVAR uint32_t uniform_FP32_refill_count;
      static THREADVAR uint64_t uniform_FP32_refill_time;
      static THREADVAR uint32_t gaussiantail_FP64_refill_count;
      static THREADVAR uint64_t gaussiantail_FP64_refill_time;
      static THREADVAR uint32_t gaussian_FP64_refill_count;
      static THREADVAR uint64_t gaussian_FP64_refill_time;
      static THREADVAR uint64_t gaussian_FP64_numgen;
      static THREADVAR uint32_t exponential_FP64_refill_count;
      static THREADVAR uint64_t exponential_FP64_refill_time;
      static THREADVAR uint64_t exponential_FP64_numgen;
      static THREADVAR uint32_t exponential_FP32_refill_count;
      static THREADVAR uint64_t exponential_FP32_refill_time;
      static THREADVAR uint64_t exponential_FP32_numgen;

      TMetrics(void)
      {
        CPerfCounters::SetName(uniform_FP64_refill_count, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.uniform.FP64.refill.count");
        CPerfCounters::SetName(uniform_FP64_refill_time, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.uniform.FP64.refill.time");
        CPerfCounters::SetName(uniform_FP32_refill_count, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.uniform.FP32.refill.count");
        CPerfCounters::SetName(uniform_FP32_refill_time, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.uniform.FP32.refill.time");
        CPerfCounters::SetName(gaussiantail_FP64_refill_count, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.gaussiantail.FP64.refill.count");
        CPerfCounters::SetName(gaussiantail_FP64_refill_time, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.gaussiantail.FP64.refill.time");
        CPerfCounters::SetName(gaussian_FP64_refill_count, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.gaussian.FP64.refill.count");
        CPerfCounters::SetName(gaussian_FP64_refill_time, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.gaussian.FP64.refill.time");
        CPerfCounters::SetName(gaussian_FP64_numgen, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.gaussian.FP64.numgen");
        CPerfCounters::SetName(exponential_FP64_refill_count, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.exponential.FP64.refill.count");
        CPerfCounters::SetName(exponential_FP64_refill_time, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.exponential.FP64.refill.time");
        CPerfCounters::SetName(exponential_FP64_numgen, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.exponential.FP64.numgen");
        CPerfCounters::SetName(exponential_FP32_refill_count, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.exponential.FP32.refill.count");
        CPerfCounters::SetName(exponential_FP32_refill_time, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.exponential.FP32.refill.time");
        CPerfCounters::SetName(exponential_FP32_numgen, "CPRNG<" + GenToString(SFMTParams::MEXP) + ">.exponential.FP32.numgen");
      }

      void ForceConstruction(void) { }
    } Metrics;
    #endif
    
  private:
    // Uniform random doubles on [0,1)
    static const size_t FBufLen_uniform_FP64 = BufSize * 2;
    CDataBuffer<BufSize * 16> FBuffer_uniform_FP64;
    // Uniform random singles on [0,1)
    static const size_t FBufLen_uniform_FP32 = BufSize * 4;
    CDataBuffer<BufSize * 16> FBuffer_uniform_FP32;

    // Gaussian tail random doubles (for Ziggurat). Note 2:1 reduction ratio
    // (needs 2 u128's to generate 2 doubles).
    static const size_t FBufLen_gaussiantail_FP64 = (BufSize / 2) * 2;
    CDataBuffer<BufSize / 2 * 16> FBuffer_gaussiantail_FP64;
    // Gaussian random doubles.
    CDataBuffer<BufSize * 16> FBuffer_gaussian_FP64;
    // Exponential random doubles.
    CDataBuffer<BufSize * 16> FBuffer_exponential_FP64;
    // Exponential random singles.
    CDataBuffer<BufSize * 16> FBuffer_exponential_FP32;
    // Generic integer pool
    CDataBuffer<BufSize * 16> FBuffer_integer;
    // The randpool itself.
    CRandPool<SFMTParams> FRandPool;
    // Positions and lengths.
    size_t FBufPos_uniform_FP64;
    size_t FBufPos_uniform_FP32;
    size_t FBufPos_gaussiantail_FP64;
    size_t FBufLen_gaussian_FP64;
    size_t FBufPos_gaussian_FP64;
    size_t FBufLen_exponential_FP64;
    size_t FBufPos_exponential_FP64;
    size_t FBufLen_exponential_FP32;
    size_t FBufPos_exponential_FP32;
    double FScaleFactor_exponential_FP64;
    float FScaleFactor_exponential_FP32;
    size_t FBufPos_integer;
    int RefCount;
  protected:
    void RefillBuf_uniform_FP64(void);
    void RefillBuf_uniform_FP32(void);
    void RefillBuf_gaussiantail_FP64(void);
    void RefillBuf_gaussian_FP64(void);
    void RefillBuf_exponential_FP64(void);
    void RefillBuf_exponential_FP32(void);
    void RefillBuf_integer(void);
  public:
    static std::string GetIDString(void) { return CRandPool<SFMTParams>::GetIDString(); }

    void Seed(uint32_t seed)
    {
      FRandPool.init_gen_rand(seed);
      FBufPos_uniform_FP64 = BufSize * 2;
      FBufPos_uniform_FP32 = BufSize * 4;
      FBufPos_gaussiantail_FP64 = BufSize;
      FBufPos_gaussian_FP64 = 0;
      FBufLen_gaussian_FP64 = 0;
      FBufPos_exponential_FP64 = 0;
      FBufLen_exponential_FP64 = 0;
      FScaleFactor_exponential_FP64 = 0;
      FBufPos_exponential_FP32 = 0;
      FBufLen_exponential_FP32 = 0;
      FScaleFactor_exponential_FP32 = 0;
      FBufPos_integer = BufSize * 16;
    }

    CPRNG(uint32_t seed)
    {
      Seed(seed);
      RefCount = 1;
      #ifndef CFG_TIMETRACK_DISABLE
      Metrics.ForceConstruction();
      #endif
    }

    int AddRef(void) { return ++RefCount; }
    // Note: We can't do "delete this" in Release because of the thread-moving
    // capability. See CThreadRand::MovedThreads() for details.
    int Release(void) { return --RefCount; }
    int GetRefCount(void) { return RefCount; }

    double Random_uniform_FP64(void);
    float Random_uniform_FP32(void);
    double Random_gaussiantail_FP64(void);
    double Random_gaussian_FP64(void);
    double Random_exponential_FP64(void);
    float Random_exponential_FP32(void);
    uint32_t Random_u32(void);
    uint32_t Random_u32(uint32_t MaxVal);

    void Random_uniform_FP(float &x) { x = Random_uniform_FP32(); }
    void Random_uniform_FP(double &x) { x = Random_uniform_FP64(); }
    void Random_exponential_FP(double &x) { x = Random_exponential_FP64(); }
    void Random_exponential_FP(float &x) { x = Random_exponential_FP32(); }

    void RandFill_uniform_FP64(double *Buffer, size_t NumDoubles);
    void RandFill_uniform_FP32(float *Buffer, size_t NumFloats);
    void RandFill_gaussian_FP64(double *Buffer, size_t NumDoubles);
    void RandFill_gaussiantail_FP64(double *Buffer, size_t NumDoubles);
    void RandFill_exponential_FP64(double *Buffer, size_t NumDoubles);
    void RandFill_exponential_FP32(float *Buffer, size_t NumFloats);
    void RandFill_u32(uint32_t *Buffer, size_t NumU32s);

    typedef typename CRandPool<SFMTParams>::CRandomBlockPtr CRandomBlockPtr;
    CRandomBlockPtr GetRandomBlock(void) { return FRandPool.GetRandomBlock(); }

    static void *operator new(size_t size)
    {
      return _aligned_malloc(size, 16);
    }

    static void operator delete(void *p)
    {
      _aligned_free(p);
    }
};

// -----------------------------------------------------------------------------
// Uniform random singles.
// PATHDEF UniformFP32
// -----------------------------------------------------------------------------
template<class SFMTParams>
NOINLINE void CPRNG<SFMTParams>::RefillBuf_uniform_FP32(void)
{
  #ifndef CFG_TIMETRACK_DISABLE
  CTimedScope ScopeTimer(Metrics.uniform_FP32_refill_time);
  Metrics.uniform_FP32_refill_count++;
  #endif

  typename CRandPool<SFMTParams>::CRandomBlockPtr RandomBlock = FRandPool.GetRandomBlock();
  // Don't need SIMDOps::EmptyForFP() here (handled per-path, since we've got an MMX path)

#if (CFG_HAVE_U128FP32 == CFG_SIMD_INTRINSIC)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// FP32-intrinsic implementation
// PATHNAME u128fp32intrinsic
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  SIMDOps::EmptyForFP();
  CDataBuffer_ConstView<uint128fp32_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint128fp32_t>();
  CDataBuffer_VarView<uint128fp32_t, BufSize * 16> DstPtr = FBuffer_uniform_FP32.template GetVarView<uint128fp32_t>();

  uint128fp32_t AndMask = SIMDOps::uint128fp32_t_const<0x007FFFFF, 0x007FFFFF, 0x007FFFFF, 0x007FFFFF>::Value();
  uint128fp32_t One = SIMDOps::uint128fp32_t_const<0x3F800000, 0x3F800000, 0x3F800000, 0x3F800000>::Value();

  size_t CopyLoop;
  for (CopyLoop = 0; CopyLoop < BufSize - (BufSize % 4); CopyLoop += 4)
  {
    DstPtr.Store(CopyLoop + 0, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), One), One));
    DstPtr.Store(CopyLoop + 1, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 1), AndMask), One), One));
    DstPtr.Store(CopyLoop + 2, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 2), AndMask), One), One));
    DstPtr.Store(CopyLoop + 3, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 3), AndMask), One), One));
  }

  // Unrolling tail.
  if ((BufSize % 4) == 3)
  {
    DstPtr.Store(CopyLoop + 0, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), One), One));
    DstPtr.Store(CopyLoop + 1, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 1), AndMask), One), One));
    DstPtr.Store(CopyLoop + 2, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 2), AndMask), One), One));
  }
  if ((BufSize % 4) == 2)
  {
    DstPtr.Store(CopyLoop + 0, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), One), One));
    DstPtr.Store(CopyLoop + 1, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 1), AndMask), One), One));
  }
  if ((BufSize % 4) == 1)
  {
    DstPtr.Store(CopyLoop + 0, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), One), One));
  }
#elif (CFG_HAVE_U128 == CFG_SIMD_INTRINSIC)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-intrinsic, fp32-scalar implementation
// PATHNAME u128intrinsic-fp32scalar
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  SIMDOps::EmptyForFP();
  CDataBuffer_ConstView<uint128_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint128_t>();
  CDataBuffer_VarView<float, BufSize * 16> DstPtr = FBuffer_uniform_FP32.template GetVarView<float>();

  uint128_t AndMask = SIMDOps::uint128_t_const<0x007FFFFF, 0x007FFFFF, 0x007FFFFF, 0x007FFFFF>::Value();
  uint128_t OrMask = SIMDOps::uint128_t_const<0x3F800000, 0x3F800000, 0x3F800000, 0x3F800000>::Value();

  // Unrolled part
  union 
  {
    uint128_t AsU128;
    float AsFP32[4];
  } TempBuf[4];

  size_t CopyLoop;
  for (CopyLoop = 0; CopyLoop < BufSize - (BufSize % 4); CopyLoop += 4)
  {
    TempBuf[0].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 4 + 0, TempBuf[0].AsFP32[0] - 1);
    DstPtr.Store(CopyLoop * 4 + 1, TempBuf[0].AsFP32[1] - 1);
    DstPtr.Store(CopyLoop * 4 + 2, TempBuf[0].AsFP32[2] - 1);
    DstPtr.Store(CopyLoop * 4 + 3, TempBuf[0].AsFP32[3] - 1);
    TempBuf[1].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 1), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 4 + 4, TempBuf[1].AsFP32[0] - 1);
    DstPtr.Store(CopyLoop * 4 + 5, TempBuf[1].AsFP32[1] - 1);
    DstPtr.Store(CopyLoop * 4 + 6, TempBuf[1].AsFP32[2] - 1);
    DstPtr.Store(CopyLoop * 4 + 7, TempBuf[1].AsFP32[3] - 1);
    TempBuf[2].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 2), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 4 + 8, TempBuf[2].AsFP32[0] - 1);
    DstPtr.Store(CopyLoop * 4 + 9, TempBuf[2].AsFP32[1] - 1);
    DstPtr.Store(CopyLoop * 4 + 10, TempBuf[2].AsFP32[2] - 1);
    DstPtr.Store(CopyLoop * 4 + 11, TempBuf[2].AsFP32[3] - 1);
    TempBuf[3].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 3), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 4 + 12, TempBuf[3].AsFP32[0] - 1);
    DstPtr.Store(CopyLoop * 4 + 13, TempBuf[3].AsFP32[1] - 1);
    DstPtr.Store(CopyLoop * 4 + 14, TempBuf[3].AsFP32[2] - 1);
    DstPtr.Store(CopyLoop * 4 + 15, TempBuf[3].AsFP32[3] - 1);
  }

  // Unrolling tail.
  if ((BufSize % 4) == 3)
  {
    TempBuf[0].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 4 + 0, TempBuf[0].AsFP32[0] - 1);
    DstPtr.Store(CopyLoop * 4 + 1, TempBuf[0].AsFP32[1] - 1);
    DstPtr.Store(CopyLoop * 4 + 2, TempBuf[0].AsFP32[2] - 1);
    DstPtr.Store(CopyLoop * 4 + 3, TempBuf[0].AsFP32[3] - 1);
    TempBuf[1].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 1), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 4 + 4, TempBuf[1].AsFP32[0] - 1);
    DstPtr.Store(CopyLoop * 4 + 5, TempBuf[1].AsFP32[1] - 1);
    DstPtr.Store(CopyLoop * 4 + 6, TempBuf[1].AsFP32[2] - 1);
    DstPtr.Store(CopyLoop * 4 + 7, TempBuf[1].AsFP32[3] - 1);
    TempBuf[2].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 2), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 4 + 8, TempBuf[2].AsFP32[0] - 1);
    DstPtr.Store(CopyLoop * 4 + 9, TempBuf[2].AsFP32[1] - 1);
    DstPtr.Store(CopyLoop * 4 + 10, TempBuf[2].AsFP32[2] - 1);
    DstPtr.Store(CopyLoop * 4 + 11, TempBuf[2].AsFP32[3] - 1);
  }
  if ((BufSize % 4) == 2)
  {
    TempBuf[0].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 4 + 0, TempBuf[0].AsFP32[0] - 1);
    DstPtr.Store(CopyLoop * 4 + 1, TempBuf[0].AsFP32[1] - 1);
    DstPtr.Store(CopyLoop * 4 + 2, TempBuf[0].AsFP32[2] - 1);
    DstPtr.Store(CopyLoop * 4 + 3, TempBuf[0].AsFP32[3] - 1);
    TempBuf[1].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 1), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 4 + 4, TempBuf[1].AsFP32[0] - 1);
    DstPtr.Store(CopyLoop * 4 + 5, TempBuf[1].AsFP32[1] - 1);
    DstPtr.Store(CopyLoop * 4 + 6, TempBuf[2].AsFP32[2] - 1);
    DstPtr.Store(CopyLoop * 4 + 7, TempBuf[2].AsFP32[3] - 1);
  }
  if ((BufSize % 4) == 1)
  {
    TempBuf[0].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 4 + 0, TempBuf[0].AsFP32[0] - 1);
    DstPtr.Store(CopyLoop * 4 + 1, TempBuf[0].AsFP32[1] - 1);
    DstPtr.Store(CopyLoop * 4 + 2, TempBuf[0].AsFP32[2] - 1);
    DstPtr.Store(CopyLoop * 4 + 3, TempBuf[0].AsFP32[3] - 1);
  }
#elif (CFG_HAVE_U128 == CFG_SIMD_MMX)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-mmx, fp32-scalar two-pass implementation
// PATHNAME u128mmx-fp32scalar-2pass
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  {
    // Integer pass.
    CDataBuffer_ConstView<__m64, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<__m64>();
    CDataBuffer_VarView<__m64, BufSize * 16> DstPtr = FBuffer_uniform_FP32.template GetVarView<__m64>();

    __m64 AndMask = SIMDOps::__m64_const<0x007FFFFF, 0x007FFFFF>::Value();
    __m64 OrMask = SIMDOps::__m64_const<0x3F800000, 0x3F800000>::Value();

    size_t CopyLoop;
    for (CopyLoop = 0; CopyLoop < BufSize - BufSize % 2; CopyLoop += 2)
    {
      DstPtr.Store(CopyLoop * 2 + 0, _mm_or_si64(_mm_and_si64(SrcPtr.Load(CopyLoop * 2 + 0), AndMask), OrMask));
      DstPtr.Store(CopyLoop * 2 + 1, _mm_or_si64(_mm_and_si64(SrcPtr.Load(CopyLoop * 2 + 1), AndMask), OrMask));
      DstPtr.Store(CopyLoop * 2 + 2, _mm_or_si64(_mm_and_si64(SrcPtr.Load(CopyLoop * 2 + 2), AndMask), OrMask));
      DstPtr.Store(CopyLoop * 2 + 3, _mm_or_si64(_mm_and_si64(SrcPtr.Load(CopyLoop * 2 + 3), AndMask), OrMask));
    }
    if ((BufSize % 2) == 1)
    {
      DstPtr.Store(CopyLoop * 2 + 0, _mm_or_si64(_mm_and_si64(SrcPtr.Load(CopyLoop * 2 + 0), AndMask), OrMask));
      DstPtr.Store(CopyLoop * 2 + 1, _mm_or_si64(_mm_and_si64(SrcPtr.Load(CopyLoop * 2 + 1), AndMask), OrMask));
    }

    SIMDOps::EmptyForFP();
  }
  {
    // Floating point pass.
    CDataBuffer_VarView<float, BufSize * 16> DstPtr = FBuffer_uniform_FP32.template GetVarView<float>();

    size_t CopyLoop;
    for (CopyLoop = 0; CopyLoop < BufSize - BufSize % 2; CopyLoop += 2)
    {
      DstPtr.Store(CopyLoop * 4 + 0, DstPtr.Load(CopyLoop * 4 + 0) - 1.0f);
      DstPtr.Store(CopyLoop * 4 + 1, DstPtr.Load(CopyLoop * 4 + 1) - 1.0f);
      DstPtr.Store(CopyLoop * 4 + 2, DstPtr.Load(CopyLoop * 4 + 2) - 1.0f);
      DstPtr.Store(CopyLoop * 4 + 3, DstPtr.Load(CopyLoop * 4 + 3) - 1.0f);
      DstPtr.Store(CopyLoop * 4 + 4, DstPtr.Load(CopyLoop * 4 + 4) - 1.0f);
      DstPtr.Store(CopyLoop * 4 + 5, DstPtr.Load(CopyLoop * 4 + 5) - 1.0f);
      DstPtr.Store(CopyLoop * 4 + 6, DstPtr.Load(CopyLoop * 4 + 6) - 1.0f);
      DstPtr.Store(CopyLoop * 4 + 7, DstPtr.Load(CopyLoop * 4 + 7) - 1.0f);
    }
    if ((BufSize % 2) == 1)
    {
      DstPtr.Store(CopyLoop * 4 + 0, DstPtr.Load(CopyLoop * 4 + 0) - 1.0f);
      DstPtr.Store(CopyLoop * 4 + 1, DstPtr.Load(CopyLoop * 4 + 1) - 1.0f);
      DstPtr.Store(CopyLoop * 4 + 2, DstPtr.Load(CopyLoop * 4 + 2) - 1.0f);
      DstPtr.Store(CopyLoop * 4 + 3, DstPtr.Load(CopyLoop * 4 + 3) - 1.0f);
    }
  }
#elif (CFG_BITS == 64)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-scalar, fp32-scalar 64-bit one-pass implementation
// PATHNAME u128scalar-fp32scalar-64bit
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  SIMDOps::EmptyForFP();
  CDataBuffer_ConstView<uint64_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint64_t>();
  CDataBuffer_VarView<float, BufSize * 16> DstPtr = FBuffer_uniform_FP32.template GetVarView<float>();

  uint64_t AndMask = UINT64_C(0x007FFFFF007FFFFF);
  uint64_t OrMask = UINT64_C(0x3F8000003F800000);

  // The main conversion loop.
  union
  {
    uint64_t AsU64;
    float AsFP32[2];
  } FPConv[2];

  for (size_t CopyLoop = 0; CopyLoop < BufSize; CopyLoop++)
  {
    FPConv[0].AsU64 = (SrcPtr.Load(CopyLoop * 2 + 0) & AndMask) | OrMask;
    DstPtr.Store(CopyLoop * 4 + 0, FPConv[0].AsFP32[0] - 1.0f);
    DstPtr.Store(CopyLoop * 4 + 1, FPConv[0].AsFP32[1] - 1.0f);
    FPConv[1].AsU64 = (SrcPtr.Load(CopyLoop * 2 + 1) & AndMask) | OrMask;
    DstPtr.Store(CopyLoop * 4 + 2, FPConv[1].AsFP32[0] - 1.0f);
    DstPtr.Store(CopyLoop * 4 + 3, FPConv[1].AsFP32[1] - 1.0f);
  }
#else
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-scalar, fp32-scalar 32-bit one-pass implementation
// PATHNAME u128scalar-fp32scalar-32bit
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  SIMDOps::EmptyForFP();
  CDataBuffer_ConstView<uint32_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint32_t>();
  CDataBuffer_VarView<float, BufSize * 16> DstPtr = FBuffer_uniform_FP32.template GetVarView<float>();

  uint32_t AndMask = 0x007FFFFF;
  uint32_t OrMask = 0x3F800000;

  // The main conversion loop.
  union
  {
    uint32_t AsU32;
    float AsFP32;
  } FPConv[4];

  for (size_t CopyLoop = 0; CopyLoop < BufSize; CopyLoop++)
  {
    FPConv[0].AsU32 = (SrcPtr.Load(CopyLoop * 4 + 0) & AndMask) | OrMask;
    DstPtr.Store(CopyLoop * 4 + 0, FPConv[0].AsFP32 - 1.0f);
    FPConv[1].AsU32 = (SrcPtr.Load(CopyLoop * 4 + 1) & AndMask) | OrMask;
    DstPtr.Store(CopyLoop * 4 + 1, FPConv[1].AsFP32 - 1.0f);
    FPConv[2].AsU32 = (SrcPtr.Load(CopyLoop * 4 + 2) & AndMask) | OrMask;
    DstPtr.Store(CopyLoop * 4 + 2, FPConv[2].AsFP32 - 1.0f);
    FPConv[3].AsU32 = (SrcPtr.Load(CopyLoop * 4 + 3) & AndMask) | OrMask;
    DstPtr.Store(CopyLoop * 4 + 3, FPConv[3].AsFP32 - 1.0f);
  }
#endif
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Common code.
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  FBufPos_uniform_FP32 = 0;
}

template<class SFMTParams>
inline float CPRNG<SFMTParams>::Random_uniform_FP32(void)
{
  if (FBufPos_uniform_FP32 == FBufLen_uniform_FP32) RefillBuf_uniform_FP32();
  return FBuffer_uniform_FP32.LoadFP32(EndianFix<2>(FBufPos_uniform_FP32++));
}

template<class SFMTParams>
inline void CPRNG<SFMTParams>::RandFill_uniform_FP32(float *Buffer, size_t NumFloats)
{
  size_t NumToGo = NumFloats;
  while (NumToGo > 0)
  {
    // Round up to the next 128-bit boundary.
    FBufPos_uniform_FP32 = (FBufPos_uniform_FP32 + 3) & ~3;

    // Make sure there's something to copy from.
    while (FBufLen_uniform_FP32 == FBufPos_uniform_FP32)
      RefillBuf_uniform_FP32();

    // See how many to do.
    size_t NumInBuf = FBufLen_uniform_FP32 - FBufPos_uniform_FP32;
    size_t NumToDo = (NumToGo > NumInBuf) ? NumInBuf : NumToGo;

    // Copy.
    memcpy(Buffer, FBuffer_uniform_FP32.GetPointerFP32() + FBufPos_uniform_FP32, NumToDo * sizeof(float));

    // Update pointers, etc.
    Buffer += NumToDo;
    NumToGo -= NumToDo;
    FBufPos_uniform_FP32 += NumToDo;
  }
}

// -----------------------------------------------------------------------------
// Uniform random doubles.
// PATHDEF UniformFP64
// -----------------------------------------------------------------------------
template<class SFMTParams>
NOINLINE void CPRNG<SFMTParams>::RefillBuf_uniform_FP64(void)
{
  #ifndef CFG_TIMETRACK_DISABLE
  CTimedScope ScopeTimer(Metrics.uniform_FP64_refill_time);
  Metrics.uniform_FP64_refill_count++;
  #endif

  typename CRandPool<SFMTParams>::CRandomBlockPtr RandomBlock = FRandPool.GetRandomBlock();
  // Don't need SIMDOps::EmptyForFP() here (handled per-path, since we've got an MMX path)

#if (CFG_HAVE_U128FP64 == CFG_SIMD_INTRINSIC)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// FP64-intrinsic implementation
// PATHNAME u128fp64intrinsic
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  SIMDOps::EmptyForFP();
  CDataBuffer_ConstView<uint128fp64_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint128fp64_t>();
  CDataBuffer_VarView<uint128fp64_t, BufSize * 16> DstPtr = FBuffer_uniform_FP64.template GetVarView<uint128fp64_t>();

  uint128fp64_t AndMask = SIMDOps::uint128fp64_t_const<0xFFFFFFFF, 0x000FFFFF, 0xFFFFFFFF, 0x000FFFFF>::Value();
  uint128fp64_t One = SIMDOps::uint128fp64_t_const<0x00000000, 0x3FF00000, 0x00000000, 0x3FF00000>::Value();

  size_t CopyLoop;
  for (CopyLoop = 0; CopyLoop < BufSize - (BufSize % 4); CopyLoop += 4)
  {
    DstPtr.Store(CopyLoop + 0, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), One), One));
    DstPtr.Store(CopyLoop + 1, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 1), AndMask), One), One));
    DstPtr.Store(CopyLoop + 2, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 2), AndMask), One), One));
    DstPtr.Store(CopyLoop + 3, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 3), AndMask), One), One));
  }

  // Unrolling tail.
  if ((BufSize % 4) == 3)
  {
    DstPtr.Store(CopyLoop + 0, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), One), One));
    DstPtr.Store(CopyLoop + 1, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 1), AndMask), One), One));
    DstPtr.Store(CopyLoop + 2, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 2), AndMask), One), One));
  }
  if ((BufSize % 4) == 2)
  {
    DstPtr.Store(CopyLoop + 0, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), One), One));
    DstPtr.Store(CopyLoop + 1, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 1), AndMask), One), One));
  }
  if ((BufSize % 4) == 1)
  {
    DstPtr.Store(CopyLoop + 0, SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), One), One));
  }
#elif (CFG_HAVE_U128 == CFG_SIMD_INTRINSIC)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-intrinsic, fp64-scalar implementation
// PATHNAME u128intrinsic-fp64scalar
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  SIMDOps::EmptyForFP();
  CDataBuffer_ConstView<uint128_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint128_t>();
  CDataBuffer_VarView<double, BufSize * 16> DstPtr = FBuffer_uniform_FP64.template GetVarView<double>();

  uint128_t AndMask = SIMDOps::uint128_t_const<0xFFFFFFFF, 0x000FFFFF, 0xFFFFFFFF, 0x000FFFFF>::Value();
  uint128_t OrMask = SIMDOps::uint128_t_const<0x00000000, 0x3FF00000, 0x00000000, 0x3FF00000>::Value();

  // Unrolled part
  union 
  {
    uint128_t AsU128;
    double AsFP64[2];
  } TempBuf[4];

  size_t CopyLoop;
  for (CopyLoop = 0; CopyLoop < BufSize - (BufSize % 4); CopyLoop += 4)
  {
    TempBuf[0].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 2 + 0, TempBuf[0].AsFP64[0] - 1.0);
    DstPtr.Store(CopyLoop * 2 + 1, TempBuf[0].AsFP64[1] - 1.0);
    TempBuf[1].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 1), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 2 + 2, TempBuf[1].AsFP64[0] - 1.0);
    DstPtr.Store(CopyLoop * 2 + 3, TempBuf[1].AsFP64[1] - 1.0);
    TempBuf[2].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 2), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 2 + 4, TempBuf[2].AsFP64[0] - 1.0);
    DstPtr.Store(CopyLoop * 2 + 5, TempBuf[2].AsFP64[1] - 1.0);
    TempBuf[3].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 3), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 2 + 6, TempBuf[3].AsFP64[0] - 1.0);
    DstPtr.Store(CopyLoop * 2 + 7, TempBuf[3].AsFP64[1] - 1.0);
  }

  // Unrolling tail.
  if ((BufSize % 4) == 3)
  {
    TempBuf[0].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 2 + 0, TempBuf[0].AsFP64[0] - 1.0);
    DstPtr.Store(CopyLoop * 2 + 1, TempBuf[0].AsFP64[1] - 1.0);
    TempBuf[1].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 1), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 2 + 2, TempBuf[1].AsFP64[0] - 1.0);
    DstPtr.Store(CopyLoop * 2 + 3, TempBuf[1].AsFP64[1] - 1.0);
    TempBuf[2].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 2), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 2 + 4, TempBuf[2].AsFP64[0] - 1.0);
    DstPtr.Store(CopyLoop * 2 + 5, TempBuf[2].AsFP64[1] - 1.0);
  }
  if ((BufSize % 4) == 2)
  {
    TempBuf[0].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 2 + 0, TempBuf[0].AsFP64[0] - 1.0);
    DstPtr.Store(CopyLoop * 2 + 1, TempBuf[0].AsFP64[1] - 1.0);
    TempBuf[1].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 1), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 2 + 2, TempBuf[1].AsFP64[0] - 1.0);
    DstPtr.Store(CopyLoop * 2 + 3, TempBuf[1].AsFP64[1] - 1.0);
  }
  if ((BufSize % 4) == 1)
  {
    TempBuf[0].AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(CopyLoop + 0), AndMask), OrMask);
    DstPtr.Store(CopyLoop * 2 + 0, TempBuf[0].AsFP64[0] - 1.0);
    DstPtr.Store(CopyLoop * 2 + 1, TempBuf[0].AsFP64[1] - 1.0);
  }
#elif (CFG_HAVE_U128 == CFG_SIMD_MMX)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-mmx, fp64-scalar two-pass implementation
// PATHNAME u128mmx-fp64scalar-2pass
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  {
    // Integer pass.
    CDataBuffer_ConstView<__m64, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<__m64>();
    CDataBuffer_VarView<__m64, BufSize * 16> DstPtr = FBuffer_uniform_FP64.template GetVarView<__m64>();

    __m64 AndMask = SIMDOps::__m64_const<0xFFFFFFFF, 0x000FFFFF>::Value();
    __m64 OrMask = SIMDOps::__m64_const<0x00000000, 0x3FF00000>::Value();

    size_t CopyLoop;
    for (CopyLoop = 0; CopyLoop < BufSize - BufSize % 2; CopyLoop += 2)
    {
      DstPtr.Store(CopyLoop * 2 + 0, _mm_or_si64(_mm_and_si64(SrcPtr.Load(CopyLoop * 2 + 0), AndMask), OrMask));
      DstPtr.Store(CopyLoop * 2 + 1, _mm_or_si64(_mm_and_si64(SrcPtr.Load(CopyLoop * 2 + 1), AndMask), OrMask));
      DstPtr.Store(CopyLoop * 2 + 2, _mm_or_si64(_mm_and_si64(SrcPtr.Load(CopyLoop * 2 + 2), AndMask), OrMask));
      DstPtr.Store(CopyLoop * 2 + 3, _mm_or_si64(_mm_and_si64(SrcPtr.Load(CopyLoop * 2 + 3), AndMask), OrMask));
    }
    if ((BufSize % 2) == 1)
    {
      DstPtr.Store(CopyLoop * 2 + 0, _mm_or_si64(_mm_and_si64(SrcPtr.Load(CopyLoop * 2 + 0), AndMask), OrMask));
      DstPtr.Store(CopyLoop * 2 + 1, _mm_or_si64(_mm_and_si64(SrcPtr.Load(CopyLoop * 2 + 1), AndMask), OrMask));
    }

    SIMDOps::EmptyForFP();
  }
  {
    // Floating point pass.
    CDataBuffer_VarView<double, BufSize * 16> DstPtr = FBuffer_uniform_FP64.template GetVarView<double>();

    size_t CopyLoop;
    for (CopyLoop = 0; CopyLoop < BufSize - BufSize % 2; CopyLoop += 2)
    {
      DstPtr.Store(CopyLoop * 2 + 0, DstPtr.Load(CopyLoop * 2 + 0) - 1.0);
      DstPtr.Store(CopyLoop * 2 + 1, DstPtr.Load(CopyLoop * 2 + 1) - 1.0);
      DstPtr.Store(CopyLoop * 2 + 2, DstPtr.Load(CopyLoop * 2 + 2) - 1.0);
      DstPtr.Store(CopyLoop * 2 + 3, DstPtr.Load(CopyLoop * 2 + 3) - 1.0);
    }
    if ((BufSize % 2) == 1)
    {
      DstPtr.Store(CopyLoop * 2 + 0, DstPtr.Load(CopyLoop * 2 + 0) - 1.0);
      DstPtr.Store(CopyLoop * 2 + 1, DstPtr.Load(CopyLoop * 2 + 1) - 1.0);
    }
  }
#elif (CFG_BITS == 64)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-scalar, fp64-scalar 64-bit one-pass implementation
// PATHNAME u128scalar-fp64scalar-64bit
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  SIMDOps::EmptyForFP();
  CDataBuffer_ConstView<uint64_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint64_t>();
  CDataBuffer_VarView<double, BufSize * 16> DstPtr = FBuffer_uniform_FP64.template GetVarView<double>();

  uint64_t AndMask = UINT64_C(0x000FFFFFFFFFFFFF);
  uint64_t OrMask = UINT64_C(0x3FF0000000000000);

  // The main conversion loop.
  union
  {
    uint64_t AsU64;
    double AsFP64;
  } FPConv[2];

  for (size_t CopyLoop = 0; CopyLoop < 2 * BufSize; CopyLoop += 2)
  {
    FPConv[0].AsU64 = (SrcPtr.Load(CopyLoop + 0) & AndMask) | OrMask;
    DstPtr.Store(CopyLoop + 0, FPConv[0].AsFP64 - 1.0);
    FPConv[1].AsU64 = (SrcPtr.Load(CopyLoop + 1) & AndMask) | OrMask;
    DstPtr.Store(CopyLoop + 1, FPConv[1].AsFP64 - 1.0);
  }
#else
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-scalar, fp64-scalar 32-bit one-pass implementation
// PATHNAME u128scalar-fp64scalar-32bit
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  SIMDOps::EmptyForFP();
  CDataBuffer_ConstView<uint32_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint32_t>();
  CDataBuffer_VarView<double, BufSize * 16> DstPtr = FBuffer_uniform_FP64.template GetVarView<double>();

  uint32_t AndMask = 0x000FFFFF;
  uint32_t OrMask = 0x3FF00000;

  // The main conversion loop.
  union
  {
    uint32_t AsU32[2];
    double AsFP64;
  } FPConv[2];

  for (size_t CopyLoop = 0; CopyLoop < BufSize; CopyLoop++)
  {
    FPConv[0].AsU32[EndianFix_static<1, 1>::Value] = (SrcPtr.Load(CopyLoop * 4 + EndianFix_static<2, 1>::Value) & AndMask) | OrMask;
    FPConv[0].AsU32[EndianFix_static<1, 0>::Value] = SrcPtr.Load(CopyLoop * 4 + EndianFix_static<2, 0>::Value);
    DstPtr.Store(CopyLoop * 2 + EndianFix_static<1, 0>::Value, FPConv[0].AsFP64 - 1.0);
    FPConv[1].AsU32[EndianFix_static<1, 1>::Value] = (SrcPtr.Load((CopyLoop) * 4 + EndianFix_static<2, 3>::Value) & AndMask) | OrMask;
    FPConv[1].AsU32[EndianFix_static<1, 0>::Value] = SrcPtr.Load((CopyLoop) * 4 + EndianFix_static<2, 2>::Value);
    DstPtr.Store(CopyLoop * 2 + EndianFix_static<1, 1>::Value, FPConv[1].AsFP64 - 1.0);
  }
#endif
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Common code.
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  FBufPos_uniform_FP64 = 0;
}


template<class SFMTParams>
inline double CPRNG<SFMTParams>::Random_uniform_FP64(void)
{
  if (FBufPos_uniform_FP64 == FBufLen_uniform_FP64) RefillBuf_uniform_FP64();
  return FBuffer_uniform_FP64.LoadFP64(EndianFix<1>(FBufPos_uniform_FP64++));
}

template<class SFMTParams>
inline void CPRNG<SFMTParams>::RandFill_uniform_FP64(double *Buffer, size_t NumDoubles)
{
  size_t NumToGo = NumDoubles;
  while (NumToGo > 0)
  {
    // Round up to the next 128-bit boundary.
    FBufPos_uniform_FP64 = (FBufPos_uniform_FP64 + 1) & ~1;

    // Make sure there's something to copy from.
    while (FBufLen_uniform_FP64 == FBufPos_uniform_FP64)
      RefillBuf_uniform_FP64();

    // See how many to do.
    size_t NumInBuf = FBufLen_uniform_FP64 - FBufPos_uniform_FP64;
    size_t NumToDo = (NumToGo > NumInBuf) ? NumInBuf : NumToGo;

    // Copy.
    memcpy(Buffer, FBuffer_uniform_FP64.GetPointerFP64() + FBufPos_uniform_FP64, NumToDo * sizeof(double));

    // Update pointers, etc.
    Buffer += NumToDo;
    NumToGo -= NumToDo;
    FBufPos_uniform_FP64 += NumToDo;
  }
}

// -----------------------------------------------------------------------------
// Gaussian tail random numbers.
// PATHDEF GaussianTailFP64
// -----------------------------------------------------------------------------
template<class SFMTParams>
NOINLINE void CPRNG<SFMTParams>::RefillBuf_gaussiantail_FP64(void)
{
  #ifndef CFG_TIMETRACK_DISABLE
  CTimedScope ScopeTimer(Metrics.gaussiantail_FP64_refill_time);
  Metrics.gaussiantail_FP64_refill_count++;
  #endif

  typename CRandPool<SFMTParams>::CRandomBlockPtr RandomBlock = FRandPool.GetRandomBlock();
  SIMDOps::EmptyForFP();

#if (CFG_HAVE_U128 == CFG_SIMD_INTRINSIC) && (CFG_HAVE_U128FP64 == CFG_SIMD_INTRINSIC)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-intrinsic, fp64-intrinsic implementation
// PATHNAME u128fp64intrinsic
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  // Some constants.
  uint128fp64_t SignAndMask = SIMDOps::uint128fp64_t_const<0x00000000, 0x80000000, 0x00000000, 0x80000000>::Value();
  uint128fp64_t FPAndMask = SIMDOps::uint128fp64_t_const<0xFFFFFFFF, 0x000FFFFF, 0xFFFFFFFF, 0x000FFFFF>::Value();
  uint128fp64_t FPOrMask = SIMDOps::uint128fp64_t_const<0x00000000, 0x3FF00000, 0x00000000, 0x3FF00000>::Value();

  double a = CZigguratGaussian_FP64::Bins[1].XScale;
  double a2 = a * a;
  uint128fp64_t a128 = SIMDOps::make_uint128fp64_t(a, a);

  // Process each of the values.
  CDataBuffer_ConstView<uint128fp64_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint128fp64_t>();
  CDataBuffer_VarView<uint128fp64_t, BufSize / 2 * 16> DstPtr = FBuffer_gaussiantail_FP64.template GetVarView<uint128fp64_t>();

  for (size_t SrcIdx = 0; SrcIdx < FBufLen_gaussiantail_FP64 / 2; SrcIdx++)
  {
    // From the first uint128_t, extract two fp64's (and two signs later).
    uint128fp64_t Src = SrcPtr.Load(SrcIdx * 2);
    uint128fp64_t u1 = SIMDOP_sub(SIMDOP_or(SIMDOP_and(Src, FPAndMask), FPOrMask), FPOrMask);
    uint128fp64_t SignBit = SIMDOP_and(Src, SignAndMask);

    // Transform u1
    union
    {
      uint128fp64_t AsU128;
      double AsFP64[2];
    } Test = {u1};
    Test.AsFP64[0] = sqrt(a2 - 2 * log(Test.AsFP64[0]));
    Test.AsFP64[1] = sqrt(a2 - 2 * log(Test.AsFP64[1]));

    // Calculate the compare result (u2 < a / Test) ie: Test * u2 < a
    // Accept if Test * u2 < a
    uint128fp64_t u2 = SIMDOP_sub(SIMDOP_or(SIMDOP_and(SrcPtr.Load(SrcIdx * 2 + 1), FPAndMask), FPOrMask), FPOrMask);
    uint128fp64_t CompareResult = SIMDOps::CmpGE(SIMDOP_mul(Test.AsU128, u2), a128);

    // Store the transformed u1.
    DstPtr.Store(SrcIdx, SIMDOP_or(SIMDOP_or(Test.AsU128, SignBit), CompareResult));
  }
#elif (CFG_HAVE_U128 == CFG_SIMD_INTRINSIC) // Note: No mmx due to emms overhead.
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-intrinsic, fp64-scalar implementation
// PATHNAME u128intrinsic-fp64scalar
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  // Some constants.
  uint128_t SignAndMask = SIMDOps::uint128_t_const<0x00000000, 0x80000000, 0x00000000, 0x80000000>::Value();
  uint128_t FPAndMask = SIMDOps::uint128_t_const<0xFFFFFFFF, 0x000FFFFF, 0xFFFFFFFF, 0x000FFFFF>::Value();
  uint128_t FPOrMask = SIMDOps::uint128_t_const<0x00000000, 0x3FF00000, 0x00000000, 0x3FF00000>::Value();

  double a = CZigguratGaussian_FP64::Bins[1].XScale;
  double a2 = a * a;

  // Process each of the values.
  CDataBuffer_ConstView<uint128_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint128_t>();
  CDataBuffer_VarView<uint128_t, BufSize / 2 * 16> DstPtr = FBuffer_gaussiantail_FP64.template GetVarView<uint128_t>();

  union
  {
    uint128_t AsU128;
    double AsFP64[2];
  } u1;

  union
  {
    uint128_t AsU128;
    double AsFP64[2];
  } u2;

  for (size_t SrcIdx = 0; SrcIdx < FBufLen_gaussiantail_FP64 / 2; SrcIdx++)
  {
    // Extract (u1 + 1) and the sign bit.
    uint128_t TempSrc = SrcPtr.Load(SrcIdx * 2);
    u1.AsU128 = SIMDOP_or(SIMDOP_and(TempSrc, FPAndMask), FPOrMask);
    uint128_t SignBit = SIMDOP_and(TempSrc, SignAndMask);

    // Extract (u2 + 1).
    u2.AsU128 = SIMDOP_or(SIMDOP_and(SrcPtr.Load(SrcIdx * 2 + 1), FPAndMask), FPOrMask);

    // Transform u1.
    double Test0 = sqrt(a2 - 2 * log(u1.AsFP64[0] - 1.0));
    double Test1 = sqrt(a2 - 2 * log(u1.AsFP64[1] - 1.0));
    union
    {
      double AsFP64[2];
      uint128_t AsU128;
    } Test = {{Test0, Test1}};

    // Calculate the compare results (u2 < a / Test) ie: Test * u2 < a
    // Accept if Test * u2 < a
    #if (CFG_BITS == 64)
    uint64_t Compare0 = ((Test0 * (u2.AsFP64[0] - 1.0)) >= a) ? UINT64_C(0xFFFFFFFFFFFFFFFF) : 0;
    uint64_t Compare1 = ((Test1 * (u2.AsFP64[1] - 1.0)) >= a) ? UINT64_C(0xFFFFFFFFFFFFFFFF) : 0;
    union
    {
      uint64_t AsU64[2];
      uint128_t AsU128;
    } CompareResult = {{Compare0, Compare1}};
    #else
    uint32_t Compare0 = ((Test0 * (u2.AsFP64[0] - 1.0)) >= a) ? 0xFFFFFFFF : 0;
    uint32_t Compare1 = ((Test1 * (u2.AsFP64[1] - 1.0)) >= a) ? 0xFFFFFFFF : 0;
    union
    {
      uint32_t AsU32[4];
      uint128_t AsU128;
    } CompareResult = {{Compare0, Compare0, Compare1, Compare1}};
    #endif

    // Store the transformed u1.
    DstPtr.Store(SrcIdx, SIMDOP_or(SIMDOP_or(Test.AsU128, SignBit), CompareResult.AsU128));
  }
#elif (CFG_BITS == 64)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-scalar, fp64-scalar 64-bit implementation
// PATHNAME u128scalar-fp64scalar-64bit
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  // Some constants.
  const uint64_t FPAndMask = UINT64_C(0x000FFFFFFFFFFFFF);
  const uint64_t FPOrMask = UINT64_C(0x3FF0000000000000);
  const uint64_t SignAndMask = UINT64_C(0x8000000000000000);

  double a = CZigguratGaussian_FP64::Bins[1].XScale;
  double a2 = a * a;

  // Process each of the values.
  CDataBuffer_ConstView<uint64_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint64_t>();
  CDataBuffer_VarView<uint64_t, BufSize / 2 * 16> DstPtr = FBuffer_gaussiantail_FP64.template GetVarView<uint64_t>();

  union
  {
    uint64_t AsU64;
    double AsFP64;
  } u1;

  union
  {
    uint64_t AsU64;
    double AsFP64;
  } u2;

  for (size_t SrcIdx = 0; SrcIdx < FBufLen_gaussiantail_FP64 * 2; SrcIdx++)
  {
    // Extract (u1 + 1) and the sign bit.
    uint64_t TmpSrc = SrcPtr.Load(SrcIdx);
    u1.AsU64 = (TmpSrc & FPAndMask) | FPOrMask;
    uint64_t SignBit = TmpSrc & SignAndMask;

    // Extract (u2 + 1).
    u2.AsU64 = (SrcPtr.Load(SrcIdx + 2) & FPAndMask) | FPOrMask;

    // Calculate Test = sqrt(a * a - 2 * log(u1))
    // Reuse the u1 structure to convert to a u64.
    double Test = sqrt(a2 - 2 * log(u1.AsFP64 - 1.0));
    u1.AsFP64 = Test;

    // Calculate the destination index.
    size_t DstIdx = (SrcIdx & 1) + (SrcIdx / 4 * 2);

    // Calculate the compare result (u2 < a / Test) ie: Test * u2 < a
    // Accept if Test * u2 < a
    uint64_t OrMask = ((Test * (u2.AsFP64 - 1.0)) >= a) ? UINT64_C(0xFFFFFFFFFFFFFFFF) : 0;

    DstPtr.Store(DstIdx, u1.AsU64 | OrMask | SignBit);

    // Special counting up: we want the loop index to go 0, 1, 4, 5, 8, 9, ...
    // since the values inbetween are used for the second random number u2.
    SrcIdx += 2 * (SrcIdx & 1);
  }
#else
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-scalar, fp64-scalar 32-bit implementation
// PATHNAME u128scalar-fp64scalar-32bit
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  // Some constants.
  const uint32_t FPAndMask = 0x000FFFFF;
  const uint32_t FPOrMask = 0x3FF00000;
  const uint32_t SignAndMask = 0x80000000;

  double a = CZigguratGaussian_FP64::Bins[1].XScale;
  double a2 = a * a;

  // Process each of the values.
  CDataBuffer_ConstView<uint32_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint32_t>();
  CDataBuffer_VarView<uint32_t, BufSize / 2 * 16> DstPtr = FBuffer_gaussiantail_FP64.template GetVarView<uint32_t>();

  union
  {
    uint32_t AsU32[2];
    double AsFP64;
  } u1;

  union
  {
    uint32_t AsU32[2];
    double AsFP64;
  } u2;

  for (size_t SrcIdx = 0; SrcIdx < FBufLen_gaussiantail_FP64 * 2; SrcIdx++)
  {
    // Extract (u1 + 1) and the sign bit.
    u1.AsU32[EndianFix_static<1, 0>::Value] = SrcPtr.Load(SrcIdx * 2 + EndianFix_static<1, 0>::Value);
    uint32_t TmpSrc = SrcPtr.Load(SrcIdx * 2 + EndianFix_static<1, 1>::Value);
    u1.AsU32[EndianFix_static<1, 1>::Value] = (TmpSrc & FPAndMask) | FPOrMask;
    uint32_t SignBit = TmpSrc & SignAndMask;

    // Extract (u2 + 1).
    u2.AsU32[EndianFix_static<1, 0>::Value] = SrcPtr.Load((SrcIdx + 2) * 2 + EndianFix_static<1, 0>::Value);
    u2.AsU32[EndianFix_static<1, 1>::Value] = (SrcPtr.Load((SrcIdx + 2) * 2 + EndianFix_static<1, 1>::Value) & FPAndMask) | FPOrMask;

    // Calculate Test = sqrt(a * a - 2 * log(u1))
    // Reuse the u1 structure to convert to two u32's.
    double Test = sqrt(a2 - 2 * log(u1.AsFP64 - 1.0));
    u1.AsFP64 = Test;

    // Calculate the destination index.
    size_t DstIdx = (SrcIdx & 1) + (SrcIdx / 4 * 2);

    // Calculate the compare result (u2 < a / Test) ie: Test * u2 < a
    // Accept if Test * u2 < a
    uint32_t OrMask = ((Test * (u2.AsFP64 - 1.0)) >= a) ? 0xFFFFFFFF : 0;

    DstPtr.Store(DstIdx * 2 + EndianFix_static<1, 0>::Value, u1.AsU32[EndianFix_static<1, 0>::Value] | OrMask);
    DstPtr.Store(DstIdx * 2 + EndianFix_static<1, 1>::Value, u1.AsU32[EndianFix_static<1, 1>::Value] | OrMask | SignBit);

    // Special counting up: we want the loop index to go 0, 1, 4, 5, 8, 9, ...
    // since the values inbetween are used for the second random number u2.
    SrcIdx += 2 * (SrcIdx & 1);
  }
#endif
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Common code.
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  FBufPos_gaussiantail_FP64 = 0;
}

template<class SFMTParams>
inline double CPRNG<SFMTParams>::Random_gaussiantail_FP64(void)
{
  for (;;)
  {
    while (FBufPos_gaussiantail_FP64 < FBufLen_gaussiantail_FP64)
    {
      size_t SrcIdx = EndianFix<1>(FBufPos_gaussiantail_FP64++);
      // If the upper 32 bits is 0xffffffff then it's a NaN so skip.
      if (FBuffer_gaussiantail_FP64.LoadU32(SrcIdx * 2 + EndianFix_static<1, 1>::Value) != 0xffffffff)
        return FBuffer_gaussiantail_FP64.LoadFP64(SrcIdx);
    }
    RefillBuf_gaussiantail_FP64();
  }
}

template<class SFMTParams>
inline void CPRNG<SFMTParams>::RandFill_gaussiantail_FP64(double *Buffer, size_t NumDoubles)
{
  size_t NumDone = 0;
  for(;;)
  {
    // Copy.
    for (size_t CopyLoop = FBufPos_gaussiantail_FP64; CopyLoop < FBufLen_gaussiantail_FP64; CopyLoop++)
    {
      size_t SrcIdx = EndianFix<1>(CopyLoop);
      if (FBuffer_gaussiantail_FP64.LoadU32(SrcIdx * 2 + EndianFix_static<1, 1>::Value) != 0xffffffff)
      {
        Buffer[NumDone++] = FBuffer_gaussiantail_FP64.LoadFP64(SrcIdx);
        if (NumDone == NumDoubles)
        {
          FBufPos_gaussiantail_FP64 = CopyLoop + 1;
          return;
        }
      }
    }

    // The only way to get here is if the buffer is empty. Refill it.
    RefillBuf_gaussiantail_FP64();    
  }
}

// -----------------------------------------------------------------------------
// Gaussian random numbers.
// PATHDEF GaussianFP64
// -----------------------------------------------------------------------------
template<class SFMTParams>
NOINLINE void CPRNG<SFMTParams>::RefillBuf_gaussian_FP64(void)
{
  #ifndef CFG_TIMETRACK_DISABLE
  CTimedScope ScopeTimer(Metrics.gaussian_FP64_refill_time);
  Metrics.gaussian_FP64_refill_count++;
  #endif

  typename CRandPool<SFMTParams>::CRandomBlockPtr RandomBlock = FRandPool.GetRandomBlock();
  SIMDOps::EmptyForFP();
  size_t DstPos = 0;

#if (CFG_HAVE_U128 == CFG_SIMD_INTRINSIC) && (CFG_HAVE_U128FP64 == CFG_SIMD_INTRINSIC)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-intrinsic, fp64-intrinsic implementation
// PATHNAME u128fp64intrinsic
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  CDataBuffer_ConstView<uint128_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint128_t>();
  CDataBuffer_VarView<double, BufSize * 16> DstPtr = FBuffer_gaussian_FP64.template GetVarView<double>();

  // Load a few constants.
  uint128_t FPAndMask = SIMDOps::uint128_t_const<0xFFFFFFFF, 0x000FFFFF, 0xFFFFFFFF, 0x000FFFFF>::Value();
  uint128fp64_t FPSignMask = SIMDOps::uint128fp64_t_const<0x00000000, 0x80000000, 0x00000000, 0x80000000>::Value();
  uint128fp64_t FPOrMask = SIMDOps::uint128fp64_t_const<0x00000000, 0x3FF00000, 0x00000000, 0x3FF00000>::Value();
  uint128_t BinAndMask = SIMDOps::uint128_t_const<0x00000000, 0x07F00000, 0x00000000, 0x07F00000>::Value();

  union
  {
    uint128_t AsU128;
    uint64_t AsU64[2];
  } BinPos;

  union
  {
    uint128_t AsU128;
    uint32_t AsU32[4];
  } BinIndex;

  union
  {
    double AsFP64[2];
    uint128fp64_t AsU128;
  } FPScale;

  for (size_t SrcPos = 0; SrcPos < BufSize; SrcPos++)
  {
    // Get a random number, uniform over (1, 1). Note that there is a slight
    // defect in that the "zero" bin will have twice as many elements as it
    // should (due to +/- 0). It's small enough to be irrelevant though.
    // Also get the integer representation.
    uint128_t SrcU128 = SrcPtr.Load(SrcPos);
    uint128_t TempRes = SIMDOP_and(SrcU128, FPAndMask);
    uint128fp64_t FPTemp = SIMDOP_or(
      SIMDOP_sub(SIMDOP_or(SIMDOps::simdcast_fp64(TempRes), FPOrMask), FPOrMask),
      SIMDOP_and(SIMDOps::simdcast_fp64(SrcU128), FPSignMask));

    BinPos.AsU128 = TempRes;

    // Get the bin number. Bin 0 is in EndianFix<2>(1), Bin 1 is in
    // EndianFix<2>(1) + 2.
    BinIndex.AsU128 = SIMDOps::Shr_u32<20>(SIMDOP_and(SrcU128, BinAndMask));

    // Pack the two multiplies together.
    FPScale.AsFP64[0] = CZigguratGaussian_FP64::Bins[BinIndex.AsU32[EndianFix_static<1, 1>::Value + 0]].XScale;
    FPScale.AsFP64[1] = CZigguratGaussian_FP64::Bins[BinIndex.AsU32[EndianFix_static<1, 1>::Value + 2]].XScale;
    
    FPScale.AsU128 = SIMDOP_mul(FPScale.AsU128, FPTemp);

    // Handle the first result
    uint32_t CurBinIndex = BinIndex.AsU32[EndianFix_static<2, 1>::Value];
    double CurFPResult = FPScale.AsFP64[EndianFix_static<1, 0>::Value];

    if (BinPos.AsU64[EndianFix_static<1, 0>::Value] < CZigguratGaussian_FP64::Bins[CurBinIndex].THold)
    {
      // Accept.
      DstPtr.Store(DstPos++, CurFPResult);
    }
    else
    {
      if (CurBinIndex == 0)
      {
        // Sample from the tail.
        DstPtr.Store(DstPos++, Random_gaussiantail_FP64());
      }
      else
      {
        // Intermediate region.
        double yval = exp(-CurFPResult * CurFPResult * 0.5);
        double ysample = CZigguratGaussian_FP64::Bins[CurBinIndex].YOffset + CZigguratGaussian_FP64::Bins[CurBinIndex].YScale * Random_uniform_FP64();
        if (ysample < yval)
        {
          // Accept.
          DstPtr.Store(DstPos++, CurFPResult);
        }
      }
    }

    // Handle the second result
    CurBinIndex = BinIndex.AsU32[EndianFix_static<2, 3>::Value];
    CurFPResult = FPScale.AsFP64[EndianFix_static<1, 1>::Value];

    if (BinPos.AsU64[EndianFix_static<1, 1>::Value] < CZigguratGaussian_FP64::Bins[CurBinIndex].THold)
    {
      // Accept.
      DstPtr.Store(DstPos++, CurFPResult);
    }
    else
    {
      if (CurBinIndex == 0)
      {
        // Sample from the tail.
        DstPtr.Store(DstPos++, Random_gaussiantail_FP64());
      }
      else
      {
        // Intermediate region.
        double yval = exp(-CurFPResult * CurFPResult * 0.5);
        double ysample = CZigguratGaussian_FP64::Bins[CurBinIndex].YOffset + CZigguratGaussian_FP64::Bins[CurBinIndex].YScale * Random_uniform_FP64();
        if (ysample < yval)
        {
          // Accept.
          DstPtr.Store(DstPos++, CurFPResult);
        }
      }
    }
  }
#else
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-scalar, fp64-scalar 32/64-bit implementation
// PATHNAME u128scalar-fp64scalar
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  CDataBuffer_ConstView<uint64_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint64_t>();
  CDataBuffer_VarView<uint64_t, BufSize * 16> DstPtr = FBuffer_gaussian_FP64.template GetVarView<uint64_t>();

  // Load a few constants.
  const uint64_t FPAndMask = UINT64_C(0x000FFFFFFFFFFFFF);
  const uint64_t FPSignMask = UINT64_C(0x8000000000000000);
  const uint64_t FPOrMask = UINT64_C(0x3FF0000000000000);
  const uint32_t BinAndMask = 0x0000007F;

  union
  {
    uint64_t AsU64;
    double AsFP64;
  } FPConv;

  for (size_t SrcPos = 0; SrcPos < BufSize * 2; SrcPos++)
  {
    // Get a random number, uniform over (1, 1). Note that there is a slight
    // defect in that the "zero" bin will have twice as many elements as it
    // should (due to +/- 0). It's small enough to be irrelevant though.
    // Also get the integer representation.
    uint64_t TmpSrc = SrcPtr.Load(EndianFix<1>(SrcPos));
    uint64_t IntBinPos = (TmpSrc & FPAndMask);
    FPConv.AsU64 = IntBinPos | FPOrMask;

    // Get the bin number.
    uint32_t BinIdx = static_cast<uint32_t>((TmpSrc >> 52) & BinAndMask);

    // Scale
    double FPResult = (FPConv.AsFP64 - 1.0) * CZigguratGaussian_FP64::Bins[BinIdx].XScale;
    FPConv.AsFP64 = FPResult;

    // Handle the result.
    if (IntBinPos < CZigguratGaussian_FP64::Bins[BinIdx].THold)
    {
      // Accept.
      FBuffer_gaussian_FP64.StoreU64(DstPos++, FPConv.AsU64 | (TmpSrc & FPSignMask));
    }
    else
    {
      if (BinIdx == 0)
      {
        // Sample from the tail.
        FBuffer_gaussian_FP64.StoreFP64(DstPos++, Random_gaussiantail_FP64());
      }
      else
      {
        // Intermediate region.
        double yval = exp(-FPResult * FPResult * 0.5);
        double ysample = CZigguratGaussian_FP64::Bins[BinIdx].YOffset + CZigguratGaussian_FP64::Bins[BinIdx].YScale * Random_uniform_FP64();
        if (ysample < yval)
        {
          // Accept.
          FBuffer_gaussian_FP64.StoreU64(DstPos++, FPConv.AsU64 | (TmpSrc & FPSignMask));
        }
      }
    }
  }
#endif
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Common code
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  // Store the number of numbers we actually generated.
  FBufLen_gaussian_FP64 = DstPos;
  FBufPos_gaussian_FP64 = 0;
  #ifndef CFG_TIMETRACK_DISABLE
  Metrics.gaussian_FP64_numgen += DstPos;
  #endif
}

template<class SFMTParams>
inline double CPRNG<SFMTParams>::Random_gaussian_FP64(void)
{
  CDataBuffer_ConstView<double, BufSize * 16> SrcView = FBuffer_gaussian_FP64.template GetConstView<double>();
  for (;;)
  {
    if (FBufPos_gaussian_FP64 < FBufLen_gaussian_FP64)
      return SrcView.Load(EndianFix<1>(FBufPos_gaussian_FP64++));
    RefillBuf_gaussian_FP64();
  }
}

template<class SFMTParams>
inline void CPRNG<SFMTParams>::RandFill_gaussian_FP64(double *Buffer, size_t NumDoubles)
{
  CDataBuffer_ConstView<double, BufSize * 16> SrcView = FBuffer_gaussian_FP64.template GetConstView<double>();

  // Round the source offset up to the next 128-bit boundary.
  size_t BufPos128 = (FBufPos_gaussian_FP64 + 1) / 2;
  size_t NumToGo128 = NumDoubles / 2;

  while (NumToGo128 > 0)
  {
    // Make sure there's something to copy from.
    if (BufPos128 >= FBufLen_gaussian_FP64 / 2)
    {
      RefillBuf_gaussian_FP64();
      BufPos128 = 0;
    }

    // See how many to do.
    size_t NumInBuf128 = (FBufLen_gaussian_FP64 / 2) - BufPos128;
    size_t NumToDo128 = (NumToGo128 > NumInBuf128) ? NumInBuf128 : NumToGo128;

    // Copy.
    memcpy(Buffer, SrcView.GetPointer() + BufPos128 * 2, NumToDo128 * 16);

    // Update pointers, etc.
    Buffer += NumToDo128 * 2;
    NumToGo128 -= NumToDo128;
    BufPos128 += NumToDo128;
  }

  // Store the position back.
  FBufPos_gaussian_FP64 = BufPos128 * 2;

  // If there's one left, transfer it by itself.
  if (NumDoubles % 2 == 1) *Buffer = Random_gaussian_FP64();
}

// -----------------------------------------------------------------------------
// Integers
// -----------------------------------------------------------------------------

template<class SFMTParams>
inline void CPRNG<SFMTParams>::RefillBuf_integer(void)
{
  typename CRandPool<SFMTParams>::CRandomBlockPtr RandomBlock = FRandPool.GetRandomBlock();
  SIMDOps::EmptyForFP();
  memcpy(FBuffer_integer.GetPointerU8(), RandomBlock.GetDataPointer(), BufSize * 16);
  FBufPos_integer = 0;
}

template<class SFMTParams>
inline uint32_t CPRNG<SFMTParams>::Random_u32(void)
{
  // Round the source offset up to the next 32-bit boundary.
  size_t BufPos32 = (FBufPos_integer + 3) / 4;

  // Refill the buffer if need be.
  if (BufPos32 == BufSize * 4)
  {
    RefillBuf_integer();
    BufPos32 = 0;
  }

  // Get the value.
  CDataBuffer_ConstView<uint32_t, BufSize * 16> SrcView = FBuffer_integer.template GetConstView<uint32_t>();
  uint32_t RetVal = SrcView.Load(EndianFix<2>(BufPos32));
  FBufPos_integer = (BufPos32 + 1) * 4;
  return RetVal;
}

template<class SFMTParams>
inline uint32_t CPRNG<SFMTParams>::Random_u32(uint32_t MaxVal)
{
  if (MaxVal == 0x0FFFFFFFF) return Random_u32();

  uint32_t MaxOK = 0x0FFFFFFFF - (0x0FFFFFFFF % (MaxVal + 1)) - 1;
  uint32_t TestVal = Random_u32();
  while (TestVal > MaxOK) TestVal = Random_u32();
  return TestVal % (MaxVal + 1);
}

template<class SFMTParams>
inline void CPRNG<SFMTParams>::RandFill_u32(uint32_t *Buffer, size_t NumU32s)
{
  uint32_t *SrcPtr = FBuffer_integer.GetPointerU32();

  // Round the source offset up to the next 128-bit boundary.
  size_t BufPos128 = (FBufPos_integer + 15) / 16;
  size_t NumToGo128 = NumU32s / 4;

  while (NumToGo128 > 0)
  {
    // Make sure there's something to copy from.
    if (BufPos128 == BufSize)
    {
      RefillBuf_integer();
      BufPos128 = 0;
    }

    // See how many to do.
    size_t NumInBuf128 = BufSize - BufPos128;
    size_t NumToDo128 = (NumToGo128 > NumInBuf128) ? NumInBuf128 : NumToGo128;

    // Copy.
    memcpy(Buffer, SrcPtr + BufPos128 * 4, NumToDo128 * 16);

    // Update pointers, etc.
    Buffer += NumToDo128 * 4;
    NumToGo128 -= NumToDo128;
    BufPos128 += NumToDo128;
  }

  // Store the position back.
  FBufPos_integer = BufPos128 * 16;

  // Handle any remaining elements.
  switch(NumU32s % 4)
  {
    case 3:
      Buffer[0] = Random_u32();
      Buffer[1] = Random_u32();
      Buffer[2] = Random_u32();
      break;
    case 2:
      Buffer[0] = Random_u32();
      Buffer[1] = Random_u32();
      break;
    case 1:
      Buffer[0] = Random_u32();
      break;
  }
}

// -----------------------------------------------------------------------------
// Exponential random doubles.
// PATHDEF ExponentialFP64
// -----------------------------------------------------------------------------
template<class SFMTParams>
NOINLINE void CPRNG<SFMTParams>::RefillBuf_exponential_FP64(void)
{
  #ifndef CFG_TIMETRACK_DISABLE
  CTimedScope ScopeTimer(Metrics.exponential_FP64_refill_time);
  Metrics.exponential_FP64_refill_count++;
  #endif

  typename CRandPool<SFMTParams>::CRandomBlockPtr RandomBlock = FRandPool.GetRandomBlock();
  SIMDOps::EmptyForFP();

  double ScaleFactor = FScaleFactor_exponential_FP64;
  size_t DstPos = 0;

#if (CFG_HAVE_U128 == CFG_SIMD_INTRINSIC) && (CFG_HAVE_U128FP64 == CFG_SIMD_INTRINSIC)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-intrinsic, fp64-intrinsic implementation
// PATHNAME u128fp64intrinsic
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  CDataBuffer_ConstView<uint128_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint128_t>();
  CDataBuffer_VarView<double, BufSize * 16> DstPtr = FBuffer_exponential_FP64.template GetVarView<double>();

  // Load a few constants.
  uint128_t FPAndMask = SIMDOps::uint128_t_const<0xFFFFFFFF, 0x000FFFFF, 0xFFFFFFFF, 0x000FFFFF>::Value();
  uint128fp64_t FPOrMask = SIMDOps::uint128fp64_t_const<0x00000000, 0x3FF00000, 0x00000000, 0x3FF00000>::Value();
  uint128_t BinAndMask = SIMDOps::uint128_t_const<0x00000000, 0x07F00000, 0x00000000, 0x07F00000>::Value();

  for (size_t SrcPos = 0; SrcPos < BufSize; SrcPos++)
  {
    // Get a random number, uniform over [0, 1). Also get the integer representation.
    uint128_t SrcU128 = SrcPtr.Load(SrcPos);
    uint128_t TempRes = SIMDOP_and(SrcU128, FPAndMask);
    uint128fp64_t FPTemp = SIMDOP_sub(SIMDOP_or(SIMDOps::simdcast_fp64(TempRes), FPOrMask), FPOrMask);

    union
    {
      uint128_t AsU128;
      uint64_t AsU64[2];
    } BinPos = {TempRes};

    // Get the bin number. Bin 0 is in EndianFix<2>(1), Bin 1 is in
    // EndianFix<2>(1) + 2.
    union
    {
      uint128_t AsU128;
      uint32_t AsU32[4];
    } BinIndex = {SIMDOps::Shr_u32<20>(SIMDOP_and(SrcU128, BinAndMask))};

    // Pack the two multiplies together.
    union
    {
      double AsFP64[2];
      uint128fp64_t AsU128;
    } FPScale = {{
      CZigguratExponential_FP64::Bins[BinIndex.AsU32[EndianFix_static<1, 1>::Value + 0]].XScale,
      CZigguratExponential_FP64::Bins[BinIndex.AsU32[EndianFix_static<1, 1>::Value + 2]].XScale}};

    union
    {
      uint128fp64_t AsU128;
      double AsFP64[2];
    } FPResult = {SIMDOP_mul(FPTemp, FPScale.AsU128)};

    // Handle the first result
    uint32_t CurBinIndex = BinIndex.AsU32[EndianFix_static<2, 1>::Value];
    double CurFPResult = FPResult.AsFP64[EndianFix_static<1, 0>::Value];

    if (BinPos.AsU64[EndianFix_static<1, 0>::Value] < CZigguratExponential_FP64::Bins[CurBinIndex].THold)
    {
      // Accept.
      DstPtr.Store(DstPos++, CurFPResult + ScaleFactor);
      ScaleFactor = 0;
    }
    else
    {
      if (CurBinIndex == 0)
      {
        // Sample from the tail. Actually, this is just another sample with a scalefactor!
        ScaleFactor += CZigguratExponential_FP64::Bins[1].XScale;
      }
      else
      {
        // Intermediate region.
        double yval = exp(-CurFPResult);
        double ysample = CZigguratExponential_FP64::Bins[CurBinIndex].YOffset + CZigguratExponential_FP64::Bins[CurBinIndex].YScale * Random_uniform_FP64();
        if (ysample < yval)
        {
          // Accept.
          DstPtr.Store(DstPos++, CurFPResult + ScaleFactor);
          ScaleFactor = 0;
        }
      }
    }

    // Handle the second result
    CurBinIndex = BinIndex.AsU32[EndianFix_static<2, 3>::Value];
    CurFPResult = FPResult.AsFP64[EndianFix_static<1, 1>::Value];

    if (BinPos.AsU64[EndianFix_static<1, 1>::Value] < CZigguratExponential_FP64::Bins[CurBinIndex].THold)
    {
      // Accept.
      DstPtr.Store(DstPos++, CurFPResult + ScaleFactor);
      ScaleFactor = 0;
    }
    else
    {
      if (CurBinIndex == 0)
      {
        // Sample from the tail. Actually, this is just another sample with a scalefactor!
        ScaleFactor += CZigguratExponential_FP64::Bins[1].XScale;
      }
      else
      {
        // Intermediate region.
        double yval = exp(-CurFPResult);
        double ysample = CZigguratExponential_FP64::Bins[CurBinIndex].YOffset + CZigguratExponential_FP64::Bins[CurBinIndex].YScale * Random_uniform_FP64();
        if (ysample < yval)
        {
          // Accept.
          DstPtr.Store(DstPos++, CurFPResult + ScaleFactor + ScaleFactor);
          ScaleFactor = 0;
        }
      }
    }
  }
#else
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-scalar, fp64-scalar 32/64-bit implementation
// PATHNAME u128scalar-fp64scalar
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  CDataBuffer_ConstView<uint64_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint64_t>();
  CDataBuffer_VarView<double, BufSize * 16> DstPtr = FBuffer_exponential_FP64.template GetVarView<double>();

  // Load a few constants.
  const uint64_t FPAndMask = UINT64_C(0x000FFFFFFFFFFFFF);
  const uint64_t FPOrMask = UINT64_C(0x3FF0000000000000);
  const uint32_t BinAndMask = 0x0000007F;

  union
  {
    uint64_t AsU64;
    double AsFP64;
  } u1;

  for (size_t SrcPos = 0; SrcPos < BufSize * 2; SrcPos++)
  {
    // Get a random number, uniform over [1, 2). Also get the integer representation.
    uint64_t TmpSrc = SrcPtr.Load(EndianFix<1>(SrcPos));
    uint64_t IntBinPos = (TmpSrc & FPAndMask);
    u1.AsU64 = IntBinPos | FPOrMask;

    // Get the bin number.
    uint32_t BinIdx = static_cast<uint32_t>((TmpSrc >> 52) & BinAndMask);

    // Scale
    double FPResult = (u1.AsFP64 - 1.0) * CZigguratExponential_FP64::Bins[BinIdx].XScale;

    // Handle the result.
    if (IntBinPos < CZigguratExponential_FP64::Bins[BinIdx].THold)
    {
      // Accept.
      DstPtr.Store(DstPos++, FPResult + ScaleFactor);
      ScaleFactor = 0;
    }
    else
    {
      if (BinIdx == 0)
      {
        // Sample from the tail. Actually, this is just another sample with a scalefactor!
        ScaleFactor += CZigguratExponential_FP64::Bins[1].XScale;
      }
      else
      {
        // Intermediate region.
        double yval = exp(-FPResult);
        double ysample = CZigguratExponential_FP64::Bins[BinIdx].YOffset + CZigguratExponential_FP64::Bins[BinIdx].YScale * Random_uniform_FP64();
        if (ysample < yval)
        {
          // Accept.
          DstPtr.Store(DstPos++, FPResult + ScaleFactor);
          ScaleFactor = 0;
        }
      }
    }
  }
#endif
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Common code
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  // Store the number of numbers we actually generated.
  FBufLen_exponential_FP64 = DstPos;
  FBufPos_exponential_FP64 = 0;
  FScaleFactor_exponential_FP64 = ScaleFactor;
  #ifndef CFG_TIMETRACK_DISABLE
  Metrics.exponential_FP64_numgen += DstPos;
  #endif
}

template<class SFMTParams>
inline double CPRNG<SFMTParams>::Random_exponential_FP64(void)
{
  CDataBuffer_ConstView<double, BufSize * 16> SrcView = FBuffer_exponential_FP64.template GetConstView<double>();
  for (;;)
  {
    if (FBufPos_exponential_FP64 < FBufLen_exponential_FP64)
      return SrcView.Load(EndianFix<1>(FBufPos_exponential_FP64++));
    RefillBuf_exponential_FP64();
  }
}

template<class SFMTParams>
inline void CPRNG<SFMTParams>::RandFill_exponential_FP64(double *Buffer, size_t NumDoubles)
{
  CDataBuffer_ConstView<double, BufSize * 16> SrcView = FBuffer_exponential_FP64.template GetConstView<double>();

  // Round the source offset up to the next 128-bit boundary.
  size_t BufPos128 = (FBufPos_exponential_FP64 + 1) / 2;
  size_t NumToGo128 = NumDoubles / 2;

  while (NumToGo128 > 0)
  {
    // Make sure there's something to copy from.
    if (BufPos128 >= FBufLen_exponential_FP64 / 2)
    {
      RefillBuf_exponential_FP64();
      BufPos128 = 0;
    }


    // See how many to do.
    size_t NumInBuf128 = (FBufLen_exponential_FP64 / 2) - BufPos128;
    size_t NumToDo128 = (NumToGo128 > NumInBuf128) ? NumInBuf128 : NumToGo128;

    // Copy.
    memcpy(Buffer, SrcView.GetPointer() + BufPos128 * 2, NumToDo128 * 16);

    // Update pointers, etc.
    Buffer += NumToDo128 * 2;
    NumToGo128 -= NumToDo128;
    BufPos128 += NumToDo128;
  }

  // Store the position back.
  FBufPos_exponential_FP64 = BufPos128 * 2;

  // If there's one left, transfer it by itself.
  if (NumDoubles % 2 == 1) *Buffer = Random_exponential_FP64();
}

// -----------------------------------------------------------------------------
// Exponential random singles.
// PATHDEF ExponentialFP32
// -----------------------------------------------------------------------------
template<class SFMTParams>
NOINLINE void CPRNG<SFMTParams>::RefillBuf_exponential_FP32(void)
{
  #ifndef CFG_TIMETRACK_DISABLE
  CTimedScope ScopeTimer(Metrics.exponential_FP32_refill_time);
  Metrics.exponential_FP32_refill_count++;
  #endif

  typename CRandPool<SFMTParams>::CRandomBlockPtr RandomBlock = FRandPool.GetRandomBlock();
  SIMDOps::EmptyForFP();

  float ScaleFactor = FScaleFactor_exponential_FP32;
  size_t DstPos = 0;

#if (CFG_HAVE_U128 == CFG_SIMD_INTRINSIC) && (CFG_HAVE_U128FP32 == CFG_SIMD_INTRINSIC)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-intrinsic, fp32-intrinsic implementation
// PATHNAME u128fp32intrinsic
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  CDataBuffer_ConstView<uint128_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint128_t>();
  CDataBuffer_VarView<float, BufSize * 16> DstPtr = FBuffer_exponential_FP32.template GetVarView<float>();

  // Load a few constants.
  uint128_t FPAndMask = SIMDOps::uint128_t_const<0x007FFFFF, 0x007FFFFF, 0x007FFFFF, 0x007FFFFF>::Value();
  uint128fp32_t FPOrMask = SIMDOps::uint128fp32_t_const<0x3F800000, 0x3F800000, 0x3F800000, 0x3F800000>::Value();
  uint128_t BinAndMask = SIMDOps::uint128_t_const<0x7F800000, 0x7F800000, 0x7F800000, 0x7F800000>::Value();

  for (size_t SrcPos = 0; SrcPos < BufSize; SrcPos++)
  {
    // Get a random number, uniform over [0, 1). Also get the integer representation.
    uint128_t SrcU128 = SrcPtr.Load(SrcPos);
    uint128_t TempRes = SIMDOP_and(SrcU128, FPAndMask);
    uint128fp32_t FPTemp = SIMDOP_sub(SIMDOP_or(SIMDOps::simdcast_fp32(TempRes), FPOrMask), FPOrMask);

    union
    {
      uint128_t AsU128;
      uint32_t AsU32[4];
    } BinPos = {TempRes};

    // Get the bin number.
    union
    {
      uint128_t AsU128;
      uint32_t AsU32[4];
    } BinIndex = {SIMDOps::Shr_u32<23>(SIMDOP_and(SrcU128, BinAndMask))};

    // Pack the four multiplies together.
    union
    {
      float AsFP32[4];
      uint128fp32_t AsU128;
    } FPScale = {{
      CZigguratExponential_FP32::Bins[BinIndex.AsU32[0]].XScale,
      CZigguratExponential_FP32::Bins[BinIndex.AsU32[1]].XScale,
      CZigguratExponential_FP32::Bins[BinIndex.AsU32[2]].XScale,
      CZigguratExponential_FP32::Bins[BinIndex.AsU32[3]].XScale}};

    union
    {
      uint128fp32_t AsU128;
      float AsFP32[4];
    } FPResult = {SIMDOP_mul(FPTemp, FPScale.AsU128)};

    // Handle the first result
    uint32_t CurBinIndex = BinIndex.AsU32[EndianFix_static<2, 0>::Value];
    float CurFPResult = FPResult.AsFP32[EndianFix_static<2, 0>::Value];

    if (BinPos.AsU32[EndianFix_static<2, 0>::Value] < CZigguratExponential_FP32::Bins[CurBinIndex].THold)
    {
      // Accept.
      DstPtr.Store(DstPos++, CurFPResult + ScaleFactor);
      ScaleFactor = 0;
    }
    else
    {
      if (CurBinIndex == 0)
      {
        // Sample from the tail. Actually, this is just another sample with a scalefactor!
        ScaleFactor += CZigguratExponential_FP32::Bins[1].XScale;
      }
      else
      {
        // Intermediate region.
        float yval = exp(-CurFPResult);
        float ysample = CZigguratExponential_FP32::Bins[CurBinIndex].YOffset + CZigguratExponential_FP32::Bins[CurBinIndex].YScale * Random_uniform_FP32();
        if (ysample < yval)
        {
          // Accept.
          DstPtr.Store(DstPos++, CurFPResult + ScaleFactor);
          ScaleFactor = 0;
        }
      }
    }

    // Handle the second result
    CurBinIndex = BinIndex.AsU32[EndianFix_static<2, 1>::Value];
    CurFPResult = FPResult.AsFP32[EndianFix_static<2, 1>::Value];

    if (BinPos.AsU32[EndianFix_static<2, 1>::Value] < CZigguratExponential_FP32::Bins[CurBinIndex].THold)
    {
      // Accept.
      DstPtr.Store(DstPos++, CurFPResult + ScaleFactor);
      ScaleFactor = 0;
    }
    else
    {
      if (CurBinIndex == 0)
      {
        // Sample from the tail. Actually, this is just another sample with a scalefactor!
        ScaleFactor += CZigguratExponential_FP32::Bins[1].XScale;
      }
      else
      {
        // Intermediate region.
        float yval = exp(-CurFPResult);
        float ysample = CZigguratExponential_FP32::Bins[CurBinIndex].YOffset + CZigguratExponential_FP32::Bins[CurBinIndex].YScale * Random_uniform_FP32();
        if (ysample < yval)
        {
          // Accept.
          DstPtr.Store(DstPos++, CurFPResult + ScaleFactor);
          ScaleFactor = 0;
        }
      }
    }

    // Handle the third result
    CurBinIndex = BinIndex.AsU32[EndianFix_static<2, 2>::Value];
    CurFPResult = FPResult.AsFP32[EndianFix_static<2, 2>::Value];

    if (BinPos.AsU32[EndianFix_static<2, 2>::Value] < CZigguratExponential_FP32::Bins[CurBinIndex].THold)
    {
      // Accept.
      DstPtr.Store(DstPos++, CurFPResult + ScaleFactor);
      ScaleFactor = 0;
    }
    else
    {
      if (CurBinIndex == 0)
      {
        // Sample from the tail. Actually, this is just another sample with a scalefactor!
        ScaleFactor += CZigguratExponential_FP32::Bins[1].XScale;
      }
      else
      {
        // Intermediate region.
        float yval = exp(-CurFPResult);
        float ysample = CZigguratExponential_FP32::Bins[CurBinIndex].YOffset + CZigguratExponential_FP32::Bins[CurBinIndex].YScale * Random_uniform_FP32();
        if (ysample < yval)
        {
          // Accept.
          DstPtr.Store(DstPos++, CurFPResult + ScaleFactor);
          ScaleFactor = 0;
        }
      }
    }

    // Handle the fourth result
    CurBinIndex = BinIndex.AsU32[EndianFix_static<2, 3>::Value];
    CurFPResult = FPResult.AsFP32[EndianFix_static<2, 3>::Value];

    if (BinPos.AsU32[EndianFix_static<2, 3>::Value] < CZigguratExponential_FP32::Bins[CurBinIndex].THold)
    {
      // Accept.
      DstPtr.Store(DstPos++, CurFPResult + ScaleFactor);
      ScaleFactor = 0;
    }
    else
    {
      if (CurBinIndex == 0)
      {
        // Sample from the tail. Actually, this is just another sample with a scalefactor!
        ScaleFactor += CZigguratExponential_FP32::Bins[1].XScale;
      }
      else
      {
        // Intermediate region.
        float yval = exp(-CurFPResult);
        float ysample = CZigguratExponential_FP32::Bins[CurBinIndex].YOffset + CZigguratExponential_FP32::Bins[CurBinIndex].YScale * Random_uniform_FP32();
        if (ysample < yval)
        {
          // Accept.
          DstPtr.Store(DstPos++, CurFPResult + ScaleFactor);
          ScaleFactor = 0;
        }
      }
    }
  }
#else
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// U128-scalar, fp32-scalar 32/64-bit implementation
// PATHNAME u128scalar-fp32scalar
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  CDataBuffer_ConstView<uint64_t, BufSize * 16> SrcPtr = RandomBlock.template GetConstView<uint64_t>();
  CDataBuffer_VarView<float, BufSize * 16> DstPtr = FBuffer_exponential_FP32.template GetVarView<float>();

  // Load a few constants.
  const uint64_t FPAndMask = UINT64_C(0x007FFFFF007FFFFF);
  const uint64_t FPOrMask = UINT64_C(0x3F8000003F800000);
  const uint32_t BinAndMask = 0x000000FF;

  union
  {
    uint64_t AsU64;
    float AsFP32[2];
  } u1;

  for (size_t SrcPos = 0; SrcPos < BufSize * 2; SrcPos++)
  {
    // Get a random number, uniform over [1, 2). Also get the integer representation.
    uint64_t TmpSrc = SrcPtr.Load(EndianFix<1>(SrcPos));
    uint64_t IntBinPos64 = (TmpSrc & FPAndMask);
    u1.AsU64 = IntBinPos64 | FPOrMask;

    // Handle the first result.
    // Get the bin number and position.
    uint32_t BinIdx = static_cast<uint32_t>(TmpSrc >> 23) & BinAndMask;

    // Scale
    float FPResult = (u1.AsFP32[EndianFix_static<1, 0>::Value] - 1.0f) * CZigguratExponential_FP32::Bins[BinIdx].XScale;

    // Store if we should.
    uint32_t IntBinPos = static_cast<uint32_t>(IntBinPos64);
    if (IntBinPos < CZigguratExponential_FP32::Bins[BinIdx].THold)
    {
      // Accept.
      DstPtr.Store(DstPos++, FPResult + ScaleFactor);
      ScaleFactor = 0;
    }
    else
    {
      if (BinIdx == 0)
      {
        // Sample from the tail. Actually, this is just another sample with a scalefactor!
        ScaleFactor += CZigguratExponential_FP32::Bins[1].XScale;
      }
      else
      {
        // Intermediate region.
        float yval = expf(-FPResult);
        float ysample = CZigguratExponential_FP32::Bins[BinIdx].YOffset + CZigguratExponential_FP32::Bins[BinIdx].YScale * Random_uniform_FP32();
        if (ysample < yval)
        {
          // Accept.
          DstPtr.Store(DstPos++, FPResult + ScaleFactor);
          ScaleFactor = 0;
        }
      }
    }

    // Handle the second result.
    // Get the bin number and position.
    BinIdx = static_cast<uint32_t>(TmpSrc >> (23 + 32)) & BinAndMask;

    // Scale
    FPResult = (u1.AsFP32[EndianFix_static<1, 1>::Value] - 1.0f) * CZigguratExponential_FP32::Bins[BinIdx].XScale;

    // Store if we should.
    IntBinPos = static_cast<uint32_t>(IntBinPos64 >> 32);
    if (IntBinPos < CZigguratExponential_FP32::Bins[BinIdx].THold)
    {
      // Accept.
      DstPtr.Store(DstPos++, FPResult + ScaleFactor);
      ScaleFactor = 0;
    }
    else
    {
      if (BinIdx == 0)
      {
        // Sample from the tail. Actually, this is just another sample with a scalefactor!
        ScaleFactor += CZigguratExponential_FP32::Bins[1].XScale;
      }
      else
      {
        // Intermediate region.
        float yval = expf(-FPResult);
        float ysample = CZigguratExponential_FP32::Bins[BinIdx].YOffset + CZigguratExponential_FP32::Bins[BinIdx].YScale * Random_uniform_FP32();
        if (ysample < yval)
        {
          // Accept.
          DstPtr.Store(DstPos++, FPResult + ScaleFactor);
          ScaleFactor = 0;
        }
      }
    }
  }
#endif
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Common code
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  // Store the number of numbers we actually generated.
  FBufLen_exponential_FP32 = DstPos;
  FBufPos_exponential_FP32 = 0;
  FScaleFactor_exponential_FP32 = ScaleFactor;
  #ifndef CFG_TIMETRACK_DISABLE
  Metrics.exponential_FP32_numgen += DstPos;
  #endif
}

template<class SFMTParams>
inline float CPRNG<SFMTParams>::Random_exponential_FP32(void)
{
  CDataBuffer_ConstView<float, BufSize * 16> SrcView = FBuffer_exponential_FP32.template GetConstView<float>();
  for (;;)
  {
    if (FBufPos_exponential_FP32 < FBufLen_exponential_FP32)
      return SrcView.Load(EndianFix<2>(FBufPos_exponential_FP32++));
    RefillBuf_exponential_FP32();
  }
}

template<class SFMTParams>
inline void CPRNG<SFMTParams>::RandFill_exponential_FP32(float *Buffer, size_t NumFloats)
{
  CDataBuffer_ConstView<float, BufSize * 16> SrcView = FBuffer_exponential_FP32.template GetConstView<float>();

  // Round the source offset up to the next 128-bit boundary.
  size_t BufPos128 = (FBufPos_exponential_FP32 + 3) / 4;
  size_t NumToGo128 = NumFloats / 4;

  while (NumToGo128 > 0)
  {
    // Make sure there's something to copy from.
    if (BufPos128 >= FBufLen_exponential_FP32 / 4)
    {
      RefillBuf_exponential_FP32();
      BufPos128 = 0;
    }

    // See how many to do.
    size_t NumInBuf128 = (FBufLen_exponential_FP32 / 4) - BufPos128;
    size_t NumToDo128 = (NumToGo128 > NumInBuf128) ? NumInBuf128 : NumToGo128;

    // Copy.
    memcpy(Buffer, SrcView.GetPointer() + BufPos128 * 4, NumToDo128 * 16);

    // Update pointers, etc.
    Buffer += NumToDo128 * 4;
    NumToGo128 -= NumToDo128;
    BufPos128 += NumToDo128;
  }

  // Store the position back.
  FBufPos_exponential_FP32 = BufPos128 * 4;

  // If there's one left, transfer it by itself.
  switch(NumFloats % 4)
  {
    case 3:
      *(Buffer++) = Random_exponential_FP32();
    case 2:
      *(Buffer++) = Random_exponential_FP32();
    case 1:
      *(Buffer++) = Random_exponential_FP32();
    case 0:
      // Do nothing.
      break;
  }
}

#ifndef CFG_TIMETRACK_DISABLE
template<class SFMTParams> typename CPRNG<SFMTParams>::TMetrics CPRNG<SFMTParams>::Metrics;
template<class SFMTParams> THREADVAR uint32_t CPRNG<SFMTParams>::TMetrics::uniform_FP64_refill_count = 0;
template<class SFMTParams> THREADVAR uint64_t CPRNG<SFMTParams>::TMetrics::uniform_FP64_refill_time = 0;
template<class SFMTParams> THREADVAR uint32_t CPRNG<SFMTParams>::TMetrics::uniform_FP32_refill_count = 0;
template<class SFMTParams> THREADVAR uint64_t CPRNG<SFMTParams>::TMetrics::uniform_FP32_refill_time = 0;
template<class SFMTParams> THREADVAR uint32_t CPRNG<SFMTParams>::TMetrics::gaussiantail_FP64_refill_count = 0;
template<class SFMTParams> THREADVAR uint64_t CPRNG<SFMTParams>::TMetrics::gaussiantail_FP64_refill_time = 0;
template<class SFMTParams> THREADVAR uint32_t CPRNG<SFMTParams>::TMetrics::gaussian_FP64_refill_count = 0;
template<class SFMTParams> THREADVAR uint64_t CPRNG<SFMTParams>::TMetrics::gaussian_FP64_refill_time = 0;
template<class SFMTParams> THREADVAR uint64_t CPRNG<SFMTParams>::TMetrics::gaussian_FP64_numgen = 0;
template<class SFMTParams> THREADVAR uint32_t CPRNG<SFMTParams>::TMetrics::exponential_FP64_refill_count = 0;
template<class SFMTParams> THREADVAR uint64_t CPRNG<SFMTParams>::TMetrics::exponential_FP64_refill_time = 0;
template<class SFMTParams> THREADVAR uint64_t CPRNG<SFMTParams>::TMetrics::exponential_FP64_numgen = 0;
template<class SFMTParams> THREADVAR uint32_t CPRNG<SFMTParams>::TMetrics::exponential_FP32_refill_count = 0;
template<class SFMTParams> THREADVAR uint64_t CPRNG<SFMTParams>::TMetrics::exponential_FP32_refill_time = 0;
template<class SFMTParams> THREADVAR uint64_t CPRNG<SFMTParams>::TMetrics::exponential_FP32_numgen = 0;
#endif

#endif