Skip to content

Commit

Permalink
Merge pull request easybuilders#20951 from laraPPr/20240702121953_new…
Browse files Browse the repository at this point in the history
…_pr_CP2K20231

only use libxsmm as dependency for CP2K 2023.1 on x86_64
  • Loading branch information
boegel authored Jul 5, 2024
2 parents a8eb8c1 + ae08bf9 commit a92667f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion easybuild/easyconfigs/c/CP2K/CP2K-2023.1-foss-2023a.eb
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,16 @@ builddependencies = [
dependencies = [
('Libint', '2.7.2', '-lmax-6-cp2k'),
('libxc', '6.2.2'),
('libxsmm', '1.17'),
('libvori', '220621'),
('FFTW', '3.3.10'),
('PLUMED', '2.9.0'),
]
if ARCH == 'x86_64':
# LIBXSMM is not supported supported on ARM with GCC 12.2.0 and 12.3.0
# see https://www.cp2k.org/dev:compiler_support
dependencies += [
('libxsmm', '1.17'),
]

type = 'psmp'

Expand Down

0 comments on commit a92667f

Please sign in to comment.