Add select mkl libs (#22580)
This commit is contained in:
parent
110b50676d
commit
7ecaeba33a
@ -33,3 +33,9 @@ class IntelOneapiMkl(IntelOneApiLibraryPackage):
|
|||||||
@property
|
@property
|
||||||
def component_dir(self):
|
def component_dir(self):
|
||||||
return 'mkl'
|
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)
|
||||||
|
Loading…
Reference in New Issue
Block a user