Created
November 28, 2018 02:39
-
-
Save travisdowns/31b9c8e8f17ea38617567ae7b0de6717 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt update | |
sudo apt-get install -y build-essential unzip | |
git clone https://github.com/inikep/lzbench | |
cd lzbench | |
curl http://sun.aei.polsl.pl/~sdeor/corpus/silesia.zip > silesia.zip | |
mkdir silesia | |
unzip silesia.zip -d silesia | |
tar cvf silesia.tar silesia/* | |
time make -j4 | |
./lzbench -o4 silesia.tar | tee results.csv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment