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
Numpy Benchmark 1.0.5
pts/numpy-1.0.5
- 08 April 2018 -
Actually numpy should be working fine now on BSD
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m2--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/numpy-benchmarks-20160218.tar.gz</URL> <MD5>825d2ea40e75aa3ba13b8bb9eb01ed78</MD5> <SHA256>5ad3ad591cbe9415deaedc2bc5c29472dda40c14bc668ce8f119c6bdc0df3d34</SHA256> <FileSize>13090</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xvf numpy-benchmarks-20160218.tar.gz cd numpy-benchmarks-master/ patch -p1 <<'EOT' --- a/run.py +++ b/run.py @@ -111,7 +111,7 @@ def run(filenames, extractors): setup, run, content = e(filename) open(where, 'w').write(content) e.compile(where) - shelllines.append('printf "{function} {extractor} " && PYTHONPATH=..:$PYTHONPATH python -m benchit -r 11 -n 40 -s "{setup}; from {module} import {function} ; {run}" "{run}" 2>/dev/null || echo unsupported'.format(setup=setup, module=tmpmodule, function=function, run=run, extractor=extractor.name)) + shelllines.append('printf "{function} {extractor} " && PYTHONPATH=..:$PYTHONPATH python2 -m benchit -r 11 -n 40 -s "{setup}; from {module} import {function} ; {run}" "{run}" 2>/dev/null || echo unsupported'.format(setup=setup, module=tmpmodule, function=function, run=run, extractor=extractor.name)) except: shelllines.append('echo "{function} {extractor} unsupported"'.format(function=function, extractor=extractor.name)) EOT cd ~ echo $? > ~/install-exit-status echo "#!/bin/sh cd numpy-benchmarks-master/ python2 run.py -t python > numpy_log echo 'Test name : Avg time ( nanoseconds )' cat numpy_log | awk 'BEGIN{total_avg_time=0} {print \$1\":\"\$4;total_avg_time+=\$4;} END{printf(\"\n\n-------------------\nTotal avg time (nanoseconds): %.02f\n\", total_avg_time);}' \$@ > \$LOG_FILE echo \$? > ~/test-exit-status " > numpy chmod +x numpy
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m2--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Total avg time (nanoseconds): #_RESULT_#</OutputTemplate> <ResultPrecision>4</ResultPrecision> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m2--> <PhoronixTestSuite> <TestInformation> <Title>Numpy Benchmark</Title> <Description>This is a test to obtain the general Numpy performance.</Description> <ResultScale>Nanoseconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>1</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.5</Version> <SupportedPlatforms>Linux, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>python</ExternalDependencies> <EnvironmentSize>12.4</EnvironmentSize> <ProjectURL>http://github.com/serge-sans-paille/</ProjectURL> <Maintainer>Victor Rodriguez Bahena</Maintainer> </TestProfile> </PhoronixTestSuite>