├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── benchmarks ├── benchmark.h └── decodebenchmark.cpp ├── scripts ├── avx512dict.py └── avxdict.py ├── src ├── avx512bpacking.h ├── avx512codec.h ├── avx512dict.h ├── avxbpacking.h ├── avxcodec.h ├── avxdict.h ├── bpacking.h ├── dict.h └── scalarcodec.h └── tests ├── avxtest.cpp └── scalartest.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/benchmarks/benchmark.h -------------------------------------------------------------------------------- /benchmarks/decodebenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/benchmarks/decodebenchmark.cpp -------------------------------------------------------------------------------- /scripts/avx512dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/scripts/avx512dict.py -------------------------------------------------------------------------------- /scripts/avxdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/scripts/avxdict.py -------------------------------------------------------------------------------- /src/avx512bpacking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/src/avx512bpacking.h -------------------------------------------------------------------------------- /src/avx512codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/src/avx512codec.h -------------------------------------------------------------------------------- /src/avx512dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/src/avx512dict.h -------------------------------------------------------------------------------- /src/avxbpacking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/src/avxbpacking.h -------------------------------------------------------------------------------- /src/avxcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/src/avxcodec.h -------------------------------------------------------------------------------- /src/avxdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/src/avxdict.h -------------------------------------------------------------------------------- /src/bpacking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/src/bpacking.h -------------------------------------------------------------------------------- /src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/src/dict.h -------------------------------------------------------------------------------- /src/scalarcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/src/scalarcodec.h -------------------------------------------------------------------------------- /tests/avxtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/tests/avxtest.cpp -------------------------------------------------------------------------------- /tests/scalartest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fast-pack/dictionary/HEAD/tests/scalartest.cpp --------------------------------------------------------------------------------