Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
x265
FFmpeg
Newest Tests
LiteRT
WarpX
Epoch
Valkey
Whisperfile
XNNPACK
Recently Updated Tests
ASTC Encoder
SVT-AV1
Unvanquished
Primesieve
XNNPACK
oneDNN
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
Zstd Compression 1.6.0
pts/compress-zstd-1.6.0
- 10 February 2023 -
Update against Zstandard 1.5.4 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://wanos.co/assets/silesia.tar</URL> <MD5>860ad8e1581f5bbc977d8ead770eefb1</MD5> <SHA256>ea122ed051dc7a6c58d2bb56bb05b34d9f1537c4dc9e71519142e2ca8cd6338d</SHA256> <FileName>silesia.tar</FileName> <FileSize>211948544</FileSize> </Package> <Package> <URL>https://github.com/facebook/zstd/archive/refs/tags/v1.5.4.tar.gz</URL> <MD5>02b49acde4ebb35f7e47a2a41032ffa8</MD5> <SHA256>35ad983197f8f8eb0c963877bf8be50490a0b3df54b4edeb8399ba8a8b2f60a4</SHA256> <FileName>zstd-1.5.4.tar.gz</FileName> <FileSize>2178759</FileSize> </Package> <Package> <URL>https://github.com/facebook/zstd/releases/download/v1.5.4/zstd-v1.5.4-win64.zip</URL> <MD5>b11a0f1e9e05f8ce756194b8693f3fbe</MD5> <SHA256>aa8fab85842f28986df9f34043cbb36305b43d104b13ad560cca82d0b6599fee</SHA256> <FileName>zstd-v1.5.4-win64.zip</FileName> <FileSize>1445937</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xvf zstd-1.5.4.tar.gz cd zstd-1.5.4 make -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~ cat > compress-zstd <<EOT #!/bin/sh ./zstd-1.5.4/zstd -T\$NUM_CPU_CORES \$@ silesia.tar > \$LOG_FILE 2>&1 sed -i -e "s/\r/\n/g" \$LOG_FILE EOT chmod +x compress-zstd
install_windows.sh
#!/bin/sh unzip -o zstd-v1.5.4-win64.zip chmod +x zstd.exe cat > compress-zstd <<EOT #!/bin/sh ./zstd.exe -T\$NUM_CPU_CORES \$@ silesia.tar > \$LOG_FILE 2>&1 sed -i -e "s/\r/\n/g" \$LOG_FILE EOT chmod +x compress-zstd
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate> 3#desktop-amd64.iso :2082816000 ->2063395360 (1.009) #_RESULT_# MB/s 8080.3 MB/s </OutputTemplate> <LineHint>MB/s</LineHint> <ResultBeforeString>MB/s</ResultBeforeString> <AppendToArgumentsDescription>Compression Speed</AppendToArgumentsDescription> <TurnCharsToSpace>,</TurnCharsToSpace> </ResultsParser> <ResultsParser> <OutputTemplate> 3#desktop-amd64.iso :2082816000 ->2063395360 (1.009) 111 MB/s #_RESULT_# MB/s </OutputTemplate> <LineHint>MB/s</LineHint> <ResultAfterString>MB/s</ResultAfterString> <AppendToArgumentsDescription>Decompression Speed</AppendToArgumentsDescription> <TurnCharsToSpace>,</TurnCharsToSpace> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>Zstd Compression</Title> <AppVersion>1.5.4</AppVersion> <Description>This test measures the time needed to compress/decompress a sample file (silesia.tar) using Zstd (Zstandard) compression with options for different compression levels / settings.</Description> <ResultScale>MB/s</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.6.0</Version> <SupportedPlatforms>Linux, BSD, MacOSX, Solaris, Windows</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities</ExternalDependencies> <EnvironmentSize>400</EnvironmentSize> <ProjectURL>https://facebook.github.io/zstd/</ProjectURL> <RepositoryURL>https://github.com/facebook/zstd</RepositoryURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <Arguments>-S -i30</Arguments> </Default> <Option> <DisplayName>Compression Level</DisplayName> <Identifier>compression</Identifier> <Menu> <Entry> <Name>3</Name> <Value>-b3</Value> </Entry> <Entry> <Name>3, Long Mode</Name> <Value>-b3 --long</Value> </Entry> <Entry> <Name>8</Name> <Value>-b8</Value> </Entry> <Entry> <Name>8, Long Mode</Name> <Value>-b8 --long</Value> </Entry> <Entry> <Name>12</Name> <Value>-b12</Value> </Entry> <Entry> <Name>19</Name> <Value>-b19</Value> </Entry> <Entry> <Name>19, Long Mode</Name> <Value>-b19 --long</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>