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
CloudSuite Graph Analytics 1.0.0
pts/cloudsuite-ga-1.0.0
- 01 November 2019 -
Initial commit of CloudSuite Graph Analytics benchmark.
install.sh
#!/bin/sh if which docker>/dev/null 2>&1 ; then echo 0 > ~/install-exit-status else echo "ERROR: Docker is not found on the system! This test profile needs a working docker installation in the PATH." echo 2 > ~/install-exit-status exit fi docker pull cloudsuite/graph-analytics docker pull cloudsuite/twitter-dataset-graph echo $? > ~/install-exit-status echo "#!/bin/bash export HOME=\$DEBUG_REAL_HOME # Start docker create --name data-ga cloudsuite/twitter-dataset-graph # Run benchmark docker run --rm --volumes-from data-ga cloudsuite/graph-analytics --driver-memory 16g --executor-memory 16g \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status # Stop them docker stop data-ga docker container rm data-ga " > cloudsuite-ga chmod +x cloudsuite-ga
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.2.0m1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Running time = #_RESULT_#</OutputTemplate> <StripFromResult>ms</StripFromResult> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.2.0m1--> <PhoronixTestSuite> <TestInformation> <Title>CloudSuite Graph Analytics</Title> <Description>CloudSuite Graph Analytics uses Apache GraphX + Spark to perform graph analytics (PageRank) on sample Twitter data.</Description> <ResultScale>ms</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <RequiresInternet>TRUE</RequiresInternet> <EnvironmentSize>700</EnvironmentSize> <ProjectURL>https://github.com/parsa-epfl/cloudsuite/blob/master/docs/benchmarks/graph-analytics.md</ProjectURL> <InternalTags>Cloud, Docker</InternalTags> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>docker</SystemDependencies> </TestProfile> </PhoronixTestSuite>