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 In-Memory Analytics 1.0.1
pts/cloudsuite-ma-1.0.1
- 03 November 2022 -
Update Docker location.
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 cloudsuite3/in-memory-analytics docker pull cloudsuite3/movielens-dataset echo $? > ~/install-exit-status echo "#!/bin/bash export HOME=\$DEBUG_REAL_HOME # Start docker create --name data cloudsuite3/movielens-dataset # Run in-memory analytics benchmark docker run --rm --volumes-from data cloudsuite3/in-memory-analytics /data/ml-latest-small /data/myratings.csv --driver-memory 16g --executor-memory 16g \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status # Stop them docker stop data docker container rm data " > cloudsuite-ma chmod +x cloudsuite-ma
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Benchmark execution 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 In-Memory Analytics</Title> <Description>CloudSuite In-Memory Analytics uses Apache Spark and runs a collaborative filtering algorithm in-memory on a dataset of user-movie ratings from Movielens.</Description> <ResultScale>ms</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.1</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/in-memory-analytics.md</ProjectURL> <RepositoryURL>https://github.com/parsa-epfl/cloudsuite/</RepositoryURL> <InternalTags>Cloud, Docker</InternalTags> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>docker</SystemDependencies> </TestProfile> </PhoronixTestSuite>