File:Decompression-bench.svg
Summary
Description |
English: This is a comparison of popular compression formats by how many nanoseconds it takes to compress each format. The horizontal scale shows tens of kilobytes.
To recreate run this on a Linux computer: for testnum in $(seq 0 256); do testnum=$(expr $testnum '*' 10) for archiver in bzip2 lzma xz gzip lzip lzop lrzip; do dd if=/dev/zero of=$testnum.zero bs="$testnum"'k' count=1 $archiver $testnum.zero rm $testnum.zero c=$(date +%s%N) $archiver -d $testnum.zero.* d=$(date +%s%N) total=$(echo $d-$c | bc) echo $total >> $archiver rm $testnum.zero *.bz2 *.lzma *.gz *.xz *.lzo *.lz *.lrz done done gnuplot <(echo "set terminal svg;set ylabel 'Time (nanoseconds)' textcolor lt 1; set xlabel 'Size (tens of kilobytes)' textcolor lt 2;plot 'lzma' with lines, 'xz' with lines, 'gzip' with lines, 'lzip' with lines, 'lzop' with lines, 'lrzip' with lines, 'bzip2' with lines") > test.svg rm gzip lrzip lzip lzma lzop xz bzip2 |
Date | |
Source | Own work |
Author | Shnatsel |
Other versions | Benchmark of compression time |
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
![]() ![]() |
This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication. |
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.
|