Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
x265
FFmpeg
Newest Tests
LiteRT
WarpX
Epoch
Valkey
Whisperfile
XNNPACK
Recently Updated Tests
ASTC Encoder
SVT-AV1
Unvanquished
Primesieve
XNNPACK
oneDNN
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
GNU MPC 1.0.1
pts/mpcbench-1.0.1
- 15 January 2019 -
Update download URLs for mpfr.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.6.0m1--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://gmplib.org/download/gmp/gmp-6.1.2.tar.bz2</URL> <MD5>8ddbb26dc3bd4e2302984debba1406a5</MD5> <SHA256>5275bb04f4863a13516b2f39392ac5e272f5e1bb8057b18aec1c9b79d73d8fb2</SHA256> <FileName>gmp-6.1.2.tar.bz2</FileName> <FileSize>2386766</FileSize> </Package> <Package> <URL>http://ftp.ussg.iu.edu/gnu/mpfr/mpfr-4.0.0.tar.bz2, http://ftp.gnu.org/gnu/mpfr/mpfr-4.0.0.tar.bz2, http://ftp.vim.org/ftp/gnu/mpfr/mpfr-4.0.0.tar.bz2</URL> <MD5>ef619f3bb68039e35c4a219e06be72d0</MD5> <SHA256>6aa31fbf3bd1f9f95bcfa241590a9d11cb0f874e2bb93b99c9e2de8eaea6d5fd</SHA256> <FileName>mpfr-4.0.0.tar.bz2</FileName> <FileSize>1619917</FileSize> </Package> <Package> <URL>http://ftp.gnu.org/gnu/mpc/mpc-1.1.0.tar.gz</URL> <MD5>4125404e41e482ec68282a2e687f6c73</MD5> <SHA256>6985c538143c1208dcb1ac42cedad6ff52e267b47e5f970183a3e75125b43c2e</SHA256> <FileName>mpc-1.1.0.tar.gz</FileName> <FileSize>701263</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh mkdir env tar -xjvf gmp-6.1.2.tar.bz2 cd gmp-6.1.2 ./configure --prefix=$HOME/env make -j $NUM_CPU_CORES make install cd ~ tar -xjvf mpfr-4.0.0.tar.bz2 cd mpfr-4.0.0/ ./configure --prefix=$HOME/env --with-gmp=$HOME/env make -j $NUM_CPU_CORES make install cd ~ tar -xzvf mpc-1.1.0.tar.gz cd mpc-1.1.0/ ./configure --prefix=$HOME/env --with-gmp=$HOME/env make -j $NUM_CPU_CORES echo $? > ~/install-exit-status make install cd ~ echo "#!/bin/sh cd mpc-1.1.0/ make bench > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > mpcbench chmod +x mpcbench
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.6.0m1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>global score #_RESULT_#</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.6.0m1--> <PhoronixTestSuite> <TestInformation> <Title>GNU MPC</Title> <AppVersion>1.1.0</AppVersion> <Description>GNU MPC is a C library for the arithmetic of complex numbers.</Description> <ResultScale>Global Score</ResultScale> <Proportion>HIB</Proportion> <SubTitle>Multi-Precision Benchmark</SubTitle> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.1</Version> <SupportedPlatforms>Linux, BSD, MacOSX, Solaris</SupportedPlatforms> <SoftwareType>Benchmark</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities</ExternalDependencies> <EnvironmentSize>51</EnvironmentSize> <ProjectURL>http://www.multiprecision.org/mpc/</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> </PhoronixTestSuite>