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
HeFFTe - Highly Efficient FFT for Exascale 1.0.0
pts/heffte-1.0.0
- 18 June 2023 -
Initial commit of HeFFTe benchmark.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://github.com/icl-utk-edu/heffte/archive/refs/tags/v2.3.0.tar.gz</URL> <MD5>64bf2a8ca8f586a1ea731980e9a1d0a0</MD5> <SHA256>63db8c9a8822211d23e29f7adf5aa88bb462c91d7a18c296c3ef3a06be8d6171</SHA256> <FileName>heffte-2.3.0.tar.gz</FileName> <FileSize>268045</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf heffte-2.3.0.tar.gz cd heffte-2.3.0 mkdir build cd build CMAKE_FLAGS="-DHeffte_ENABLE_FFTW=ON " if grep avx /proc/cpuinfo > /dev/null then CMAKE_FLAGS="$CMAKE_FLAGS -DHeffte_ENABLE_AVX=ON" fi if grep avx512 /proc/cpuinfo > /dev/null then CMAKE_FLAGS="$CMAKE_FLAGS -DHeffte_ENABLE_AVX512=ON" fi cmake .. -DCMAKE_BUILD_TYPE=Release $CMAKE_FLAGS make -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh cd heffte-2.3.0/build/benchmarks OMP_NUM_THREADS=\$CPU_THREADS_PER_CORE mpirun --allow-run-as-root -np \$NUM_CPU_PHYSICAL_CORES speed3d_\$@ -n50 > \$LOG_FILE echo \$? > ~/test-exit-status" > heffte chmod +x heffte
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Performance: #_RESULT_# GFlops/s</OutputTemplate> <TurnCharsToSpace>=</TurnCharsToSpace> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>HeFFTe - Highly Efficient FFT for Exascale</Title> <AppVersion>2.3</AppVersion> <Description>HeFFTe is the Highly Efficient FFT for Exascale software developed as part of the Exascale Computing Project. This test profile uses HeFFTe's built-in speed benchmarks under a variety of configuration options and currently catering to CPU/processor testing.</Description> <ResultScale>GFLOP/s</ResultScale> <Proportion>HIB</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>build-utilities, fortran-compiler, openmpi-development, cmake, fftw3-development</ExternalDependencies> <EnvironmentSize>35</EnvironmentSize> <ProjectURL>https://icl.utk.edu/fft/</ProjectURL> <RepositoryURL>https://github.com/icl-utk-edu/heffte</RepositoryURL> <InternalTags>SMP, MPI</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Test</DisplayName> <Identifier>test</Identifier> <Menu> <Entry> <Name>r2c</Name> <Value>r2c</Value> </Entry> <Entry> <Name>c2c</Name> <Value>c2c</Value> </Entry> </Menu> </Option> <Option> <DisplayName>Backend</DisplayName> <Identifier>backend</Identifier> <Menu> <Entry> <Name>Stock</Name> <Value>stock</Value> </Entry> <Entry> <Name>FFTW</Name> <Value>fftw</Value> </Entry> </Menu> </Option> <Option> <DisplayName>Precision</DisplayName> <Identifier>precision</Identifier> <Menu> <Entry> <Name>float</Name> <Value>float</Value> </Entry> <Entry> <Name>float-long</Name> <Value>float-long</Value> </Entry> <Entry> <Name>double</Name> <Value>double</Value> </Entry> <Entry> <Name>double-long</Name> <Value>double-long</Value> </Entry> </Menu> </Option> <Option> <DisplayName>X Y Z</DisplayName> <Identifier>size</Identifier> <Menu> <Entry> <Name>128</Name> <Value>128 128 128</Value> </Entry> <Entry> <Name>256</Name> <Value>256 256 256</Value> </Entry> <Entry> <Name>512</Name> <Value>512 512 512</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>