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
Open Porous Media Git 1.3.16
pts/opm-git-1.3.16
- 16 August 2017 -
Various upstream fixes
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v7.2.0m3--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://gforge.inria.fr/frs/download.php/file/34618/scotch_6.0.4.tar.gz, http://pkgs.fedoraproject.org/repo/pkgs/scotch/scotch_6.0.4.tar.gz/d58b825eb95e1db77efe8c6ff42d329f/scotch_6.0.4.tar.gz</URL> <MD5>d58b825eb95e1db77efe8c6ff42d329f</MD5> <SHA256>f53f4d71a8345ba15e2dd4e102a35fd83915abf50ea73e1bf6efe1bc2b4220c7</SHA256> <FileSize>4804966</FileSize> </Package> <Package> <URL>http://www.cs.sandia.gov/~kddevin/Zoltan_Distributions/zoltan_distrib_v3.8.tar.gz, http://ftp.mcs.anl.gov/pub/petsc/externalpackages/zoltan_distrib_v3.8.tar.gz</URL> <MD5>9d8fba8a990896881b85351d4327c4a9</MD5> <SHA256>5bdd46548fb9c73b225bbcf3d206c558c318cb292f0b19645e536315d14aafb7</SHA256> <FileSize>5407789</FileSize> </Package> <Package> <URL></URL> <FileName>omega-opm.tar.gz</FileName> <FileSize>440350494</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh # Clean up in case of any Git issues rm -rf opm-data rm -rf opm-parser rm -rf opm-output rm -rf opm-common rm -rf opm-core rm -rf opm-material rm -rf opm-upscaling rm -rf opm-grid rm -rf opm-simulators rm -rf opm-polymer rm -rf libecl rm -rf ewoms rm -rf dune-common rm -rf dune-geometry rm -rf dune-grid rm -rf dune-istl # Download source from github FOOTNOTE_INFO="Build Time `date`; " cd ~ # Set cmake variables to file opts.cmake if [ -x /usr/bin/cmake ] then CMAKE=cmake elif [ -x /usr/bin/cmake28 ] then # On some RHEL 6 systems they seem to have cmake28 but not cmake CMAKE=cmake28 else # Fallback CMAKE=cmake fi # Build all modules #!/bin/bash # Install prerequisites # sudo apt-get install build-essential cmake git wget libblas-dev liblapack-dev libsuitesparse-dev libtrilinos-zoltan-dev mpi-default-dev # sudo apt-get install build-essential cmake git wget libblas-dev liblapack-dev libsuitesparse-dev # sudo apt-get remove libdune-common-dev libdune-grid-dev libdune-geometry-dev libdune-istl-dev # apt-get install libtrilinos-zoltan-dev mpi-default-dev # Download and build a know good version of Boost wget https://sourceforge.net/projects/boost/files/boost/1.58.0/boost_1_58_0.tar.gz/download tar -xzf download cd boost_1_58_0 ./bootstrap.sh --prefix=../Install ./b2 -j $NUM_CPU_CORES ; ./b2 install ; cd .. #Download and build necessary Dune modules version 2.4.1 for repo in dune-common dune-geometry dune-grid dune-istl do git clone https://gitlab.dune-project.org/core/$repo.git mkdir $repo/build ; cd $repo/build git checkout v2.4.1 cmake -DCMAKE_INSTALL_PREFIX=../../Install \ -DDUNE_GRID_EXPERIMENTAL_GRID_EXTENSIONS=TRUE \ -DCMAKE_PREFIX_PATH=../../Install .. make -j $NUM_CPU_CORES ; make install ; cd ../.. done #Download and build libecl from git git clone https://github.com/Statoil/libecl.git mkdir libecl/build ; cd libecl/build cmake .. make -j $NUM_CPU_CORES ; cd ../.. #Download and build opm simulators with MPI support from git for repo in opm-data opm-common opm-parser opm-grid opm-output opm-material opm-core ewoms opm-simulators do git clone https://github.com/OPM/$repo.git mkdir $repo/build && cd $repo/build cmake -DCMAKE_CXX_FLAGS="-O3 -DNDEBUG -mtune=native" \ -DCMAKE_PREFIX_PATH=../Install \ -DUSE_MPI=ON .. make -j $NUM_CPU_CORES ; cd ../.. echo $? > ~/install-exit-status done echo $FOOTNOTE_INFO > ~/install-footnote # SETUP OMEGA IF PRESENT cd $HOME tar -xvf omega-opm.tar.gz ###################################################### # Run benchmark ###################################################### echo "#!/bin/sh OMP_NUM_THREADS=\$2 if [ ! \"X\$HOSTFILE\" = \"X\" ] && [ -f \$HOSTFILE ] then HOSTFILE=\"--hostfile \$HOSTFILE\" elif [ -f /etc/hostfile ] then HOSTFILE=\"--hostfile /etc/hostfile\" else HOSTFILE=\"\" fi MPIRUN_AS_ROOT_ARG=\"--allow-run-as-root\" if [ `whoami` != \"root\" ] then MPIRUN_AS_ROOT_ARG=\"\" fi if [ \$1 = \"upscale_relperm_benchmark\" ] then nice mpirun \$MPIRUN_AS_ROOT_ARG -np \$OMP_NUM_THREADS --map-by socket --report-bindings \$HOSTFILE ./opm-upscaling/build/bin/upscale_relperm_benchmark > \$LOG_FILE 2>&1 elif [ \$1 = \"flow_mpi_norne\" ] then cd opm-data/norne nice mpirun \$MPIRUN_AS_ROOT_ARG -np \$OMP_NUM_THREADS --map-by socket --report-bindings \$HOSTFILE ../../opm-simulators/build/bin/flow NORNE_ATW2013.DATA > \$LOG_FILE 2>&1 elif [ \$1 = \"flow_ebos_extra\" ] then cd omega-opm nice mpirun \$MPIRUN_AS_ROOT_ARG -np \$OMP_NUM_THREADS --map-by socket --report-bindings \$HOSTFILE ../opm-simulators/build/bin/flow OMEGA-0.DATA > \$LOG_FILE 2>&1 elif [ \$1 = \"flow_mpi_extra\" ] then cd omega-opm nice mpirun \$MPIRUN_AS_ROOT_ARG -np \$OMP_NUM_THREADS --map-by socket --report-bindings \$HOSTFILE ../opm-simulators/build/bin/flow OMEGA-0.DATA > \$LOG_FILE 2>&1 fi # echo \$? > ~/test-exit-status" > opm-git chmod +x opm-git
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v7.2.0m3--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Total wallclock time: #_RESULT_# sec (52 min 59.02 sec)</OutputTemplate> <MatchToTestArguments>upscale_relperm_benchmark</MatchToTestArguments> <LineHint>Total wallclock time</LineHint> </ResultsParser> <ResultsParser> <OutputTemplate>Total time taken (seconds): #_RESULT_#</OutputTemplate> <LineHint>Total time</LineHint> </ResultsParser> <ResultsParser> <OutputTemplate>Total time (seconds): #_RESULT_#</OutputTemplate> <LineHint>Total time</LineHint> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v7.2.0m3--> <PhoronixTestSuite> <TestInformation> <Title>Open Porous Media Git</Title> <Description>This is a test of a DUNE (Distributed and Unified Numerics Environment) module called OPM Benchmarks from the Open Porous Media project. Open Porous Media is a set of open-source tools concerning simulation of flow and transport of fluids in porous media. This test profile builds OPM and its dependencies from upstream Git.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.3.16</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, fortran-compiler, cmake, boost-development, suitesparse, tinyxml, openmpi-development, blas-development, lapack-development</ExternalDependencies> <EnvironmentSize>2000</EnvironmentSize> <ProjectURL>http://www.opm-project.org/</ProjectURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>OPM Benchmark</DisplayName> <Identifier>opm-benchmark</Identifier> <ArgumentPrefix></ArgumentPrefix> <ArgumentPostfix></ArgumentPostfix> <DefaultEntry>0</DefaultEntry> <Menu> <Entry> <Name>Upscale-Relperm</Name> <Value>upscale_relperm_benchmark</Value> <Message></Message> </Entry> <Entry> <Name>Flow MPI Norne</Name> <Value>flow_mpi_norne</Value> <Message></Message> </Entry> <Entry> <Name>Flow MPI Extra</Name> <Value>flow_mpi_extra</Value> <Message></Message> </Entry> <Entry> <Name>Flow Ebos Extra</Name> <Value>flow_ebos_extra</Value> <Message></Message> </Entry> </Menu> </Option> <Option> <DisplayName>Threads</DisplayName> <Identifier>threads</Identifier> <ArgumentPrefix></ArgumentPrefix> <ArgumentPostfix></ArgumentPostfix> <DefaultEntry>0</DefaultEntry> <Menu> <Entry> <Name>1</Name> <Value>1</Value> <Message></Message> </Entry> <Entry> <Name>2</Name> <Value>2</Value> <Message></Message> </Entry> <Entry> <Name>4</Name> <Value>4</Value> <Message></Message> </Entry> <Entry> <Name>8</Name> <Value>8</Value> <Message></Message> </Entry> <Entry> <Name>16</Name> <Value>16</Value> <Message></Message> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>