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.1.0
pts/cloudsuite-ga-1.1.0
- 04 February 2023 -
Update against CloudSuite 4.0 upstream state.
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:4.0 docker pull cloudsuite/twitter-dataset-graph:4.0 echo $? > ~/install-exit-status echo "#!/bin/bash export HOME=\$DEBUG_REAL_HOME # Start docker create --name twitter-data cloudsuite/twitter-dataset-graph:4.0 # Run benchmark MEMORY_LIMIT=\`echo \"scale=0;\$SYS_MEMORY / 1024 * 0.91\" |bc -l | cut -d'.' -f1\` echo \"Memory Limit is \${MEMORY_LIMIT}g\" docker run --rm --volumes-from twitter-data -e WORKLOAD_NAME=\$1 cloudsuite/graph-analytics:4.0 --driver-memory \${MEMORY_LIMIT}g --executor-memory \${MEMORY_LIMIT}g > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status # Stop them docker stop twitter-data docker container rm twitter-data" > cloudsuite-ga chmod +x cloudsuite-ga
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Running time = #_RESULT_#</OutputTemplate> <StripFromResult>ms</StripFromResult> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>CloudSuite Graph Analytics</Title> <AppVersion>4.0</AppVersion> <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.1.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> <RepositoryURL>https://github.com/parsa-epfl/cloudsuite</RepositoryURL> <InternalTags>Cloud, Docker</InternalTags> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>docker</SystemDependencies> </TestProfile> <TestSettings> <Option> <DisplayName>GraphX Algorithm</DisplayName> <Identifier>algo</Identifier> <Menu> <Entry> <Name>Page Rank</Name> <Value>pr</Value> </Entry> <Entry> <Name>Connected Components</Name> <Value>cc</Value> </Entry> <Entry> <Name>Triangle Count</Name> <Value>tc</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>