Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
x265
FFmpeg
Newest Tests
LiteRT
WarpX
Epoch
Valkey
Whisperfile
XNNPACK
Recently Updated Tests
ASTC Encoder
SVT-AV1
Unvanquished
Primesieve
XNNPACK
oneDNN
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
Xcompact3d Incompact3d 2.0.2
pts/incompact3d-2.0.2
- 18 March 2021 -
Use 193 option rather than 192.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0m1--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/Incompact3d-20210311.tar.xz</URL> <MD5>b9800bcf43d5c9b53202369453f74811</MD5> <SHA256>f7bae505738ed4c27d0f4fa5c2f152602a9a7531ba2a4e1402419e1ad234151a</SHA256> <FileName>Incompact3d-20210311.tar.xz</FileName> <FileSize>481772</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf Incompact3d-20210311.tar.xz cd Incompact3d-20210311 # Current Xcompact3d code runs into errors on Ubuntu with default -O3 level for now... sed -i 's/-O3/-O2/g' Makefile # Multiple make jobs yields errors for this test... make echo $? > ~/install-exit-status # Avoid possible memory issues cp input.i3d input_129_nodes.i3d sed -i 's/nx=513/nx=129/g' input_129_nodes.i3d sed -i 's/ny=513/ny=129/g' input_129_nodes.i3d sed -i 's/nz=513/nz=129/g' input_129_nodes.i3d # Avoid possible memory issues cp input.i3d input_193_nodes.i3d sed -i 's/nx=513/nx=193/g' input_193_nodes.i3d sed -i 's/ny=513/ny=193/g' input_193_nodes.i3d sed -i 's/nz=513/nz=193/g' input_193_nodes.i3d cd ~/ cat>incompact3d<<EOT #!/bin/sh cd Incompact3d-20210311 mpirun --allow-run-as-root -np \$NUM_CPU_PHYSICAL_CORES xcompact3d \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status EOT chmod +x incompact3d
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0m1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate> Total wallclock (s): #_RESULT_#</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0m1--> <PhoronixTestSuite> <TestInformation> <Title>Xcompact3d Incompact3d</Title> <AppVersion>2021-03-11</AppVersion> <Description>Xcompact3d Incompact3d is a Fortran-MPI based, finite difference high-performance code for solving the incompressible Navier-Stokes equation and as many as you need scalar transport equations.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>2.0.2</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Scientific</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>fortran-compiler, openmpi-development, fftw3-development, build-utilities</ExternalDependencies> <EnvironmentSize>20</EnvironmentSize> <ProjectURL>https://github.com/xcompact3d</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Input</DisplayName> <Identifier>input</Identifier> <Menu> <Entry> <Name>input.i3d 129 Cells Per Direction</Name> <Value>input_129_nodes.i3d</Value> <Message>Intended For Small Systems</Message> </Entry> <Entry> <Name>input.i3d 193 Cells Per Direction</Name> <Value>input_193_nodes.i3d</Value> </Entry> <Entry> <Name>X3D-benchmarking input.i3d</Name> <Value>input.i3d</Value> <Message>Requires ~96GB of Available RAM</Message> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>