
Consolidate prefix calculation logic for intel packages into the IntelPackage class. Add documentation on installing Intel packages with Spack an (alternatively) adding them as external packages in Spack.
77 lines
3.8 KiB
Python
77 lines
3.8 KiB
Python
##############################################################################
|
|
# Copyright (c) 2013-2018, Lawrence Livermore National Security, LLC.
|
|
# Produced at the Lawrence Livermore National Laboratory.
|
|
#
|
|
# This file is part of Spack.
|
|
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
|
|
# LLNL-CODE-647188
|
|
#
|
|
# For details, see https://github.com/spack/spack
|
|
# Please also see the NOTICE and LICENSE files 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 Lesser General Public License (as
|
|
# published by the Free Software Foundation) version 2.1, 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 Lesser 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
|
|
##############################################################################
|
|
import sys
|
|
|
|
from spack import *
|
|
|
|
|
|
class IntelMkl(IntelPackage):
|
|
"""Intel Math Kernel Library."""
|
|
|
|
homepage = "https://software.intel.com/en-us/intel-mkl"
|
|
|
|
version('2018.3.222', '3e63646a4306eff95e8d0aafd53a2983',
|
|
url="http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/13005/l_mkl_2018.3.222.tgz")
|
|
version('2018.2.199', 'fd31b656a8eb859c89495b9cc41230b4',
|
|
url="http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/12725/l_mkl_2018.2.199.tgz")
|
|
version('2018.1.163', 'f1f7b6ddd7eb57dfe39bd4643446dc1c',
|
|
url="http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/12414/l_mkl_2018.1.163.tgz")
|
|
version('2018.0.128', '0fa23779816a0f2ee23a396fc1af9978',
|
|
url="http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/12070/l_mkl_2018.0.128.tgz")
|
|
version('2017.4.239', '3066272dd0ad3da7961b3d782e1fab3b',
|
|
url="http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/12147/l_mkl_2017.4.239.tgz")
|
|
version('2017.3.196', '4a2eb4bee789391d9c07d7c348a80702',
|
|
url="http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/11544/l_mkl_2017.3.196.tgz")
|
|
version('2017.2.174', 'ef39a12dcbffe5f4a0ef141b8759208c',
|
|
url="http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/11306/l_mkl_2017.2.174.tgz")
|
|
version('2017.1.132', '7911c0f777c4cb04225bf4518088939e',
|
|
url="http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/11024/l_mkl_2017.1.132.tgz")
|
|
version('2017.0.098', '3cdcb739ab5ab1e047eb130b9ffdd8d0',
|
|
url="http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/9662/l_mkl_2017.0.098.tgz")
|
|
# built from parallel_studio_xe_2016.3.x
|
|
version('11.3.3.210', 'f72546df27f5ebb0941b5d21fd804e34',
|
|
url="http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/9068/l_mkl_11.3.3.210.tgz")
|
|
# built from parallel_studio_xe_2016.2.062
|
|
version('11.3.2.181', '536dbd82896d6facc16de8f961d17d65',
|
|
url="http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/8711/l_mkl_11.3.2.181.tgz")
|
|
|
|
variant('shared', default=True, description='Builds shared library')
|
|
variant('ilp64', default=False, description='64 bit integers')
|
|
variant(
|
|
'threads', default='none',
|
|
description='Multithreading support',
|
|
values=('openmp', 'tbb', 'none'),
|
|
multi=False
|
|
)
|
|
|
|
provides('blas')
|
|
provides('lapack')
|
|
provides('scalapack')
|
|
provides('mkl')
|
|
|
|
if sys.platform == 'darwin':
|
|
# there is no libmkl_gnu_thread on macOS
|
|
conflicts('threads=openmp', when='%gcc')
|