summaryrefslogtreecommitdiff
path: root/var/spack/packages/fftw/package.py
blob: 5f71762c4ff7332218a909db722c24fea11525a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
##############################################################################
# Copyright (c) 2013, Lawrence Livermore National Security, LLC.
# Produced at the Lawrence Livermore National Laboratory.
#
# This file is part of Spack.
# Written by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
# LLNL-CODE-647188
#
# For details, see https://github.com/llnl/spack
# Please also see the LICENSE file for our notice and the LGPL.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License (as published by
# the Free Software Foundation) version 2.1 dated February 1999.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
# conditions of the GNU General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################


from spack import *


class Fftw(Package):
    """
    FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of
    arbitrary input size, and of both real and complex data (as well as of even/odd data, i.e. the discrete cosine/sine
    transforms or DCT/DST). We believe that FFTW, which is free software, should become the FFT library of choice for
    most applications.
    """
    homepage = "http://www.fftw.org"
    url      = "http://www.fftw.org/fftw-3.3.4.tar.gz"

    version('3.3.4', '2edab8c06b24feeb3b82bbb3ebf3e7b3')

    ##########
    # Floating point precision
    FLOAT = 'float'
    LONG_DOUBLE = 'long_double'
    QUAD_PRECISION = 'quad'
    PRECISION_OPTIONS = {
        FLOAT: '--enable-float',
        LONG_DOUBLE: '--enable--long-double',
        QUAD_PRECISION: '--enable-quad-precision'
    }
    variant(FLOAT, default=False, description='Produces a single precision version of the library')
    variant(LONG_DOUBLE, default=False, description='Produces a long double precision version of the library')
    variant(QUAD_PRECISION, default=False, description='Produces a quad precision version of the library (works only with GCC and libquadmath)')
    ##########

    variant('mpi', default=False, description='Activate MPI support')

    depends_on('mpi', when='+mpi')

    @staticmethod
    def enabled(x):
        """
        Given a variant name returns the string that means the variant is enabled

        :param x: variant name
        """
        # FIXME : duplicated from MVAPICH2
        return '+' + x

    def check_fortran_availability(self, options):
        if not self.compiler.f77 or not self.compiler.fc:
            options.append("--disable-fortran")

    def set_floating_point_precision(self, spec, options):
        l = [option for variant, option in Fftw.PRECISION_OPTIONS.iteritems() if self.enabled(variant) in spec]
        if len(l) > 1:
            raise RuntimeError('At most one floating point precision variant may activated per build.')
        options.extend(l)

    def install(self, spec, prefix):

        options = ['--prefix=%s' % prefix,
                   '--enable-shared',
                   '--enable-threads',
                   '--enable-openmp']
        self.check_fortran_availability(options)
        self.set_floating_point_precision(spec, options)

        if '+mpi' in spec:
            options.append('--enable-mpi')

        configure(*options)
        make()
        make("install")