Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Flexible IO Tester
Llama.cpp
Timed Linux Kernel Compilation
Blender
Hashcat
PostgreSQL
Newest Tests
OpenVINO GenAI
Rustls
LiteRT
Recently Updated Tests
OpenRadioss
QuantLib
GROMACS
FLAC Audio Encoding
FluidX3D
QMCPACK
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
GROMACS 1.10.0
pts/gromacs-1.10.0
- 12 February 2025 -
Update against GROMACS 2025 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://ftp.gromacs.org/gromacs/gromacs-2025.0.tar.gz</URL> <MD5>4e9f043fea964cb2b4dd72d6f39ea006</MD5> <SHA256>a27ad35a646295bbec129abe684d9d03d1e2e0bd76b0d625e9055746aaefae82</SHA256> <FileName>gromacs-2025.0.tar.gz</FileName> <FileSize>44417653</FileSize> </Package> <Package> <URL>http://ftp.gromacs.org/pub/benchmarks/water_GMX50_bare.tar.gz</URL> <MD5>d843376d598299d6a209dae063157dc5</MD5> <SHA256>2219c10acb97787f80f6638132bad3ff2ca1e68600eef1bc8b89d9560e74c66a</SHA256> <FileName>water_GMX50_bare.tar.gz</FileName> <FileSize>138438061</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf gromacs-2025.0.tar.gz tar -xf water_GMX50_bare.tar.gz mkdir mpi-build cd mpi-build cmake ../gromacs-2025.0 -DGMX_OPENMP=OFF -DGMX_MPI=ON -DGMX_GPU=OFF -DGMX_BUILD_OWN_FFTW=ON -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON make -j $NUM_CPU_CORES echo $? > ~/install-exit-status echo "#!/bin/sh mpirun --allow-run-as-root -np \$NUM_CPU_PHYSICAL_CORES \$HOME/mpi-build/bin/gmx_mpi grompp -f pme.mdp -o bench.tpr mpirun --allow-run-as-root -np \$NUM_CPU_PHYSICAL_CORES \$HOME/mpi-build/bin/gmx_mpi mdrun -resethway -npme 0 -notunepme -noconfout -nsteps 1000 -v -s bench.tpr " > run-gromacs chmod +x run-gromacs cd ~ mkdir cuda-build if ! which nvcc >/dev/null 2>&1 ; then if [ -d /usr/local/cuda ] then export LD_LIBRARY_PATH=/usr/local/cuda/lib64/:$LD_LIBRARY_PATH export PATH=/usr/local/cuda/bin/:$PATH fi fi if which nvcc >/dev/null 2>&1 ; then cd cuda-build cmake ../gromacs-2025.0 -DGMX_MPI=OFF -DGMX_OPENMP=ON -DGMX_GPU=CUDA -DGMX_BUILD_OWN_FFTW=ON -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON make -j $NUM_CPU_CORES echo "#!/bin/sh \$HOME/cuda-build/bin/gmx grompp -f pme.mdp \$HOME/cuda-build/bin/gmx mdrun -resethway -noconfout -nsteps 4000 -v -pin on -nb gpu " > run-gromacs chmod +x run-gromacs cd ~ fi echo "#!/bin/sh unset OMP_NUM_THREADS cd \$2 rm -f *bench.tpr* \$HOME/\$1/run-gromacs > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > gromacs chmod +x gromacs
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Performance: #_RESULT_# 3.682</OutputTemplate> <LineHint>Performance:</LineHint> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <TestInformation> <Title>GROMACS</Title> <AppVersion>2025</AppVersion> <Description>The GROMACS (GROningen MAchine for Chemical Simulations) molecular dynamics package testing with the water_GMX50 data. This test profile allows selecting between CPU and GPU-based GROMACS builds.</Description> <ResultScale>Ns Per Day</ResultScale> <Proportion>HIB</Proportion> <SubTitle>Water Benchmark</SubTitle> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.10.0</Version> <SupportedPlatforms>Linux, BSD, MacOSX</SupportedPlatforms> <SoftwareType>Benchmark</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, cmake, openmpi-development</ExternalDependencies> <EnvironmentSize>1100</EnvironmentSize> <ProjectURL>https://www.gromacs.org/</ProjectURL> <RepositoryURL>https://github.com/gromacs/gromacs</RepositoryURL> <InternalTags>SMP, MPI</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Implementation</DisplayName> <Identifier>implementation</Identifier> <Menu> <Entry> <Name>MPI CPU</Name> <Value>mpi-build</Value> </Entry> <Entry> <Name>NVIDIA CUDA GPU</Name> <Value>cuda-build</Value> </Entry> </Menu> </Option> <Option> <DisplayName>Input</DisplayName> <Identifier>input</Identifier> <Menu> <Entry> <Name>water_GMX50_bare</Name> <Value>water-cut1.0_GMX50_bare/1536</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>