diff options
author | William PC <w_calandrini[at]hotmail[dot]com> | 2022-12-09 00:34:40 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-12-10 07:43:13 +0700 |
commit | 81b2fb8232799ad5865f5ce304e15883e9077771 (patch) | |
tree | 64fa97e8299de950156735ba32cf4736a03e8fff /libraries | |
parent | cffa5dcb8242d200dc2b01d5827899c3758659ec (diff) |
libraries/spfft: Added (Sparse 3D FFT library)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/spfft/README | 21 | ||||
-rw-r--r-- | libraries/spfft/slack-desc | 19 | ||||
-rw-r--r-- | libraries/spfft/spfft.SlackBuild | 154 | ||||
-rw-r--r-- | libraries/spfft/spfft.info | 10 |
4 files changed, 204 insertions, 0 deletions
diff --git a/libraries/spfft/README b/libraries/spfft/README new file mode 100644 index 000000000000..4b6a15cccc1e --- /dev/null +++ b/libraries/spfft/README @@ -0,0 +1,21 @@ + SpFFT - A 3D FFT library for sparse frequency domain data written +in C++ with support for MPI, OpenMP, CUDA and ROCm. + + Inspired by the need of some computational material science +applications with spherical cutoff data in frequency domain, SpFFT +provides Fast Fourier Transformations of sparse frequency domain data. +For distributed computations with MPI, slab decomposition in space +domain and pencil decomposition in frequency domain (sparse data +within a pencil / column must be on one rank) is used. + + + By default the package is compiled with single-precision float-point +operations and a sequential version. If you want to change it use the +following environment variable options: + - DP=yes, use double-precision. + - OMP=yes, use openmp. + + Options that requires extra packages: + - MPI=yes, use MPI (requires a MPI implementation either mpich or + openmpi). + - CUDA=yes, requires CUDA Toolkit diff --git a/libraries/spfft/slack-desc b/libraries/spfft/slack-desc new file mode 100644 index 000000000000..e128e89d4321 --- /dev/null +++ b/libraries/spfft/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +spfft: spfft (Sparse 3D FFT library) +spfft: +spfft: +spfft: +spfft: SpFFT - A 3D FFT library for sparse frequency domain data written +spfft: in C++ with support for MPI, OpenMP, CUDA and ROCm. +spfft: +spfft: +spfft: +spfft: +spfft: diff --git a/libraries/spfft/spfft.SlackBuild b/libraries/spfft/spfft.SlackBuild new file mode 100644 index 000000000000..5faa837c321b --- /dev/null +++ b/libraries/spfft/spfft.SlackBuild @@ -0,0 +1,154 @@ +#!/bin/bash + +# Slackware build script for SpFFT + +# Copyright 2022 William PC, Seattle (USA) +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=spfft +VERSION=${VERSION:-1.0.6} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +SRCNAM=SpFFT + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +# If the variable PRINT_PACKAGE_NAME is set, then this script will report what +# the name of the created package would be, and then exit. This information +# could be useful to other scripts. +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $SRCNAM-$VERSION +tar xvf $CWD/$SRCNAM-$VERSION.tar.gz +cd $SRCNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + + +if [ "${DP:-no}" == "yes" ]; then + CMAKE_OPTS="-DSPFFT_SINGLE_PRECISION:BOOL=OFF" +else + CMAKE_OPTS="-DSPFFT_SINGLE_PRECISION:BOOL=ON" +fi + +if [ "${OMP:-no}" == "yes" ]; then + CMAKE_OPTS="$CMAKE_OPTS -DSPFFT_OMP:BOOL=ON" +else + CMAKE_OPTS="$CMAKE_OPTS -DSPFFT_OMP:BOOL=OFF" +fi + +if [ "${MPI:-no}" == "yes" ]; then + CMAKE_OPTS="$CMAKE_OPTS -DSPFFT_MPI:BOOL=ON" +else + CMAKE_OPTS="$CMAKE_OPTS -DSPFFT_MPI:BOOL=OFF" +fi + +if [ "${CUDA:-no}" == "yes" ]; then + CMAKE_OPTS="$CMAKE_OPTS -DSPFFT_GPU_BACKEND:STRING=CUDA" +fi + +if [ "${ROCM:-no}" == "yes" ]; then + CMAKE_OPTS="$CMAKE_OPTS -DSPFFT_GPU_BACKEND:STRING=ROCM" +fi + +mkdir -p build +cd build + cmake \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib${LIBDIRSUFFIX} \ + -DCMAKE_INSTALL_MANDIR=/usr/man \ + -DSPFFT_FORTRAN:BOOL=ON \ + $CMAKE_OPTS \ + -DCMAKE_BUILD_TYPE=Release .. + make + make install/strip DESTDIR=$PKG +cd .. + +mkdir -p $PKG/usr/share/$PRGNAM +cp -av examples $PKG/usr/share/$PRGNAM +cat >> $PKG/usr/share/$PRGNAM/examples/Makefile <<EOF +all: + cc example.c -o example -lspfft + gcc example.cpp -o example_cpp -lstdc++ -lspfft + gfortran example.f90 -o example_f -I/usr/include/spfft -lspfft +EOF + + +# Don't ship .la files: +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + +# Strip binaries and libraries - this can be done with 'make install-strip' +# in many source trees, and that's usually acceptable, if not, use this: +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + LICENSE README.md \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/libraries/spfft/spfft.info b/libraries/spfft/spfft.info new file mode 100644 index 000000000000..34e49e62d707 --- /dev/null +++ b/libraries/spfft/spfft.info @@ -0,0 +1,10 @@ +PRGNAM="spfft" +VERSION="1.0.6" +HOMEPAGE="https://github.com/eth-cscs/SpFFT" +DOWNLOAD="https://github.com/eth-cscs/SpFFT/archive/v1.0.6/SpFFT-1.0.6.tar.gz" +MD5SUM="d05a25d903e392a41fe343af35ca9b99" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="William PC" +EMAIL="w_calandrini[at]hotmail[dot]com" |