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
RNNoise 1.1.0
pts/rnnoise-1.1.0
- 15 April 2024 -
Update against RNNoise 0.2 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/sample-audio-long-1.tar.xz</URL> <MD5>7009308d604b7f093eddcf1d66be7765</MD5> <SHA256>55edc8460fc23085bdc0745ff92233a8e975f4928010bdd9db4a7aa1e9e3c1bf</SHA256> <FileName>sample-audio-long-1.tar.xz</FileName> <FileSize>110304308</FileSize> </Package> <Package> <URL>https://github.com/xiph/rnnoise/releases/download/v0.2/rnnoise-0.2.tar.gz</URL> <MD5>0e795b2d2b4730fc5ee6e38b77699e91</MD5> <SHA256>90fce4b00b9ff24c08dbfe31b82ffd43bae383d85c5535676d28b0a2b11c0d37</SHA256> <FileName>rnnoise-0.2.tar.gz</FileName> <FileSize>2294308</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf sample-audio-long-1.tar.xz tar -xf rnnoise-0.2.tar.gz cd rnnoise-0.2 ./autogen.sh BUILD_OPTIONS="" if [ $OS_TYPE = "Linux" ] then if grep avx /proc/cpuinfo > /dev/null then BUILD_OPTIONS="--enable-x86-rtcd " fi fi ./configure $BUILD_OPTIONS make -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh ./rnnoise-0.2/examples/rnnoise_demo \$1 out.raw echo \$? > ~/test-exit-status" > rnnoise chmod +x rnnoise
post.sh
#!/bin/sh rm -f rnnoise-0.2/out.raw
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <TestInformation> <Title>RNNoise</Title> <AppVersion>0.2</AppVersion> <Description>RNNoise is a recurrent neural network for audio noise reduction developed by Mozilla and Xiph.Org. This test profile is a single-threaded test measuring the time to denoise a sample 26 minute long 16-bit RAW audio file using this recurrent neural network noise suppression library.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.1.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, libtool</ExternalDependencies> <EnvironmentSize>157</EnvironmentSize> <ProjectURL>https://jmvalin.ca/demo/rnnoise/</ProjectURL> <RepositoryURL>https://github.com/xiph/rnnoise</RepositoryURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Input</DisplayName> <Identifier>input</Identifier> <Menu> <Entry> <Name>26 Minute Long Talking Sample</Name> <Value>sample-audio-long.raw</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>