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
AOM AV1 2.1.0
pts/aom-av1-2.1.0
- 19 May 2020 -
Update against libaom 2.0.0.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.6.0--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://ultravideo.cs.tut.fi/video/Bosphorus_1920x1080_120fps_420_8bit_YUV_Y4M.7z</URL> <MD5>84ae521c95aa2537e16b34bbf72f2def</MD5> <SHA256>e2f60b904789a60f6d1edc194d8540d401dd882e3ee3605b9b1de8feacc72133</SHA256> <FileName>Bosphorus_1920x1080_120fps_420_8bit_YUV_Y4M.7z</FileName> <FileSize>676792531</FileSize> </Package> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/aom-200.tar.xz</URL> <MD5>93c614944b53ed69f36439e433411ddc</MD5> <SHA256>8996bb24c5768a109e3d20cb4b7adb617d7a4095e11801cef1ffccba5e5e6e2c</SHA256> <FileName>aom-200.tar.xz</FileName> <FileSize>2390800</FileSize> </Package> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/aom-200-windows.zip</URL> <MD5>693fe89d844c2735c347b78d3b2df32f</MD5> <SHA256>b27e905f990dffb4071475b0129809ab30f49ed578e69857af61c63400a8572b</SHA256> <FileName>aom-200-windows.zip</FileName> <FileSize>3691863</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf aom-200.tar.xz cd aom/build cmake .. make -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~ 7z x Bosphorus_1920x1080_120fps_420_8bit_YUV_Y4M.7z # Current AOMedia Git has MAX_NUM_THREADS value of 64, don't go over 64 threads or error echo "#!/bin/sh if [ \"\$NUM_CPU_CORES\" -gt 64 ]; then NUM_CPU_CORES=64 fi ./aom/build/aomenc --threads=\$NUM_CPU_CORES \$@ -o test.av1 Bosphorus_1920x1080_120fps_420_8bit_YUV.y4m > 1.log 2>&1 echo \$? > ~/test-exit-status sed \$'s/[^[:print:]\t]/\\n/g' 1.log > \$LOG_FILE rm -f test.av1" > aom-av1 chmod +x aom-av1
install_windows.sh
#!/bin/sh unzip -o aom-200-windows.zip 7z x Bosphorus_1920x1080_120fps_420_8bit_YUV_Y4M.7z chmod +x aomenc.exe echo "#!/bin/sh if [ \"\$NUM_CPU_CORES\" -gt 64 ]; then NUM_CPU_CORES=64 fi ./aomenc.exe --threads=\$NUM_CPU_CORES \$@ -o test.av1 Bosphorus_1920x1080_120fps_420_8bit_YUV.y4m > 1.log 2>&1 echo \$? > ~/test-exit-status sed \$'s/[^[:print:]\t]/\\n/g' 1.log > \$LOG_FILE rm -f test.av1" > aom-av1 chmod +x aom-av1
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.6.0--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Pass 1/2 frame 3/4 768B 2048b/f 61440b/s 165907 us #_RESULT_# fps)</OutputTemplate> <LineHint>fps</LineHint> <TurnCharsToSpace>(</TurnCharsToSpace> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.6.0--> <PhoronixTestSuite> <TestInformation> <Title>AOM AV1</Title> <AppVersion>2.0</AppVersion> <Description>This is a simple test of the AOMedia AV1 encoder run on the CPU with a sample video file.</Description> <ResultScale>Frames Per Second</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>2.1.0</Version> <SupportedPlatforms>Linux, MacOSX, BSD, Windows</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, p7zip, cmake, perl, yasm</ExternalDependencies> <EnvironmentSize>950</EnvironmentSize> <ProjectURL>https://aomedia.googlesource.com/aom/</ProjectURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Encoder Mode</DisplayName> <Identifier>enc-mode</Identifier> <Menu> <Entry> <Name>Speed 8 Realtime</Name> <Value>--cpu-used=8 --rt</Value> </Entry> <Entry> <Name>Speed 6 Realtime</Name> <Value>--cpu-used=6 --rt</Value> </Entry> <Entry> <Name>Speed 6 Two-Pass</Name> <Value>--cpu-used=6 --limit=80</Value> </Entry> <Entry> <Name>Speed 0 Two-Pass</Name> <Value>--cpu-used=0 --limit=10</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>