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
WebP2 Image Encode 1.2.1
pts/webp2-1.2.1
- 21 November 2023 -
Fix build on GCC 13.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/libwebp2-20220823.tar.xz</URL> <MD5>8185f7ca968486f98a708942052bad34</MD5> <SHA256>4bcb7193d4993bf1e50e1172c368ecf2319a440ca1e94338c3766e13840c681b</SHA256> <FileName>libwebp2-20220823.tar.xz</FileName> <FileSize>8071852</FileSize> <PlatformSpecific>Linux, Solaris, BSD</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 libwebp2-20220823.tar.xz unzip -o sample-photo-6000x4000-1.zip cd libwebp2-master mkdir build cd build cmake .. -DWP2_ENABLE_SIMD=ON -DCMAKE_BUILD_TYPE=Release -DWP2_BUILD_TESTS=OFF -DWP2_ENABLE_TESTS=OFF if [ "$OS_TYPE" = "BSD" ] then gmake -j $NUM_CPU_CORES echo $? > ~/install-exit-status else make -j $NUM_CPU_CORES echo $? > ~/install-exit-status fi cd ~ echo "#!/bin/sh ./libwebp2-master/build/cwp2 sample-photo-6000x4000.JPG -o out.webp -mt \$NUM_CPU_CORES \$@ > \$LOG_FILE 2>&1 rm -f out.webp echo \$? > ~/test-exit-status" > webp2 chmod +x webp2
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Time to encode picture: #_RESULT_#</OutputTemplate> <StripFromResult>s</StripFromResult> <DivideResultDivisor>24</DivideResultDivisor> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>WebP2 Image Encode</Title> <AppVersion>20220823</AppVersion> <Description>This is a test of Google's libwebp2 library with the WebP2 image encode utility and using a sample 6000x4000 pixel JPEG image as the input, similar to the WebP/libwebp test profile. WebP2 is currently experimental and under heavy development as ultimately the successor to WebP. WebP2 supports 10-bit HDR, more efficienct lossy compression, improved lossless compression, animation support, and full multi-threading support compared to WebP.</Description> <ResultScale>MP/s</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.2.1</Version> <SupportedPlatforms>Linux, MacOSX, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, jpeg-development, cmake</ExternalDependencies> <EnvironmentSize>79</EnvironmentSize> <ProjectURL>https://chromium.googlesource.com/codecs/libwebp2/</ProjectURL> <RepositoryURL>https://chromium.googlesource.com/codecs/libwebp2</RepositoryURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <Arguments>-v -info</Arguments> </Default> <Option> <DisplayName>Encode Settings</DisplayName> <Identifier>encode</Identifier> <Menu> <Entry> <Name>Default</Name> <Value> </Value> </Entry> <Entry> <Name>Quality 75, Compression Effort 7</Name> <Value>-q 75 -effort 7</Value> </Entry> <Entry> <Name>Quality 95, Compression Effort 7</Name> <Value>-q 95 -effort 7</Value> </Entry> <Entry> <Name>Quality 100, Compression Effort 5</Name> <Value>-q 100 -effort 5</Value> </Entry> <Entry> <Name>Quality 100, Lossless Compression</Name> <Value>-q 100 -effort 9</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>