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
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
Unvanquished
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
Xmrig 1.1.0
pts/xmrig-1.1.0
- 23 October 2022 -
Update against v6.18.1 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://github.com/xmrig/xmrig/archive/refs/tags/v6.18.1.tar.gz</URL> <MD5>3da4008a1e8fd3a63b36b4c07c58ec42</MD5> <SHA256>f97fe20248e0eb452f77e9b69f2fb1510b852152b3af4f9a8b20680c854888d1</SHA256> <FileName>xmrig-6.18.1.tar.gz</FileName> <FileSize>2394259</FileSize> <PlatformSpecific>Linux, BSD</PlatformSpecific> </Package> <Package> <URL>https://github.com/xmrig/xmrig/releases/download/v6.18.1/xmrig-6.18.1-msvc-win64.zip</URL> <MD5>e964cf8ca5f46aeadc32acce401caa7f</MD5> <SHA256>8c231f2ebe719066ad3c85b8bea98e1a867af85643d4285c7d33f890d1d22338</SHA256> <FileName>xmrig-6.18.1-msvc-win64.zip</FileName> <FileSize>2292252</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf xmrig-6.18.1.tar.gz cd xmrig-6.18.1 # Make the benchmark quit when done (after printing benchmark finished result) sed -i '288 i exit(0);' src/base/net/stratum/benchmark/BenchClient.cpp mkdir build cd build cmake .. -DCMAKE_BUILD_TYPE=Release -DWITH_OPENCL=OFF -DWITH_CUDA=OFF -DWITH_HTTP=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 cd xmrig-6.18.1/build ./xmrig --no-color --threads=\$NUM_CPU_CORES \$@ -l \$LOG_FILE echo \$? > ~/test-exit-status" > xmrig chmod +x xmrig
install_windows.sh
#!/bin/sh # Windows support currently disabled since it doesn't auto quit at the end... unzip -o xmrig-6.18.1-msvc-win64.zip chmod +x xmrig-6.18.1/xmrig.exe echo "#!/bin/sh cd xmrig-6.18.1/ ./xmrig.exe --no-color --threads=\$NUM_CPU_CORES \$@ -l out.log cat out.log > \$LOG_FILE" > xmrig chmod +x xmrig
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>[2021-04-24 13:02:32.324] bench benchmark finished in 826.465 seconds #_RESULT_# h/s) hash sum = 898B6E0431C28A6B</OutputTemplate> <LineHint>benchmark finished</LineHint> <ResultAfterString>seconds</ResultAfterString> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>Xmrig</Title> <AppVersion>6.18.1</AppVersion> <Description>Xmrig is an open-source cross-platform CPU/GPU miner for RandomX, KawPow, CryptoNight and AstroBWT. This test profile is setup to measure the Xmlrig CPU mining performance.</Description> <ResultScale>H/s</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.1.0</Version> <SupportedPlatforms>Linux, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>cmake, build-utilities, openssl-development</ExternalDependencies> <EnvironmentSize>25</EnvironmentSize> <ProjectURL>https://xmrig.com/</ProjectURL> <RepositoryURL>https://github.com/xmrig/xmrig/</RepositoryURL> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>uv.h, hwloc.h</SystemDependencies> </TestProfile> <TestSettings> <Option> <DisplayName>Variant</DisplayName> <Identifier>variant</Identifier> <Menu> <Entry> <Name>Monero</Name> <Message>Default</Message> </Entry> <Entry> <Name>Wownero</Name> <Value>-a rx/wow</Value> </Entry> </Menu> </Option> <Option> <DisplayName>Hash Count</DisplayName> <Identifier>count</Identifier> <ArgumentPrefix>--bench=</ArgumentPrefix> <Menu> <Entry> <Name>1M</Name> <Value>1M</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>