Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
LiteRT
WarpX
Epoch
Valkey
Whisperfile
XNNPACK
Recently Updated Tests
SuperTuxKart
ASTC Encoder
SVT-AV1
Unvanquished
Primesieve
XNNPACK
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
QuantLib 2.0.0
pts/quantlib-2.0.0
- 04 June 2024 -
Update against new upstream QuantLib benchmark.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://github.com/lballabio/QuantLib/archive/68d2675fc80424a86e96697b68bf4dcbcc7dde4c.zip</URL> <MD5>9628ecb2047c24141f461f97a5b44716</MD5> <SHA256>c9319b21cefa17677a2d9d66f23ca371b4f78698ea027888e9a83e38293dc050</SHA256> <FileName>QuantLib-68d2675fc80424a86e96697b68bf4dcbcc7dde4c.zip</FileName> <FileSize>10910965</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/bash unzip -o QuantLib-68d2675fc80424a86e96697b68bf4dcbcc7dde4c.zip cd QuantLib-68d2675fc80424a86e96697b68bf4dcbcc7dde4c mkdir build cd build CFLAGS_EXTRA="" arch=$(uname -i) if [ "$arch" == 'x86_64' ]; then # Since -march=native doesn't work for most other archs... CFLAGS_EXTRA=" -march=native" fi cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-O3 $CFLAGS_EXTRA" -DCMAKE_C_FLAGS="-O3 $CFLAGS_EXTRA" -DQL_ENABLE_PARALLEL_UNIT_TEST_RUNNER=ON 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/bash cd QuantLib-68d2675fc80424a86e96697b68bf4dcbcc7dde4c/build ./test-suite/quantlib-benchmark --nProc=\$NUM_CPU_CORES --verbose=1 \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > quantlib chmod +x quantlib
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>System Throughput = #_RESULT_# tasks/s</OutputTemplate> <LineHint>System Throughput</LineHint> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <TestInformation> <Title>QuantLib</Title> <AppVersion>1.35-dev</AppVersion> <Description>QuantLib is an open-source library/framework around quantitative finance for modeling, trading and risk management scenarios. QuantLib is written in C++ with Boost and its built-in benchmark used reports the QuantLib Benchmark Index benchmark score. The QuantLib benchmark uses Boost::IPC for parallelism.</Description> <ResultScale>tasks/s</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>2.0.0</Version> <SupportedPlatforms>Linux, BSD, MacOSX</SupportedPlatforms> <SoftwareType>Benchmark</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, boost-development, cmake</ExternalDependencies> <EnvironmentSize>531</EnvironmentSize> <ProjectURL>https://www.quantlib.org/</ProjectURL> <RepositoryURL>https://github.com/lballabio/QuantLib</RepositoryURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Size</DisplayName> <Identifier>size</Identifier> <ArgumentPrefix>--size=</ArgumentPrefix> <Menu> <Entry> <Name>XXS</Name> <Value>XXS</Value> <Message>Intended for small laptops / desktop type systems</Message> </Entry> <Entry> <Name>S</Name> <Value>S</Value> <Message>Intended for medium to larger systems</Message> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>