Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Méso-NH code
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Méso-NH
Méso-NH code
Commits
cd582997
Commit
cd582997
authored
1 year ago
by
RODIER Quentin
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
https://github.com/UMR-CNRM/PHYEX
parents
be031d48
0b8e5792
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tools/check_commit_ial.sh
+397
-300
397 additions, 300 deletions
tools/check_commit_ial.sh
tools/comp_DDH.py
+71
-66
71 additions, 66 deletions
tools/comp_DDH.py
tools/testing.sh
+4
-1
4 additions, 1 deletion
tools/testing.sh
with
472 additions
and
367 deletions
tools/check_commit_ial.sh
+
397
−
300
View file @
cd582997
This diff is collapsed.
Click to expand it.
tools/comp_DDH.py
+
71
−
66
View file @
cd582997
...
...
@@ -10,75 +10,80 @@ import matplotlib.pyplot as plt
epygram
.
init_env
()
def
comp_DDH
(
filename1
,
filename2
,
output_fig
,
tol_ad
=
3E-7
,
tol_rd
=
1.E-6
,
verbose
=
False
):
r1
=
epygram
.
formats
.
resource
(
filename1
,
'
r
'
)
r2
=
epygram
.
formats
.
resource
(
filename2
,
'
r
'
)
l1
=
set
(
r1
.
listfields
())
l2
=
set
(
r2
.
listfields
())
pb_var
=
len
(
l1
.
symmetric_difference
(
l2
))
!=
0
def
comp
(
fid
,
v1
,
v2
):
t
=
numpy
.
all
(
v1
==
v2
)
toplt
=
False
if
not
t
:
if
verbose
:
print
(
fid
,
'
:
'
)
if
numpy
.
array
(
v1
).
ndim
==
0
:
v1
=
numpy
.
array
([
v1
])
v2
=
numpy
.
array
([
v2
])
for
i
in
range
(
len
(
v1
)):
if
v1
[
i
]
-
v2
[
i
]
!=
0.
:
ad
=
v1
[
i
]
-
v2
[
i
]
rd
=
200
*
(
v1
[
i
]
-
v2
[
i
])
/
(
v1
[
i
]
+
v2
[
i
])
if
verbose
:
print
(
"
v1={v1}, v2={v2}, diff={ad}, rdiff={rd}
"
.
format
(
v1
=
v1
[
i
],
v2
=
v2
[
i
],
ad
=
ad
,
rd
=
rd
))
if
abs
(
ad
)
>
tol_ad
and
abs
(
rd
)
>
tol_rd
:
if
verbose
:
print
(
"
==> plot
"
)
toplt
=
True
return
fid
if
toplt
else
None
toplt
=
[]
for
fid
in
[
fid
for
fid
in
l1
.
intersection
(
l2
)
if
fid
!=
'
DOCFICHIER
'
]:
v1
=
r1
.
readfield
(
fid
)
v2
=
r2
.
readfield
(
fid
)
if
isinstance
(
v1
,
epygram
.
base
.
FieldSet
):
for
i
in
range
(
len
(
v1
)):
#fieldset
toplt
.
append
(
comp
(
fid
,
v1
[
i
].
getdata
(),
v2
[
i
].
getdata
()))
else
:
toplt
.
append
(
comp
(
fid
,
v1
.
getdata
(),
v2
.
getdata
()))
toplt
=
[
fid
for
fid
in
toplt
if
fid
is
not
None
]
pb_val
=
len
(
toplt
)
>
0
if
pb_val
:
ncols
,
nrows
=
min
(
10
,
len
(
toplt
)),
1
+
(
len
(
toplt
)
-
1
)
//
10
figure
,
ax
=
plt
.
subplots
(
ncols
=
ncols
,
nrows
=
nrows
,
figsize
=
(
5
*
ncols
,
10
*
nrows
),
squeeze
=
False
)
ax
=
ax
.
flatten
()
figure
.
suptitle
(
filename1
+
'
'
+
filename2
)
for
ifid
,
fid
in
enumerate
(
toplt
):
if
filename1
!=
filename2
:
r1
=
epygram
.
formats
.
resource
(
filename1
,
'
r
'
)
r2
=
epygram
.
formats
.
resource
(
filename2
,
'
r
'
)
l1
=
set
(
r1
.
listfields
())
l2
=
set
(
r2
.
listfields
())
pb_var
=
len
(
l1
.
symmetric_difference
(
l2
))
!=
0
def
comp
(
fid
,
v1
,
v2
):
t
=
numpy
.
all
(
v1
==
v2
)
toplt
=
False
if
not
t
:
if
verbose
:
print
(
fid
,
'
:
'
)
if
numpy
.
array
(
v1
).
ndim
==
0
:
v1
=
numpy
.
array
([
v1
])
v2
=
numpy
.
array
([
v2
])
for
i
in
range
(
len
(
v1
)):
if
v1
[
i
]
-
v2
[
i
]
!=
0.
:
ad
=
v1
[
i
]
-
v2
[
i
]
rd
=
200
*
(
v1
[
i
]
-
v2
[
i
])
/
(
v1
[
i
]
+
v2
[
i
])
if
verbose
:
print
(
"
v1={v1}, v2={v2}, diff={ad}, rdiff={rd}
"
.
format
(
v1
=
v1
[
i
],
v2
=
v2
[
i
],
ad
=
ad
,
rd
=
rd
))
if
abs
(
ad
)
>
tol_ad
and
abs
(
rd
)
>
tol_rd
:
if
verbose
:
print
(
"
==> plot
"
)
toplt
=
True
return
fid
if
toplt
else
None
toplt
=
[]
for
fid
in
[
fid
for
fid
in
l1
.
intersection
(
l2
)
if
fid
!=
'
DOCFICHIER
'
]:
v1
=
r1
.
readfield
(
fid
)
v2
=
r2
.
readfield
(
fid
)
assert
(
len
(
v1
)
==
len
(
v2
))
for
i
in
range
(
len
(
v1
)):
#fieldset
ad
=
v1
[
i
].
getdata
()
-
v2
[
i
].
getdata
()
ax
[
ifid
].
plot
(
v1
[
i
].
getdata
(),
v1
[
i
].
geometry
.
vcoordinate
.
levels
,
label
=
'
v1
'
)
ax
[
ifid
].
plot
(
v2
[
i
].
getdata
(),
v2
[
i
].
geometry
.
vcoordinate
.
levels
,
label
=
'
v2
'
)
ax
[
ifid
].
legend
()
ax
[
ifid
].
twiny
().
plot
(
ad
,
v1
[
i
].
geometry
.
vcoordinate
.
levels
,
label
=
'
diff
'
,
color
=
'
black
'
,
ls
=
'
:
'
)
ad
=
numpy
.
abs
(
ad
)
rd
=
(
200
*
numpy
.
abs
(
v1
[
i
].
getdata
()
-
v2
[
i
].
getdata
())
/
numpy
.
abs
(
v1
[
i
].
getdata
()
+
v2
[
i
].
getdata
()))
rd
=
rd
[
ad
!=
0.
].
max
()
ad
=
ad
.
max
()
ax
[
ifid
].
set_title
(
"
{fid}:
\n
max_ad={ad}
\n
max_rd={rd}%
"
.
format
(
fid
=
fid
,
ad
=
ad
,
rd
=
rd
))
figure
.
savefig
(
output_fig
[
0
])
for
filename
in
output_fig
[
1
:]:
shutil
.
copyfile
(
output_fig
[
0
],
filename
)
if
pb_var
and
pb_val
:
message
=
"
Variables are different and values of common variables are also different
"
elif
pb_var
:
message
=
"
Variables are different but values of common variables are equal
"
elif
pb_val
:
message
=
"
Values are different
"
else
:
if
isinstance
(
v1
,
epygram
.
base
.
FieldSet
):
for
i
in
range
(
len
(
v1
)):
#fieldset
toplt
.
append
(
comp
(
fid
,
v1
[
i
].
getdata
(),
v2
[
i
].
getdata
()))
else
:
toplt
.
append
(
comp
(
fid
,
v1
.
getdata
(),
v2
.
getdata
()))
toplt
=
[
fid
for
fid
in
toplt
if
fid
is
not
None
]
pb_val
=
len
(
toplt
)
>
0
if
pb_val
:
ncols
,
nrows
=
min
(
10
,
len
(
toplt
)),
1
+
(
len
(
toplt
)
-
1
)
//
10
figure
,
ax
=
plt
.
subplots
(
ncols
=
ncols
,
nrows
=
nrows
,
figsize
=
(
5
*
ncols
,
10
*
nrows
),
squeeze
=
False
)
ax
=
ax
.
flatten
()
figure
.
suptitle
(
filename1
+
'
'
+
filename2
)
for
ifid
,
fid
in
enumerate
(
toplt
):
v1
=
r1
.
readfield
(
fid
)
v2
=
r2
.
readfield
(
fid
)
assert
(
len
(
v1
)
==
len
(
v2
))
for
i
in
range
(
len
(
v1
)):
#fieldset
ad
=
v1
[
i
].
getdata
()
-
v2
[
i
].
getdata
()
ax
[
ifid
].
plot
(
v1
[
i
].
getdata
(),
v1
[
i
].
geometry
.
vcoordinate
.
levels
,
label
=
'
v1
'
)
ax
[
ifid
].
plot
(
v2
[
i
].
getdata
(),
v2
[
i
].
geometry
.
vcoordinate
.
levels
,
label
=
'
v2
'
)
ax
[
ifid
].
legend
()
ax
[
ifid
].
twiny
().
plot
(
ad
,
v1
[
i
].
geometry
.
vcoordinate
.
levels
,
label
=
'
diff
'
,
color
=
'
black
'
,
ls
=
'
:
'
)
ad
=
numpy
.
abs
(
ad
)
rd
=
(
200
*
numpy
.
abs
(
v1
[
i
].
getdata
()
-
v2
[
i
].
getdata
())
/
numpy
.
abs
(
v1
[
i
].
getdata
()
+
v2
[
i
].
getdata
()))
rd
=
rd
[
ad
!=
0.
].
max
()
ad
=
ad
.
max
()
ax
[
ifid
].
set_title
(
"
{fid}:
\n
max_ad={ad}
\n
max_rd={rd}%
"
.
format
(
fid
=
fid
,
ad
=
ad
,
rd
=
rd
))
figure
.
savefig
(
output_fig
[
0
])
for
filename
in
output_fig
[
1
:]:
shutil
.
copyfile
(
output_fig
[
0
],
filename
)
if
pb_var
and
pb_val
:
message
=
"
Variables are different and values of common variables are also different
"
elif
pb_var
:
message
=
"
Variables are different but values of common variables are equal
"
elif
pb_val
:
message
=
"
Values are different
"
else
:
message
=
""
if
pb_val
:
message
+=
"
, plot is available in the folowing file(s):
"
+
'
,
'
.
join
(
output_fig
)
else
:
#same file
pb_var
=
False
pb_val
=
False
message
=
""
if
pb_val
:
message
+=
"
, plot is available in the folowing file(s):
"
+
'
,
'
.
join
(
output_fig
)
print
(
message
)
return
1
if
pb_var
or
pb_val
else
0
...
...
This diff is collapsed.
Click to expand it.
tools/testing.sh
+
4
−
1
View file @
cd582997
...
...
@@ -289,16 +289,19 @@ if [ ${force} -eq 1 -o $(get_statuses "${SHA}" | grep "${context}" | wc -l) -eq
if
[
"
${
model
}
"
==
'ial'
]
;
then
compilation
=
'-p -c'
execution
=
'-r'
comparison
=
'-C --computeRefIfNeeded'
jsonfile
=
"src/arome/ial_version.json"
docmp
=
1
elif
[
"
${
model
}
"
==
'lmdz'
]
;
then
compilation
=
'-p -c --nofcm'
execution
=
'-r --nofcm'
comparison
=
'-C'
jsonfile
=
"src/
${
model
}
/
${
model
}
_version.json"
docmp
=
0
else
compilation
=
'-c'
execution
=
'-r'
comparison
=
'-C'
jsonfile
=
"src/
${
model
}
/
${
model
}
_version.json"
docmp
=
1
fi
...
...
@@ -359,7 +362,7 @@ if [ ${force} -eq 1 -o $(get_statuses "${SHA}" | grep "${context}" | wc -l) -eq
fi
fi
if
[
${
result
}
-eq
0
-a
${
docmp
}
-eq
1
-a
${
comp
}
-eq
1
]
;
then
compcmd
=
"
$cmd
-C
${
casearg
}
${
refarg
}
"
compcmd
=
"
$cmd
${
comparison
}
${
casearg
}
${
refarg
}
"
log 1
"Comparison with
${
compcmd
}
"
set
+e
${
compcmd
}
...
...
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