├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── bitbucket-pipelines.yml ├── doc ├── CMakeLists.txt ├── Doxyfile.in └── posit_with_nan.png ├── extern └── args.hxx ├── include ├── FindInt128.cmake ├── anyfloat.hpp ├── binary8.hpp ├── bithippop.hpp ├── catch.hpp ├── exp2.hpp ├── exp2t.hpp ├── fixedtraits.hpp ├── float12.hpp ├── float16native32.hpp ├── float2posit.hpp ├── floatconst2bits.hpp ├── floattraits.hpp ├── posit.h ├── posit10.hpp ├── posit12.hpp ├── posit8.hpp ├── positeigen.h ├── positf.h ├── simd │ ├── asimd_16.h │ ├── asimd_32.h │ ├── asimd_8.h │ ├── asimd_all.h │ ├── asimd_base.h │ ├── asimd_d.h │ └── asimd_f.h ├── simdposit8.hpp ├── softfloat.hpp ├── tposit.hpp ├── tvalids.hpp ├── typehelpers.hpp └── unpacked.h ├── jupyter ├── .ipynb_checkpoints │ └── first-checkpoint.ipynb └── first.ipynb ├── makeone.sh ├── matlab ├── Lenna.png ├── cellindex.m ├── cellvcat.m ├── compareposits.m ├── compareposits2.m ├── describetab.m ├── dump2table.m ├── fromindex.m ├── halfinrange.m ├── halfprecision │ ├── halfprecision.c │ ├── halfprecision.m │ ├── halfprecisionmax.m │ ├── halfprecisionmin.m │ ├── ieeehalfprecision.c │ ├── license.txt │ └── origin.txt ├── limittab.m ├── loadpositdump.m ├── meandiff.m ├── mex_make.m ├── morton.m ├── normr.m ├── p8Tofloat.cpp ├── p8binop.cpp ├── p8unop.cpp ├── sift_fea.m ├── test_p8conv.m ├── testfloat11.m └── toindex.m ├── preamble.txt ├── scripts ├── float2bin.py ├── listpositany.sh ├── listposits8_16.sh ├── listposits8_16bin.sh ├── punum.py ├── valid2tvalid.py └── validsgentable.py ├── src ├── binary8.cpp ├── binary8_gen.cpp ├── floatTop8.cpp ├── listposits.cpp ├── main.cpp ├── maineigen.cpp ├── posit10.cpp ├── posit10_gen.cpp ├── posit10_tbl.cpp ├── posit12.cpp ├── posit12_gen.cpp ├── posit12_tbl.cpp ├── posit8.cpp ├── posit8_gen.cpp ├── posit8_tbl.cpp ├── simdposit8.cpp └── softfloat_gen.cpp └── tests ├── itest_anyfloat.cpp ├── itest_anyvsreallimit.cpp ├── itest_constexpr.cpp ├── itest_float16native32.cpp ├── itest_lowlimits.cpp ├── itest_positf.cpp ├── itest_unpackfixed.cpp ├── itest_unpackfloat.cpp ├── makelimits.sh ├── minimal.cpp ├── test_dot.cpp ├── test_numeric_limits.cpp ├── testbit.cpp ├── testeps.cpp ├── testfind.cpp ├── testnextprev.cpp ├── testposit.cpp ├── testposit10.cpp ├── testposit12.cpp ├── testposit8.cpp ├── testregime.cpp ├── testsimdposit8.cpp ├── testsoftfloat.cpp ├── testsposit.hpp └── testunpacked.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/README.md -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/posit_with_nan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/doc/posit_with_nan.png -------------------------------------------------------------------------------- /extern/args.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/extern/args.hxx -------------------------------------------------------------------------------- /include/FindInt128.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/FindInt128.cmake -------------------------------------------------------------------------------- /include/anyfloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/anyfloat.hpp -------------------------------------------------------------------------------- /include/binary8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/binary8.hpp -------------------------------------------------------------------------------- /include/bithippop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/bithippop.hpp -------------------------------------------------------------------------------- /include/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/catch.hpp -------------------------------------------------------------------------------- /include/exp2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/exp2.hpp -------------------------------------------------------------------------------- /include/exp2t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/exp2t.hpp -------------------------------------------------------------------------------- /include/fixedtraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/fixedtraits.hpp -------------------------------------------------------------------------------- /include/float12.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/float12.hpp -------------------------------------------------------------------------------- /include/float16native32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/float16native32.hpp -------------------------------------------------------------------------------- /include/float2posit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/float2posit.hpp -------------------------------------------------------------------------------- /include/floatconst2bits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/floatconst2bits.hpp -------------------------------------------------------------------------------- /include/floattraits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/floattraits.hpp -------------------------------------------------------------------------------- /include/posit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/posit.h -------------------------------------------------------------------------------- /include/posit10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/posit10.hpp -------------------------------------------------------------------------------- /include/posit12.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/posit12.hpp -------------------------------------------------------------------------------- /include/posit8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/posit8.hpp -------------------------------------------------------------------------------- /include/positeigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/positeigen.h -------------------------------------------------------------------------------- /include/positf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/positf.h -------------------------------------------------------------------------------- /include/simd/asimd_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/simd/asimd_16.h -------------------------------------------------------------------------------- /include/simd/asimd_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/simd/asimd_32.h -------------------------------------------------------------------------------- /include/simd/asimd_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/simd/asimd_8.h -------------------------------------------------------------------------------- /include/simd/asimd_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/simd/asimd_all.h -------------------------------------------------------------------------------- /include/simd/asimd_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/simd/asimd_base.h -------------------------------------------------------------------------------- /include/simd/asimd_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/simd/asimd_d.h -------------------------------------------------------------------------------- /include/simd/asimd_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/simd/asimd_f.h -------------------------------------------------------------------------------- /include/simdposit8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/simdposit8.hpp -------------------------------------------------------------------------------- /include/softfloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/softfloat.hpp -------------------------------------------------------------------------------- /include/tposit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/tposit.hpp -------------------------------------------------------------------------------- /include/tvalids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/tvalids.hpp -------------------------------------------------------------------------------- /include/typehelpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/typehelpers.hpp -------------------------------------------------------------------------------- /include/unpacked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/include/unpacked.h -------------------------------------------------------------------------------- /jupyter/.ipynb_checkpoints/first-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/jupyter/.ipynb_checkpoints/first-checkpoint.ipynb -------------------------------------------------------------------------------- /jupyter/first.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/jupyter/first.ipynb -------------------------------------------------------------------------------- /makeone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/makeone.sh -------------------------------------------------------------------------------- /matlab/Lenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/Lenna.png -------------------------------------------------------------------------------- /matlab/cellindex.m: -------------------------------------------------------------------------------- 1 | function r =cellindex(a) 2 | r=a{:}; -------------------------------------------------------------------------------- /matlab/cellvcat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/cellvcat.m -------------------------------------------------------------------------------- /matlab/compareposits.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/compareposits.m -------------------------------------------------------------------------------- /matlab/compareposits2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/compareposits2.m -------------------------------------------------------------------------------- /matlab/describetab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/describetab.m -------------------------------------------------------------------------------- /matlab/dump2table.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/dump2table.m -------------------------------------------------------------------------------- /matlab/fromindex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/fromindex.m -------------------------------------------------------------------------------- /matlab/halfinrange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/halfinrange.m -------------------------------------------------------------------------------- /matlab/halfprecision/halfprecision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/halfprecision/halfprecision.c -------------------------------------------------------------------------------- /matlab/halfprecision/halfprecision.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/halfprecision/halfprecision.m -------------------------------------------------------------------------------- /matlab/halfprecision/halfprecisionmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/halfprecision/halfprecisionmax.m -------------------------------------------------------------------------------- /matlab/halfprecision/halfprecisionmin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/halfprecision/halfprecisionmin.m -------------------------------------------------------------------------------- /matlab/halfprecision/ieeehalfprecision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/halfprecision/ieeehalfprecision.c -------------------------------------------------------------------------------- /matlab/halfprecision/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/halfprecision/license.txt -------------------------------------------------------------------------------- /matlab/halfprecision/origin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/halfprecision/origin.txt -------------------------------------------------------------------------------- /matlab/limittab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/limittab.m -------------------------------------------------------------------------------- /matlab/loadpositdump.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/loadpositdump.m -------------------------------------------------------------------------------- /matlab/meandiff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/meandiff.m -------------------------------------------------------------------------------- /matlab/mex_make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/mex_make.m -------------------------------------------------------------------------------- /matlab/morton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/morton.m -------------------------------------------------------------------------------- /matlab/normr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/normr.m -------------------------------------------------------------------------------- /matlab/p8Tofloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/p8Tofloat.cpp -------------------------------------------------------------------------------- /matlab/p8binop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/p8binop.cpp -------------------------------------------------------------------------------- /matlab/p8unop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/p8unop.cpp -------------------------------------------------------------------------------- /matlab/sift_fea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/sift_fea.m -------------------------------------------------------------------------------- /matlab/test_p8conv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/test_p8conv.m -------------------------------------------------------------------------------- /matlab/testfloat11.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/testfloat11.m -------------------------------------------------------------------------------- /matlab/toindex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/matlab/toindex.m -------------------------------------------------------------------------------- /preamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/preamble.txt -------------------------------------------------------------------------------- /scripts/float2bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/scripts/float2bin.py -------------------------------------------------------------------------------- /scripts/listpositany.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/scripts/listpositany.sh -------------------------------------------------------------------------------- /scripts/listposits8_16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/scripts/listposits8_16.sh -------------------------------------------------------------------------------- /scripts/listposits8_16bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/scripts/listposits8_16bin.sh -------------------------------------------------------------------------------- /scripts/punum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/scripts/punum.py -------------------------------------------------------------------------------- /scripts/valid2tvalid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/scripts/valid2tvalid.py -------------------------------------------------------------------------------- /scripts/validsgentable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/scripts/validsgentable.py -------------------------------------------------------------------------------- /src/binary8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/binary8.cpp -------------------------------------------------------------------------------- /src/binary8_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/binary8_gen.cpp -------------------------------------------------------------------------------- /src/floatTop8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/floatTop8.cpp -------------------------------------------------------------------------------- /src/listposits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/listposits.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/maineigen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/maineigen.cpp -------------------------------------------------------------------------------- /src/posit10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/posit10.cpp -------------------------------------------------------------------------------- /src/posit10_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/posit10_gen.cpp -------------------------------------------------------------------------------- /src/posit10_tbl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/posit10_tbl.cpp -------------------------------------------------------------------------------- /src/posit12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/posit12.cpp -------------------------------------------------------------------------------- /src/posit12_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/posit12_gen.cpp -------------------------------------------------------------------------------- /src/posit12_tbl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/posit12_tbl.cpp -------------------------------------------------------------------------------- /src/posit8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/posit8.cpp -------------------------------------------------------------------------------- /src/posit8_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/posit8_gen.cpp -------------------------------------------------------------------------------- /src/posit8_tbl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/posit8_tbl.cpp -------------------------------------------------------------------------------- /src/simdposit8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/simdposit8.cpp -------------------------------------------------------------------------------- /src/softfloat_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/src/softfloat_gen.cpp -------------------------------------------------------------------------------- /tests/itest_anyfloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/itest_anyfloat.cpp -------------------------------------------------------------------------------- /tests/itest_anyvsreallimit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/itest_anyvsreallimit.cpp -------------------------------------------------------------------------------- /tests/itest_constexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/itest_constexpr.cpp -------------------------------------------------------------------------------- /tests/itest_float16native32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/itest_float16native32.cpp -------------------------------------------------------------------------------- /tests/itest_lowlimits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/itest_lowlimits.cpp -------------------------------------------------------------------------------- /tests/itest_positf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/itest_positf.cpp -------------------------------------------------------------------------------- /tests/itest_unpackfixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/itest_unpackfixed.cpp -------------------------------------------------------------------------------- /tests/itest_unpackfloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/itest_unpackfloat.cpp -------------------------------------------------------------------------------- /tests/makelimits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/makelimits.sh -------------------------------------------------------------------------------- /tests/minimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/minimal.cpp -------------------------------------------------------------------------------- /tests/test_dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/test_dot.cpp -------------------------------------------------------------------------------- /tests/test_numeric_limits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/test_numeric_limits.cpp -------------------------------------------------------------------------------- /tests/testbit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/testbit.cpp -------------------------------------------------------------------------------- /tests/testeps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/testeps.cpp -------------------------------------------------------------------------------- /tests/testfind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/testfind.cpp -------------------------------------------------------------------------------- /tests/testnextprev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/testnextprev.cpp -------------------------------------------------------------------------------- /tests/testposit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/testposit.cpp -------------------------------------------------------------------------------- /tests/testposit10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/testposit10.cpp -------------------------------------------------------------------------------- /tests/testposit12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/testposit12.cpp -------------------------------------------------------------------------------- /tests/testposit8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/testposit8.cpp -------------------------------------------------------------------------------- /tests/testregime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/testregime.cpp -------------------------------------------------------------------------------- /tests/testsimdposit8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/testsimdposit8.cpp -------------------------------------------------------------------------------- /tests/testsoftfloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/testsoftfloat.cpp -------------------------------------------------------------------------------- /tests/testsposit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/testsposit.hpp -------------------------------------------------------------------------------- /tests/testunpacked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eruffaldi/cppPosit/HEAD/tests/testunpacked.cpp --------------------------------------------------------------------------------