issues
search
dropbox
/
rust-brotli
Brotli compressor and decompressor written in rust that optionally avoids the stdlib
https://dropbox.tech/infrastructure/-broccoli--syncing-faster-by-syncing-less
BSD 3-Clause "New" or "Revised" License
818
stars
83
forks
source link
Clean up precomputed logs tables
#201
Closed
nyurik
closed
5 months ago
nyurik
commented
5 months ago
remove duplicate identical 2k table from fast_log.rs (removed file)
move two tables into dedicated files, one table per file (they are big, hard to work with them ohterwise)
renamed them to follow Rust naming conventions - they do not seem to be publically exposed, so should be safe from versioning perspective.
changed the type of the
logs_8
to be
[floatX; 256]
, same as
log_16
. This eliminate casting everywhere.
logs_8
to be[floatX; 256]
, same aslog_16
. This eliminate casting everywhere.