Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Flexible IO Tester
Timed Linux Kernel Compilation
Blender
7-Zip Compression
SVT-AV1
FFmpeg
Newest Tests
OpenVINO GenAI
Rustls
LiteRT
WarpX
Epoch
Valkey
Recently Updated Tests
srsRAN Project
VVenC
x265
RELION
Llamafile
Llama.cpp
New & Recently Updated Tests
Recently Updated Suites
Machine Learning
Server Motherboard
HPC - High Performance Computing
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
Remhos 1.0.0
pts/remhos-1.0.0
- 18 June 2023 -
Initial commit of Remhos mini app HPC benchmark.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://github.com/hypre-space/hypre/archive/refs/tags/v2.28.0.tar.gz</URL> <MD5>82cb3018fb1a0bf4aeb49d51d291784a</MD5> <SHA256>2eea68740cdbc0b49a5e428f06ad7af861d1e169ce6a12d2cf0aa2fc28c4a2ae</SHA256> <FileName>hypre-2.28.0.tar.gz</FileName> <FileSize>6801191</FileSize> </Package> <Package> <URL>https://github.com/mfem/tpls/raw/gh-pages/metis-4.0.3.tar.gz</URL> <MD5>d3848b454532ef18dc83e4fb160d1e10</MD5> <SHA256>5efa35de80703c1b2c4d0de080fafbcf4e0d363a21149a1ad2f96e0144841a55</SHA256> <FileName>metis-4.0.3.tar.gz</FileName> <FileSize>522624</FileSize> </Package> <Package> <URL>https://github.com/mfem/mfem/archive/refs/tags/v4.5.2.tar.gz</URL> <MD5>b12476c049c8ac5b1768a7d284211b6b</MD5> <SHA256>9431d72a2834078f25c58430767bf2fd62bf43a0feb003189a86847c68b8af4a</SHA256> <FileName>mfem-4.5.2.tar.gz</FileName> <FileSize>3311168</FileSize> </Package> <Package> <URL>https://github.com/CEED/Remhos/archive/57d44084239b42a5e7374d46c793d94102dc939c.zip</URL> <MD5>5998a09de5c1ffc7e5806fe748dc38fc</MD5> <SHA256>3054882bd720132dc6c25aede84365d5597ce9d687e39664b7f05d51a5dca5bb</SHA256> <FileName>Remhos-57d44084239b42a5e7374d46c793d94102dc939c.zip</FileName> <FileSize>2565348</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/bash tar -xf hypre-2.28.0.tar.gz rm -rf hypre mv hypre-2.28.0 hypre cd hypre/src/ ./configure --disable-fortran --enable-bigint make -j $NUM_CPU_CORES cd ~ tar -xf metis-4.0.3.tar.gz mv metis-4.0.3 metis-4.0 cd metis-4.0 make cd ~ tar -xf mfem-4.5.2.tar.gz rm -rf mfem mv mfem-4.5.2 mfem cd mfem make parallel -j cd ~ unzip -o Remhos-57d44084239b42a5e7374d46c793d94102dc939c.zip cd Remhos-57d44084239b42a5e7374d46c793d94102dc939c make echo $? > ~/install-exit-status cd ~ cat>remhos<<EOT #!/bin/sh cd Remhos-57d44084239b42a5e7374d46c793d94102dc939c mpirun --allow-run-as-root -np \$NUM_CPU_PHYSICAL_CORES ./remhos \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status EOT chmod +x remhos
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>Remhos</Title> <AppVersion>1.0</AppVersion> <Description>Remhos (REMap High-Order Solver) is a miniapp that solves the pure advection equations that are used to perform monotonic and conservative discontinuous field interpolation (remap) as part of the Eulerian phase in Arbitrary Lagrangian Eulerian (ALE) simulations.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Scientific</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>openmpi-development, cmake, build-utilities</ExternalDependencies> <EnvironmentSize>226</EnvironmentSize> <ProjectURL>https://ceed.exascaleproject.org/miniapps/</ProjectURL> <RepositoryURL>https://github.com/CEED/Remhos</RepositoryURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Test</DisplayName> <Identifier>test</Identifier> <Menu> <Entry> <Name>Sample Remap Example</Name> <Value>-m ./data/inline-quad.mesh -p 14 -rs 2 -rp 1 -dt 0.0005 -tf 0.6 -ho 1 -lo 2 -fct 3</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>