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
rav1e 1.4.0
pts/rav1e-1.4.0
- 19 November 2020 -
Update against rav1e 0.4 alpha upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.0.1--> <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>https://github.com/xiph/rav1e/archive/v0.4.0-alpha.tar.gz</URL> <MD5>4a6b92c4aa9933a62548904920b3c22e</MD5> <SHA256>c846cc64a2b712b27951c101ec8dc8518e531360a69b67fed230e31dd0337be8</SHA256> <FileName>rav1e-0.4.0-alpha.tar.gz</FileName> <FileSize>4445009</FileSize> </Package> <Package> <URL>https://github.com/xiph/rav1e/releases/download/v0.4.0-alpha/rav1e-0.4.0-alpha-linux.tar.gz</URL> <MD5>0141b12aca450ecf1e1ae077c4ffee0e</MD5> <SHA256>4c38bc7659ae899540da59750416dc138e082725b961c881b610f72cc6450933</SHA256> <FileName>rav1e-0.4.0-alpha-linux.tar.gz</FileName> <FileSize>1315884</FileSize> <PlatformSpecific>Linux</PlatformSpecific> <ArchitectureSpecific>x86_64</ArchitectureSpecific> </Package> <Package> <URL>https://github.com/xiph/rav1e/releases/download/v0.4.0-alpha/rav1e-0.4.0-alpha-aarch64-linux.tar.gz</URL> <MD5>9b9af2de07aad80301379b0520de2b2f</MD5> <SHA256>e48d42c3d7117f42b13d8dbbe80db4b0dc7c928db895eb3907459c657ed77b34</SHA256> <FileName>rav1e-0.4.0-alpha-aarch64-linux.tar.gz</FileName> <FileSize>1096990</FileSize> <PlatformSpecific>Linux</PlatformSpecific> <ArchitectureSpecific>aarch64, armv8</ArchitectureSpecific> </Package> <Package> <URL>https://github.com/xiph/rav1e/releases/download/v0.4.0-alpha/rav1e.exe</URL> <MD5>2329322f39ff71976a82199af21ddaaf</MD5> <SHA256>4603b73fe48ee20712b39eb67ab1a28eca6815004a25b70e30545f0cdd74ee6e</SHA256> <FileName>rav1e-04-alpha.exe</FileName> <FileSize>3409920</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>https://github.com/xiph/rav1e/releases/download/v0.4.0-alpha/rav1e-0.4.0-alpha-macos.zip</URL> <MD5>2aee0d56af93228858abb90ab355ba37</MD5> <SHA256>ea2e2d515368cc7c18551d2454e2d7d69a35b637c42bf81f2170f27ad815ad23</SHA256> <FileName>rav1e-0.4.0-alpha-macos.zip</FileName> <FileSize>1162039</FileSize> <PlatformSpecific>MacOSX</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh 7z x Bosphorus_1920x1080_120fps_420_8bit_YUV_Y4M.7z tar -xf rav1e-0.4.0-alpha.tar.gz cd rav1e-0.4.0-alpha/ cargo build --bin rav1e --release -j $NUM_CPU_PHYSICAL_CORES echo $? > ~/install-exit-status cd ~ mkdir -p rav1e-0.4.0-alpha/target/release/ if [ ! -x rav1e-0.4.0-alpha/target/release/rav1e ]; then if [ $OS_ARCH = "aarch64" ] then tar -xf rav1e-0.4.0-alpha-aarch64-linux.tar.gz mv rav1e rav1e-0.4.0-alpha/target/release/rav1e echo 0 > ~/install-exit-status else tar -xf rav1e-0.4.0-alpha-linux.tar.gz mv rav1e rav1e-0.4.0-alpha/target/release/rav1e echo 0 > ~/install-exit-status fi fi cd ~ echo "#!/bin/sh cd rav1e-0.4.0-alpha/ ./target/release/rav1e ../Bosphorus_1920x1080_120fps_420_8bit_YUV.y4m --threads \$NUM_CPU_CORES --tiles 4 --output /dev/null \$@ > log.out 2>&1 echo \$? > ~/test-exit-status tr -s '\r' '\n' < log.out > \$LOG_FILE" > rav1e chmod +x rav1e
install_macosx.sh
#!/bin/sh 7z x Bosphorus_1920x1080_120fps_420_8bit_YUV_Y4M.7z unzip -o rav1e-0.4.0-alpha-macos.zip mv rav1e rav1e-mac chmod +x rav1e-mac echo "#!/bin/sh ./rav1e-mac Bosphorus_1920x1080_120fps_420_8bit_YUV.y4m --threads \$NUM_CPU_CORES --tiles 4 --output NULL.ivf \$@ > log.out 2>&1 rm -f output tr -s '\r' '\n' < log.out > \$LOG_FILE" > rav1e chmod +x rav1e
install_windows.sh
#!/bin/sh 7z x Bosphorus_1920x1080_120fps_420_8bit_YUV_Y4M.7z echo "#!/bin/sh ./rav1e-04-alpha.exe Bosphorus_1920x1080_120fps_420_8bit_YUV.y4m --threads \$NUM_CPU_CORES --tiles 4 --output NULL.ivf \$@ > log.out 2>&1 rm -f output tr -s '\r' '\n' < log.out > \$LOG_FILE" > rav1e chmod +x rav1e
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.0.1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>encoded 53/60 frames, #_RESULT_# fps, 2422.07 Kb/s, est. size: 0.58 MB, est. time: 5s </OutputTemplate> <LineHint>encoded </LineHint> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.0.1--> <PhoronixTestSuite> <TestInformation> <Title>rav1e</Title> <AppVersion>0.4 Alpha</AppVersion> <Description>Xiph rav1e is a Rust-written AV1 video encoder.</Description> <ResultScale>Frames Per Second</ResultScale> <Proportion>HIB</Proportion> <SubTitle>1080p To AV1 Video Encode</SubTitle> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.4.0</Version> <SupportedPlatforms>Linux, Windows, MacOSX, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>rust, yasm, perl, cmake, p7zip</ExternalDependencies> <EnvironmentSize>3000</EnvironmentSize> <ProjectURL>https://github.com/xiph/rav1e</ProjectURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Speed</DisplayName> <Identifier>s</Identifier> <Menu> <Entry> <Name>10</Name> <Value>-s 10 -l 90</Value> <Message>Fastest</Message> </Entry> <Entry> <Name>6</Name> <Value>-s 6 -l 60</Value> <Message>Default</Message> </Entry> <Entry> <Name>5</Name> <Value>-s 5 -l 60</Value> <Message>Mid-Speed</Message> </Entry> <Entry> <Name>1</Name> <Value>-s 1 -l 20</Value> <Message>Slowest / Best Quality</Message> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>