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
Timed CPython Compilation 1.0.0
pts/build-python-1.0.0
- 01 September 2022 -
Initial commit of CPython build benchmark case.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://www.python.org/ftp/python/3.10.6/Python-3.10.6.tgz</URL> <MD5>d76638ca8bf57e44ef0841d2cde557a0</MD5> <SHA256>848cb06a5caa85da5c45bd7a9221bb821e33fc2bdcba088c127c58fad44e6343</SHA256> <FileName>Python-3.10.6.tgz</FileName> <FileSize>25986768</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh echo "#!/bin/sh cd Python-3.10.6 make -j \$NUM_CPU_CORES 2>&1 echo \$? > ~/test-exit-status" > build-python chmod +x build-python
interim.sh
#!/bin/sh cd Python-3.10.6 make clean
post.sh
#!/bin/sh rm -rf Python-3.10.6
pre.sh
#!/bin/sh rm -rf Python-3.10.6 tar -xf Python-3.10.6.tgz cd Python-3.10.6 ./configure $@ make clean
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>Timed CPython Compilation</Title> <AppVersion>3.10.6</AppVersion> <Description>This test times how long it takes to build the reference Python implementation, CPython, with optimizations and LTO enabled for a release build.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>1</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.0</Version> <SupportedPlatforms>Linux, MacOSX, Solaris, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, libxml2, uuid, bzip2-development, zlib-development</ExternalDependencies> <EnvironmentSize>250</EnvironmentSize> <ProjectURL>https://www.python.org/</ProjectURL> <RepositoryURL>https://github.com/python/cpython</RepositoryURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>lzma.h, sqlite3.h, readline/readline.h</SystemDependencies> </TestProfile> <TestSettings> <Option> <DisplayName>Build Configuration</DisplayName> <Identifier>build</Identifier> <Menu> <Entry> <Name>Default</Name> </Entry> <Entry> <Name>Released Build, PGO + LTO Optimized</Name> <Value>--enable-optimizations --with-lto</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>