Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Flexible IO Tester
Timed Linux Kernel Compilation
Llama.cpp
Blender
Hashcat
PostgreSQL
Newest Tests
OpenVINO GenAI
Rustls
Recently Updated Tests
Basis Universal
NeatBench
OpenRadioss
QuantLib
GROMACS
AOM AV1
New & Recently Updated Tests
Recently Updated Suites
Machine Learning
Server Motherboard
HPC - High Performance Computing
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
LevelDB 1.0.0
pts/leveldb-1.0.0
- 05 March 2020 -
Initial commit of Google LevelDB benchmark.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.4.1--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://github.com/google/leveldb/archive/1.22.tar.gz</URL> <MD5>e1dbde14dcda1b58b49f0c214464fdd9</MD5> <SHA256>55423cac9e3306f4a9502c738a001e4a339d1a38ffbee7572d4a07d5d63949b2</SHA256> <FileName>leveldb-1.22.tar.gz</FileName> <FileSize>239365</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf leveldb-1.22.tar.gz cd leveldb-1.22 mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release .. make -j $NUM_CPU_THREADS echo $? > ~/install-exit-status cd ~ cd ~ echo "#!/bin/sh cd ~/KeyDB-5.3.1/ cd leveldb-1.22/build ./db_bench --threads=\$NUM_CPU_CORES \$@ > \$LOG_FILE " > leveldb chmod +x leveldb
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.4.1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>fillseq : 257.528 micros/op; #_RESULT_# MB/s </OutputTemplate> <LineHint>micros/op</LineHint> <ResultScale>MB/s</ResultScale> <ResultProportion>HIB</ResultProportion> </ResultsParser> <ResultsParser> <OutputTemplate>readhot : #_RESULT_# micros/op;</OutputTemplate> <LineHint>micros/op</LineHint> <ResultScale>Microseconds Per Op</ResultScale> <ResultProportion>LIB</ResultProportion> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.4.1--> <PhoronixTestSuite> <TestInformation> <Title>LevelDB</Title> <AppVersion>1.22</AppVersion> <Description>LevelDB is a key-value storage library developed by Google that supports making use of Snappy for data compression and has other modern features.</Description> <ResultScale>Microseconds Per Op</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.0</Version> <SupportedPlatforms>Linux, BSD</SupportedPlatforms> <SoftwareType>Benchmark</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, cmake, snappy</ExternalDependencies> <EnvironmentSize>18</EnvironmentSize> <ProjectURL>https://github.com/google/leveldb</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Benchmark</DisplayName> <Identifier>benchmark</Identifier> <ArgumentPrefix>--benchmarks=</ArgumentPrefix> <Menu> <Entry> <Name>Sequential Fill</Name> <Value>fillseq --num=500000</Value> </Entry> <Entry> <Name>Random Fill</Name> <Value>fillrandom --num=100000</Value> </Entry> <Entry> <Name>Overwrite</Name> <Value>overwrite --num=100000</Value> </Entry> <Entry> <Name>Fill Sync</Name> <Value>fillsync --num=1000000</Value> </Entry> <Entry> <Name>Random Read</Name> <Value>readrandom --num=1000000</Value> </Entry> <Entry> <Name>Random Delete</Name> <Value>deleterandom --num=500000</Value> </Entry> <Entry> <Name>Hot Read</Name> <Value>readhot --num=1000000</Value> </Entry> <Entry> <Name>Seek Random</Name> <Value>seekrandom --num=1000000</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>