Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mkexp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package Registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esmenv
mkexp
Commits
93f70423
Commit
93f70423
authored
1 year ago
by
Karl-Hermann Wieners
Browse files
Options
Downloads
Patches
Plain Diff
Templates: add option to toggle use of global config in namelist
parent
307149ba
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
CHANGES.txt
+3
-2
3 additions, 2 deletions
CHANGES.txt
doc/mkexp.fodt
+605
-590
605 additions, 590 deletions
doc/mkexp.fodt
doc/mkexp.pdf
+0
-0
0 additions, 0 deletions
doc/mkexp.pdf
mkexp
+9
-4
9 additions, 4 deletions
mkexp
test.py
+26
-1
26 additions, 1 deletion
test.py
with
643 additions
and
597 deletions
CHANGES.txt
+
3
−
2
View file @
93f70423
...
...
@@ -24,8 +24,9 @@ Templates
* Allow use of iterators with 'list' and 'join' filters
* Unify namelist and job templates. 'DEFAULT.' prefix is optional but preferred
* Allow global config to be used in namelist templates. Original values for
global variables overridden by namelist settings are in section '_'
* Add option to use global config in namelist templates (.use_full_config).
Original values for global variables overridden by namelist settings
are kept in section '_'
Tools
-----
...
...
This diff is collapsed.
Click to expand it.
doc/mkexp.fodt
+
605
−
590
View file @
93f70423
Source diff could not be displayed: it is too large. Options to address this:
view the blob
.
This diff is collapsed.
Click to expand it.
doc/mkexp.pdf
+
0
−
0
View file @
93f70423
No preview for this file type
This diff is collapsed.
Click to expand it.
mkexp
+
9
−
4
View file @
93f70423
...
...
@@ -591,18 +591,23 @@ for subjob, subconfig in jobs_config.items():
namelist_name
=
re
.
sub
(
r
'
\W
'
,
'
_
'
,
namelist
.
upper
())
use_template
=
(
groups
.
get
(
'
.use_template
'
)
or
groups
.
get
(
'
use_template
'
)
or
''
)
if
use_template
:
if
use_template
.
lower
()
==
'
true
'
:
use_template
=
namelist
use_full_config
=
groups
.
get
(
'
.use_full_config
'
,
''
)
if
use_full_config
.
lower
()
==
'
true
'
:
namelist_config
=
ConfigObj
(
job_config
)
namelist_config
[
'
_
'
]
=
job_config
namelist_config
.
merge
(
expconfig
.
odict
(
groups
))
expconfig
.
merge_comments
(
namelist_config
,
groups
)
else
:
namelist_config
=
groups
if
use_template
:
if
use_template
.
lower
()
==
'
true
'
:
use_template
=
namelist
job_config
[
namelist_name
]
=
expand_template
(
namelist_config
,
get_exp_template_names
(
experiment_config_id
,
config
,
use_template
))
else
:
job_config
[
namelist_name
]
=
format_namelist
(
groups
)
job_config
[
namelist_name
]
=
format_namelist
(
namelist_config
)
# Generate job script
template_search_list
=
()
...
...
This diff is collapsed.
Click to expand it.
test.py
+
26
−
1
View file @
93f70423
...
...
@@ -847,7 +847,7 @@ class NamelistTemplateTestCase(MkexpSimpleTestCase):
value = 42
"""
)
def
test_
globals
_in_template
(
self
):
def
test_
full_config
_in_template
(
self
):
writetemplate
(
self
.
exp_id
,
'
namelist_template
'
,
u
"""
%{EXP_ID}
%{value}
...
...
@@ -868,11 +868,36 @@ class NamelistTemplateTestCase(MkexpSimpleTestCase):
[namelists]
[[namelist]]
.use_template = namelist_template
.use_full_config = true
value = namelist
[[[group]]]
value = group
"""
)
def
test_normal_config_in_template
(
self
):
writetemplate
(
self
.
exp_id
,
'
namelist_template
'
,
u
"""
#% for key, value in context().get_all().items():
#% if not key.startswith(
'
.
'
) and not value is callable:
%{key}
#% endif
#% endfor
"""
)
self
.
run_test
(
u
"""
%{NAMELIST}
"""
,
u
"""
value
group
"""
,
u
"""
value = global
[namelists]
[[namelist]]
.use_template = namelist_template
value = namelist
[[[group]]]
value = group
"""
)
class
KeySplittingTestCase
(
MkexpSimpleTestCase
):
def
test_job_splitting
(
self
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment