xxHash/CHANGELOG

35 lines
2.1 KiB
Plaintext
Raw Normal View History

v0.7.4
- api: fix: state is correctly aligned in AVX2 mode (does not trust `malloc()`), by @easyaspi314
2020-03-03 12:04:44 -08:00
v0.7.3
2020-03-04 16:42:28 -08:00
- perf: improved speed for large inputs (~+20%)
- perf: improved latency for small inputs (~10%)
- perf: s390x Vectorial code, by @easyaspi314
- cli: improved support for Unicode filenames on Windows, thanks to @easyaspi314 and @t-mat
- api: `xxhash.h` can now be included in any order, with and without `XXH_STATIC_LINKING_ONLY` and `XXH_INLINE_ALL`
- build: xxHash's implementation transferred into `xxhash.h`. No more need to have `xxhash.c` in the `/include` directory for `XXH_INLINE_ALL` to work
- install: created pkg-config file, by @bket
- install: VCpkg installation instructions, by @LilyWangL
2020-03-03 19:09:23 -05:00
- doc: Highly improved code documentation, by @easyaspi314
- misc: New test tool in `/tests/collisions`: brute force collision tester for 64-bit hashes
2020-03-03 12:04:44 -08:00
v0.7.2
- Fixed collision ratio of `XXH128` for some specific input lengths, reported by @svpv
- Improved `VSX` and `NEON` variants, by @easyaspi314
- Improved performance of scalar code path (`XXH_VECTOR=0`), by @easyaspi314
2020-03-03 19:39:01 -05:00
- `xxhsum`: can generate 128-bit hashes with the `-H2` option (note: for experimental purposes only! `XXH128` is not yet frozen)
2020-03-03 19:09:23 -05:00
- `xxhsum`: option `-q` removes status notifications
2020-03-03 12:04:44 -08:00
v0.7.1
2020-03-03 19:09:23 -05:00
- Secret first: the algorithm computation can be altered by providing a "secret", which is any blob of bytes, of size >= `XXH3_SECRET_SIZE_MIN`.
2020-03-03 12:04:44 -08:00
- `seed` is still available, and acts as a secret generator
- updated `ARM NEON` variant by @easyaspi314
- Streaming implementation is available
- Improve compatibility and performance with Visual Studio, with help from @aras-p
2020-03-03 19:09:23 -05:00
- Better integration when using `XXH_INLINE_ALL`: do not pollute host namespace, use its own macros, such as `XXH_ASSERT()`, `XXH_ALIGN`, etc.
2020-03-03 19:39:01 -05:00
- 128-bit variant provides helper functions for comparison of hashes.
2020-03-03 12:04:44 -08:00
- Better `clang` generation of `rotl` instruction, thanks to @easyaspi314
2020-03-03 19:39:01 -05:00
- `XXH_REROLL` build macro to reduce binary size, by @easyaspi314
2020-03-03 12:04:44 -08:00
- Improved `cmake` script, by @Mezozoysky
- Full benchmark program provided in `/tests/bench`