Lines Matching +full:fast +full:- +full:speed

3 __Zstandard__, or `zstd` as short version, is a fast lossless compression algorithm,
4 targeting real-time compression scenarios at zlib-level and better compression ratios.
5 It's backed by a very fast entropy stage, provided by [Huff0 and FSE library](https://github.com/Cy…
8 This repository represents the reference implementation, provided as an open-source dual [BSD](LICE…
11 a list of known ports and bindings is provided on [Zstandard homepage](http://www.zstd.net/#other-l…
21 [travisDevBadge]: https://api.travis-ci.com/facebook/zstd.svg?branch=dev "Continuous Integration te…
22 [travisLink]: https://travis-ci.com/facebook/zstd
24 [AppveyorLink]: https://ci.appveyor.com/project/YannCollet/zstd-p0yf0
27 [CirrusDevBadge]: https://api.cirrus-ci.com/github/facebook/zstd.svg?branch=dev
28 [CirrusLink]: https://cirrus-ci.com/github/facebook/zstd
29 [OSSFuzzBadge]: https://oss-fuzz-build-logs.storage.googleapis.com/badges/zstd.svg
30 [OSSFuzzLink]: https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:zstd
34 For reference, several fast compression algorithms were tested and compared
35 on a desktop running Ubuntu 20.04 (`Linux 5.11.0-41-generic`),
36 with a Core i7-9700K CPU @ 4.9GHz,
37 using [lzbench], an open-source in-memory benchmark by @inikep
46 | --------------- | ------| -----------| ---------- |
47 | **zstd 1.5.1 -1** | 2.887 | 530 MB/s | 1700 MB/s |
48 | [zlib] 1.2.11 -1 | 2.743 | 95 MB/s | 400 MB/s |
49 | brotli 1.0.9 -0 | 2.702 | 395 MB/s | 450 MB/s |
50 | **zstd 1.5.1 --fast=1** | 2.437 | 600 MB/s | 2150 MB/s |
51 | **zstd 1.5.1 --fast=3** | 2.239 | 670 MB/s | 2250 MB/s |
52 | quicklz 1.5.0 -1 | 2.238 | 540 MB/s | 760 MB/s |
53 | **zstd 1.5.1 --fast=4** | 2.148 | 710 MB/s | 2300 MB/s |
54 | lzo1x 2.10 -1 | 2.106 | 660 MB/s | 845 MB/s |
56 | lzf 3.6 -1 | 2.077 | 410 MB/s | 830 MB/s |
62 The negative compression levels, specified with `--fast=#`,
63 offer faster compression and decompression speed
66 Zstd can also offer stronger compression ratios at the cost of compression speed.
67 Speed vs Compression trade-off is configurable by small increments.
68 Decompression speed is preserved and remains roughly the same at all settings,
72 on a server running Linux Debian (`Linux version 4.14.0-3-amd64`)
73 with a Core i7-6700K CPU @ 4.0GHz,
74 using [lzbench], an open-source in-memory benchmark by @inikep
78 Compression Speed vs Ratio | Decompression Speed
79 ---------------------------|--------------------
80 …ression Speed vs Ratio](doc/images/CSpeed2.png "Compression Speed vs Ratio") | ![Decompression Spe…
96-users` [sample set](https://github.com/facebook/zstd/releases/tag/v1.1.3), created from [github p…
99 Compression Ratio | Compression Speed | Decompression Speed
100 ------------------|-------------------|--------------------
101-cr.png "Compression Ratio") | ![Compression Speed](doc/images/dict-cs.png "Compression Speed") | …
106 Training works if there is some correlation in a family of small data samples. The more data-specif…
114 `zstd --train FullPathToTrainingSet/* -o dictionaryName`
118 `zstd -D dictionaryName FILE`
122 `zstd -D dictionaryName --decompress FILE.zst`
133 - `make install` : create and install zstd cli, library and man pages
134 - `make check` : create and run `zstd`, tests its behavior on local platform
159 ./bootstrap-vcpkg.sh
169 - Projects for Visual Studio 2005, 2008 and 2010.
171 - Automated build scripts for Visual compiler by [@KrzysFR](https://github.com/KrzysFR), in `build/…
177 The output binary will be in `buck-out/gen/programs/`.
192 Zstandard is dual-licensed under [BSD](LICENSE) and [GPLv2](COPYING).