Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
Mobile Neural Network
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
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
WebP Image Encode 1.0.0
pts/webp-1.0.0
- 22 September 2020 -
Initial libwebp cwebp benchmark.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.0.0m2--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.1.0.tar.gz</URL> <MD5>7e047f2cbaf584dff7a8a7e0f8572f18</MD5> <SHA256>98a052268cc4d5ece27f76572a7f50293f439c17a98e67c4ea0c7ed6f50ef043</SHA256> <FileName>libwebp-1.1.0.tar.gz</FileName> <FileSize>4033877</FileSize> <PlatformSpecific>Linux, Solaris, BSD</PlatformSpecific> </Package> <Package> <URL>https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.1.0-windows-x64.zip</URL> <MD5>e19767e577d5bc74877b17cd3cef2d8a</MD5> <SHA256>e7026022be0d18e16bb0ab5cc322266be64778dedf22bc54efdc2be43c77ec27</SHA256> <FileName>libwebp-1.1.0-windows-x64.zip</FileName> <FileSize>3769998</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.1.0-mac-10.15.tar.gz</URL> <MD5>941ae609d3eefe9eace56ea8ea24c313</MD5> <SHA256>1aa2db35e3befc661e38a427bf372126d49939438c5d272d00941b5b2c0979f4</SHA256> <FileName>libwebp-1.1.0-mac-10.15.tar.gz</FileName> <FileSize>5293500</FileSize> <PlatformSpecific>MacOSX</PlatformSpecific> </Package> <Package> <URL>http://phoronix-test-suite.com/benchmark-files/sample-photo-6000x4000-1.zip</URL> <MD5>3da40124023e94f63d96c22c07e7e9c2</MD5> <SHA256>cadcd434abcdc82a220e7022c749b6fa5f46bb7a32ec14423ca8aab067b0e989</SHA256> <FileName>sample-photo-6000x4000-1.zip</FileName> <FileSize>7824306</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf libwebp-1.1.0.tar.gz unzip -o sample-photo-6000x4000-1.zip cd libwebp-1.1.0 ./configure make -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh ./libwebp-1.1.0/examples/cwebp sample-photo-6000x4000.JPG -o out.webp \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > webp chmod +x webp
install_macosx.sh
#!/bin/sh tar -xf libwebp-1.1.0-mac-10.15.tar.gz unzip -o sample-photo-6000x4000-1.zip echo "#!/bin/sh ./libwebp-1.1.0-mac-10.15/bin/cwebp sample-photo-6000x4000.JPG -o out.webp \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > webp chmod +x webp
install_windows.sh
#!/bin/sh unzip -o libwebp-1.1.0-windows-x64.zip unzip -o sample-photo-6000x4000-1.zip echo "#!/bin/sh ./libwebp-1.1.0-windows-x64/bin/cwebp.exe sample-photo-6000x4000.JPG -o out.webp \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > webp chmod +x webp
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.0.0m2--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Time to encode picture: #_RESULT_#</OutputTemplate> <StripFromResult>s</StripFromResult> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.0.0m2--> <PhoronixTestSuite> <TestInformation> <Title>WebP Image Encode</Title> <AppVersion>1.1</AppVersion> <Description>This is a test of Google's libwebp with the cwebp image encode utility and using a sample 6000x4000 pixel JPEG image as the input.</Description> <ResultScale>Encode Time - Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.0</Version> <SupportedPlatforms>Linux, MacOSX, Windows</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, jpeg-development</ExternalDependencies> <EnvironmentSize>72</EnvironmentSize> <ProjectURL>https://developers.google.com/speed/webp/docs/cwebp</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <Arguments>-v -mt</Arguments> </Default> <Option> <DisplayName>Encode Settings</DisplayName> <Identifier>encode</Identifier> <Menu> <Entry> <Name>Default</Name> <Value> </Value> </Entry> <Entry> <Name>Quality 100</Name> <Value>-q 100</Value> </Entry> <Entry> <Name>Quality 100, Highest Compression</Name> <Value>-q 100 -m 6</Value> </Entry> <Entry> <Name>Quality 100, Lossless</Name> <Value>-q 100 -lossless</Value> </Entry> <Entry> <Name>Quality 100, Lossless, Highest Compression</Name> <Value>-q 100 -lossless -m 6</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>