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
Java JMH 1.0.0
pts/java-jmh-1.0.0
- 18 September 2017 -
initial commit of Java JMH benchmark
install.sh
#!/bin/sh mvn archetype:generate \ -DinteractiveMode=false \ -DarchetypeGroupId=org.openjdk.jmh \ -DarchetypeArtifactId=jmh-java-benchmark-archetype \ -DgroupId=org.sample \ -DartifactId=test \ -Dversion=1.0 cd test mvn clean install cd ~ echo "#!/bin/sh cd test java -jar target/benchmarks.jar -t max > \$LOG_FILE 2>&1" > java-jmh chmod +x java-jmh
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v7.4.0--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>MyBenchmark.testMethod thrpt 200 #_RESULT_# ± 13540170.775 ops/s</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v7.4.0--> <PhoronixTestSuite> <TestInformation> <Title>Java JMH</Title> <Description>This test runs the stock benchmark of the Java JMH benchmark via Maven.</Description> <ResultScale>Ops/s</ResultScale> <Proportion>HIB</Proportion> <SubTitle>Throughput</SubTitle> <TimesToRun>1</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.0</Version> <SupportedPlatforms>Linux, Solaris, BSD, MacOSX</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>java, maven</ExternalDependencies> <EnvironmentSize>1.3</EnvironmentSize> <ProjectURL>http://openjdk.java.net/projects/code-tools/jmh/</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> </PhoronixTestSuite>