Skip to content

Commit

Permalink
Update mkl.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kristofkessler authored Oct 16, 2024
1 parent 7a32d18 commit c91e92b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hpccm/building_blocks/mkl.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ def __instructions(self):
raise RuntimeError('Intel EULA was not accepted. To accept, see the documentation for this building block')

self += packages(
_apt_key=True,
_apt_key=False,
apt_keys=['https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-{}.PUB'.format(self.__year)],
apt_repositories=['deb [signed-by=/usr/share/keyrings/'+'GPG-PUB-KEY-INTEL-SW-PRODUCTS-{}.gpg'.format(self.__year)+'] https://apt.repos.intel.com/mkl all main'],
apt_repositories=['deb [signed-by=/usr/share/keyrings/GPG-PUB-KEY-INTEL-SW-PRODUCTS-{}.gpg] https://apt.repos.intel.com/mkl all main'.format(self.__year)],
ospackages=['intel-mkl-64bit-{}'.format(self.__version)],
yum_keys=['https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-{}.PUB'.format(self.__year)],
yum_repositories=['https://yum.repos.intel.com/mkl/setup/intel-mkl.repo'])
Expand Down

0 comments on commit c91e92b

Please sign in to comment.