Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use readonly_files #220

Merged
merged 14 commits into from
Jan 13, 2025
Prev Previous commit
Next Next commit
merge main
  • Loading branch information
Samuel Moors committed Jan 9, 2025
commit f1d630c5de7fe54a5eb426414f25db4d4c77a507
8 changes: 5 additions & 3 deletions eessi/testsuite/tests/apps/QuantumESPRESSO.py
Original file line number Diff line number Diff line change
@@ -41,11 +41,13 @@
class EESSI_QuantumESPRESSO_PW(QEspressoPWCheck, EESSI_Mixin):
time_limit = '30m'
module_name = parameter(find_modules('QuantumESPRESSO'))
# For now, QE is being build for CPU targets only
# compute_device = parameter([DEVICE_TYPES[CPU], DEVICE_TYPES[GPU]])
compute_device = parameter([DEVICE_TYPES[CPU], ])
# For now, QE is built for CPU targets only
device_type = parameter([DEVICE_TYPES[CPU]])
readonly_files = ['']

def required_mem_per_node(self):
return (self.num_tasks_per_node * 0.9 + 4) * 1024

@run_after('init')
def set_ci(self):
"""Set tag CI on smallest benchmark, so it can be selected on the cmd line via --tag CI"""
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.