density
density copied to clipboard
Superfast compression library
Cool project, looks promising. Has the master or dev version fixed the _shortened decompressed output_ bug mentioned on https://github.com/inikep/lzbench and/or the security vulnerability mentioned on https://github.com/nemequ/compfuzz/wiki/Results ? If so, any...
Rust port
Hi! I'm interested in porting this project over to ~~Golang~~ Rust. I have a project I'm working on, and I think it would be pretty cool to use this library....
API issue: density_decompress () requires a larger buffer than needed to store the decompressed data
Currently, density_decompress() is accessing bytes past the end of the unpacked buffer, so it is needed to allocate a buffer of density_decompress_safe_size() bytes. This makes density not as fast and...
Is it possible for anyone to make an API wrapper of this compatible for C# language? I did try a lot but I just couldn't make it to work. Or...
Hello, is it possible to have a `make install` target added to the Makefile? This would be beneficial for package manager contributors to work with. Originally requested from [here](https://github.com/Homebrew/homebrew-core/pull/27909).
Quoting @191919 : > @gpnuma > > My compiler: > > ``` > $ clang -v > Apple LLVM version 9.0.0 (clang-900.0.39.2) > Target: x86_64-apple-darwin17.4.0 > Thread model: posix >...
Quoting @191919 > @gpnuma Would you please consider flattening the directory hierarchy of density code, i.e., put all source files in a single directory? The file names already do the...
I ran a profiling test which showed that `calloc` is the top CPU consumer. I saw in `density_allocate_context`, there is a line: `memset(context->dictionary, 0, context->dictionary_size);` (It turned out that gcc...
It takes a certain amount of data for density's algorithms to be running optimally (ratio wise). Adding an intermediary processing could be interesting before routing data to the bigger and...
Hi Density team, First of all, thank you for creating this fantastic high-performance compression library. I'm writing to propose the addition of RISC-V Vector (RVV) optimizations to further enhance the...