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

let internal easyblock not create a log file in QuantumESPRESSO easyblock #3505

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions easybuild/easyblocks/q/quantumespresso.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
@author: Kenneth Hoste (Ghent University)
@author: Ake Sandgren (HPC2N, Umea University)
@author: Davide Grassano (CECAM, EPFL)
@author: Jan Reuter (Juelich Supercomputing Centre)
"""

import fileinput
Expand Down Expand Up @@ -84,6 +85,8 @@ def __init__(self, ec, *args, **kwargs):

# Required to avoid CMakeMake default extra_opts to override the ConfigMake ones
new_ec = EasyConfig(ec.path, extra_options=eb.extra_options())
# Disable log file for nested EasyBlock
kwargs['logfile'] = self.logfile
self.ebclass = eb(new_ec, *args, **kwargs)

class EB_QuantumESPRESSOcmake(CMakeMake):
Expand Down
Loading