Skip to content

Commit

Permalink
Merge pull request #20105 from Crivella/feature-QE-7.3
Browse files Browse the repository at this point in the history
Added QuantumESPRESSO easyconfigs for 7.3 (both intel and foss)
  • Loading branch information
ocaisa committed Mar 21, 2024
2 parents e9566be + 26169dc commit cff33ba
Show file tree
Hide file tree
Showing 2 changed files with 113 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name = 'QuantumESPRESSO'
version = '7.3'

homepage = 'https://www.quantum-espresso.org'
description = """Quantum ESPRESSO is an integrated suite of computer codes
for electronic-structure calculations and materials modeling at the nanoscale.
It is based on density-functional theory, plane waves, and pseudopotentials
(both norm-conserving and ultrasoft).
"""

toolchain = {'name': 'foss', 'version': '2023a'}
toolchainopts = {
'usempi': True,
'openmp': True,
}

sources = [
{
'filename': 'q-e-qe-%(version)s.tar.gz',
'extract_cmd': 'mkdir -p %(builddir)s/qe-%(version)s && tar xzvf %s --strip-components=1 -C $_',
'source_urls': ['https://gitlab.com/QEF/q-e/-/archive/qe-%(version)s']
},
{
'filename': 'qe-gipaw-%(version)s.tar.gz',
'source_urls': ['https://github.com/dceresoli/qe-gipaw/releases/download/%(version)s/']},
{
'filename': 'wannier90-3.1.0.tar.gz',
'download_filename': 'v3.1.0.tar.gz',
'source_urls': ['https://github.com/wannier-developers/wannier90/archive/']
},
]
checksums = [
{'q-e-qe-%(version)s.tar.gz': 'edc2a0f3315c69966df4f82ec86ab9f682187bc9430ef6d2bacad5f27f08972c'},
{'qe-gipaw-%(version)s.tar.gz': 'a24d328ec068043d36fdf69fe4f8d1904d7befeba7962cb85be059ea0fe6f026'},
{'wannier90-3.1.0.tar.gz': '40651a9832eb93dec20a8360dd535262c261c34e13c41b6755fa6915c936b254'},
]

builddependencies = [
('M4', '1.4.19'),
]
dependencies = [
('HDF5', '1.14.0'),
('ELPA', '2023.05.001'),
('libxc', '6.2.2'),
]

# The third party packages should be installed separately and added as
# dependencies. The exception is w90, which is force built, and gipaw
# which depends on qe source
buildopts = "all gwl xspectra couple epw gipaw w90"

# parallel build tends to fail
parallel = 1

moduleclass = 'chem'
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name = 'QuantumESPRESSO'
version = '7.3'

homepage = 'https://www.quantum-espresso.org'
description = """Quantum ESPRESSO is an integrated suite of computer codes
for electronic-structure calculations and materials modeling at the nanoscale.
It is based on density-functional theory, plane waves, and pseudopotentials
(both norm-conserving and ultrasoft).
"""

toolchain = {'name': 'intel', 'version': '2023a'}
toolchainopts = {
'usempi': True,
'openmp': True,
}

sources = [
{
'filename': 'q-e-qe-%(version)s.tar.gz',
'extract_cmd': 'mkdir -p %(builddir)s/qe-%(version)s && tar xzvf %s --strip-components=1 -C $_',
'source_urls': ['https://gitlab.com/QEF/q-e/-/archive/qe-%(version)s']
},
{
'filename': 'qe-gipaw-%(version)s.tar.gz',
'source_urls': ['https://github.com/dceresoli/qe-gipaw/releases/download/%(version)s/']},
{
'filename': 'wannier90-3.1.0.tar.gz',
'download_filename': 'v3.1.0.tar.gz',
'source_urls': ['https://github.com/wannier-developers/wannier90/archive/']
},
]
checksums = [
{'q-e-qe-%(version)s.tar.gz': 'edc2a0f3315c69966df4f82ec86ab9f682187bc9430ef6d2bacad5f27f08972c'},
{'qe-gipaw-%(version)s.tar.gz': 'a24d328ec068043d36fdf69fe4f8d1904d7befeba7962cb85be059ea0fe6f026'},
{'wannier90-3.1.0.tar.gz': '40651a9832eb93dec20a8360dd535262c261c34e13c41b6755fa6915c936b254'},
]

builddependencies = [
('M4', '1.4.19'),
]
dependencies = [
('HDF5', '1.14.0'),
('ELPA', '2023.05.001'),
('libxc', '6.2.2'),
]

# The third party packages should be installed separately and added as
# dependencies. The exception is w90, which is force built, and gipaw
# which depends on qe source
buildopts = "all gwl xspectra couple epw gipaw w90"

# parallel build tends to fail
parallel = 1

# allow some test failures
test_suite_max_failed = 1

moduleclass = 'chem'

0 comments on commit cff33ba

Please sign in to comment.