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.5.0
pts/rav1e-1.5.0
- 13 January 2021 -
Update against rav1e 0.4 upstream stable.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.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>https://github.com/xiph/rav1e/archive/v0.4.0.tar.gz</URL> <MD5>35cbfb3645f5a6c8710f826cb2028710</MD5> <SHA256>c3ea1a2275f09c8a8964084c094d81f01c07fb405930633164ba69d0613a9003</SHA256> <FileName>rav1e-0.4.0.tar.gz</FileName> <FileSize>4535773</FileSize> </Package> <Package> <URL>https://github.com/xiph/rav1e/releases/download/v0.4.0/rav1e-0.4.0-linux.tar.gz</URL> <MD5>4ac996da2899a03c323a618bd13b45ef</MD5> <SHA256>8372174ba45ca66a76bd43ffb03acb4ace5341cc9b38a15b21c0aff9f16e793d</SHA256> <FileName>rav1e-0.4.0-linux.tar.gz</FileName> <FileSize>1391142</FileSize> <PlatformSpecific>Linux</PlatformSpecific> <ArchitectureSpecific>x86_64</ArchitectureSpecific> </Package> <Package> <URL>https://github.com/xiph/rav1e/releases/download/v0.4.0/rav1e-0.4.0-aarch64-linux.tar.gz</URL> <MD5>46542f0f0f864bf196234fc2f0edc2a6</MD5> <SHA256>ede79db300b4c2cfd944505f4b0a4bad0c79f46708949cf4d03ef838826a6ba2</SHA256> <FileName>rav1e-0.4.0-aarch64-linux.tar.gz</FileName> <FileSize>1163753</FileSize> <PlatformSpecific>Linux</PlatformSpecific> <ArchitectureSpecific>aarch64, armv8</ArchitectureSpecific> </Package> <Package> <URL>https://github.com/xiph/rav1e/releases/download/v0.4.0/rav1e.exe</URL> <MD5>5f9bb6f12f19e03e100b6164f56d08d2</MD5> <SHA256>870376d02ce2acc2a8ac640d47cff083c2b31b8d6fc4075cd749bed8b4fba50f</SHA256> <FileName>rav1e-04.exe</FileName> <FileSize>3602944</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>https://github.com/xiph/rav1e/releases/download/v0.4.0/rav1e-0.4.0-macos.zip</URL> <MD5>3778d6754c03e96ac4456b221885692c</MD5> <SHA256>92f68e5aca0739318b87e2f511e121d5690ba4d06050014d17aaf04bcb64d192</SHA256> <FileName>rav1e-0.4.0-macos.zip</FileName> <FileSize>1246313</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.tar.gz cd rav1e-0.4.0/ cargo build --bin rav1e --release -j $NUM_CPU_PHYSICAL_CORES echo $? > ~/install-exit-status cd ~ mkdir -p rav1e-0.4.0/target/release/ if [ ! -x rav1e-0.4.0/target/release/rav1e ]; then if [ $OS_ARCH = "aarch64" ] then tar -xf rav1e-0.4.0-aarch64-linux.tar.gz mv rav1e rav1e-0.4.0/target/release/rav1e echo 0 > ~/install-exit-status else tar -xf rav1e-0.4.0-linux.tar.gz mv rav1e rav1e-0.4.0/target/release/rav1e echo 0 > ~/install-exit-status fi fi cd ~ echo "#!/bin/sh cd rav1e-0.4.0/ ./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-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.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.2.0--> <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.2.0--> <PhoronixTestSuite> <TestInformation> <Title>rav1e</Title> <AppVersion>0.4</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.5.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>