Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed error handling
  • Loading branch information
inikep committed Nov 2, 2015
1 parent 118e35b commit 89765bf
Show file tree
Hide file tree
Showing 7 changed files with 529 additions and 493 deletions.
4 changes: 4 additions & 0 deletions NEWS
@@ -1,2 +1,6 @@
v.0.7.1
- tornado updated to version 0.6a
- lz5/lz5hc updated to version r131b

v0.7
The first release for GitHub
8 changes: 4 additions & 4 deletions README.md
@@ -1,7 +1,7 @@
Introduction
-------------------------

lzbench is an in-memory benchmark of the fastest open-source LZ77/LZSS compressors. It joins all compressors into a single exe.
lzbench is an in-memory benchmark of open-source LZ77/LZSS/LZMA compressors. It joins all compressors into a single exe.
At the beginning an input file is read to memory.
Then all compressors are used to compress and decompress the file and decompressed file is verified.
This approach has a big advantage of using the same compiler with the same optimizations for all compressors.
Expand All @@ -17,7 +17,7 @@ usage: lzbench [options] input_file
where options are:
-iX: selects number of iterations (default 1) and displays best time of X iterations.
-bX: divides input data in blocks/chunks of size X KB (default = 2097152 KB)
-sX: selects only compressors with compression speed over X MB (default = 100 MB) - so far it's only approximation
-sX: selects only compressors with compression speed over X MB (default = 100 MB)
```


Expand All @@ -44,7 +44,7 @@ csc 3.3
density 0.12.5 beta
fastlz 0.1
lz4/lz4hc r131
lz5/lz5hc r131
lz5/lz5hc r131b
lzf
lzham 1.0
lzjb 2010
Expand All @@ -57,7 +57,7 @@ quicklz 1.5.0
quicklz 1.5.1 b7
shrinker
snappy 1.1.3
tornado 0.6
tornado 0.6a
ucl 1.03
yappy
zlib 1.2.8
Expand Down
112 changes: 56 additions & 56 deletions _lzbench/compressors.cpp

Large diffs are not rendered by default.

227 changes: 114 additions & 113 deletions _lzbench/compressors.h

Large diffs are not rendered by default.

0 comments on commit 89765bf

Please sign in to comment.