Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Flexible IO Tester
Timed Linux Kernel Compilation
Blender
SVT-AV1
7-Zip Compression
FFmpeg
Newest Tests
OpenVINO GenAI
Rustls
LiteRT
WarpX
Epoch
Valkey
Recently Updated Tests
srsRAN Project
VVenC
x265
RELION
Llamafile
Llama.cpp
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
Hackbench 1.0.0
ljishen/hackbench-1.0.0
- 11 March 2017 -
First version of hackbench
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v7.0.0--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://launchpad.net/ubuntu/+archive/primary/+files/rt-tests_1.0.orig.tar.xz</URL> <MD5>3818d2d0a3069291864bf85fde40883b</MD5> <SHA256>aea85fd8eda8c1d96e9d32a019bfd4a1d2e0d362971d97838996f49d1af2d470</SHA256> <FileSize>86096</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xvf rt-tests_1.0.orig.tar.xz cd rt-tests-1.0/src/hackbench gcc -g -Wall -O2 -o hackbench hackbench.c -lpthread echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh ./rt-tests-1.0/src/hackbench/hackbench \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > hackbench chmod +x hackbench
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v7.0.0--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Time: #_RESULT_#</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v7.0.0--> <PhoronixTestSuite> <TestInformation> <Title>Hackbench</Title> <AppVersion>1.0</AppVersion> <Description>Hackbench is both a benchmark and a stress test for the Linux kernel scheduler. It's main job is to create a specified number of pairs of schedulable entities (either threads or traditional processes) which communicate via either sockets or pipes and time how long it takes for each pair to send data back and forth.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <SubTitle>Running in process mode with 20 groups using 100 file descriptors each (== 2000 tasks)</SubTitle> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.0</Version> <SupportedPlatforms>Linux, Solaris, BSD, MacOSX</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities</ExternalDependencies> <EnvironmentSize>0.8</EnvironmentSize> <ProjectURL>https://launchpad.net/ubuntu/zesty/+package/rt-tests</ProjectURL> <InternalTags>SMP</InternalTags> <Maintainer>Jianshen Liu</Maintainer> </TestProfile> <TestSettings> <Default> <Arguments>-s 512 -l 200 -g 20 -f 50</Arguments> </Default> <Option> <DisplayName>Communication Type</DisplayName> <Identifier>communication-type</Identifier> <ArgumentPrefix></ArgumentPrefix> <ArgumentPostfix></ArgumentPostfix> <DefaultEntry>0</DefaultEntry> <Menu> <Entry> <Name>Pipes</Name> <Value>--pipe</Value> <Message></Message> </Entry> <Entry> <Name>Sockets</Name> <Value></Value> <Message></Message> </Entry> </Menu> </Option> <Option> <DisplayName>Entity Type</DisplayName> <Identifier>entity-type</Identifier> <ArgumentPrefix></ArgumentPrefix> <ArgumentPostfix></ArgumentPostfix> <DefaultEntry>0</DefaultEntry> <Menu> <Entry> <Name>Process</Name> <Value>--process</Value> <Message></Message> </Entry> <Entry> <Name>Thread</Name> <Value>--threads</Value> <Message></Message> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>