├── LICENSE ├── Makefile ├── README.md ├── benchmark └── fillarray.c ├── include ├── pcg32.h └── simdpcg32.h └── tests └── unit.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemire/simdpcg/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemire/simdpcg/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemire/simdpcg/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/fillarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemire/simdpcg/HEAD/benchmark/fillarray.c -------------------------------------------------------------------------------- /include/pcg32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemire/simdpcg/HEAD/include/pcg32.h -------------------------------------------------------------------------------- /include/simdpcg32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemire/simdpcg/HEAD/include/simdpcg32.h -------------------------------------------------------------------------------- /tests/unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemire/simdpcg/HEAD/tests/unit.c --------------------------------------------------------------------------------