42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
from sys import platform
|
|
|
|
from spack import *
|
|
|
|
|
|
class IntelOneapiMkl(IntelOneApiLibraryPackage):
|
|
"""Intel oneAPI MKL."""
|
|
|
|
maintainers = ['rscohn2']
|
|
|
|
homepage = 'https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/onemkl.html'
|
|
|
|
if platform == 'linux':
|
|
version('2021.1.1',
|
|
sha256='818b6bd9a6c116f4578cda3151da0612ec9c3ce8b2c8a64730d625ce5b13cc0c',
|
|
url='https://registrationcenter-download.intel.com/akdlm/irc_nas/17402/l_onemkl_p_2021.1.1.52_offline.sh',
|
|
expand=False)
|
|
|
|
depends_on('intel-oneapi-tbb')
|
|
|
|
provides('fftw-api@3')
|
|
provides('scalapack')
|
|
provides('mkl')
|
|
provides('lapack')
|
|
provides('blas')
|
|
|
|
@property
|
|
def component_dir(self):
|
|
return 'mkl'
|
|
|
|
@property
|
|
def libs(self):
|
|
lib_path = '{0}/{1}/latest/lib/intel64'.format(self.prefix, self.component_dir)
|
|
mkl_libs = ['libmkl_intel_ilp64', 'libmkl_sequential', 'libmkl_core']
|
|
return find_libraries(mkl_libs, root=lib_path, shared=True, recursive=False)
|