Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NP_TMcode
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Giacomo Mulas
NP_TMcode
Commits
d5bb62ce
Commit
d5bb62ce
authored
9 months ago
by
Giovanni La Mura
Browse files
Options
Downloads
Patches
Plain Diff
Use noise hiding as default in reports
parent
82821256
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/scripts/pycompare.py
+17
-11
17 additions, 11 deletions
src/scripts/pycompare.py
with
17 additions
and
11 deletions
src/scripts/pycompare.py
+
17
−
11
View file @
d5bb62ce
...
...
@@ -343,7 +343,7 @@ def compare_lines(f_line, c_line, config, line_num=0, num_len=4, log_file=None):
log_line
+
"
</code><span style=
\"
font-weight: bold; color: rgb(255,0,0)
\"
><code>
"
+
c_groups
[
-
1
]
+
"
</code></span><code>
"
+
c_line
[
c_ends
[
-
1
]:
len
(
c_line
)
-
2
]
)
if
((
not
config
[
'
hide_noise
'
])
or
warnings
>
0
or
errors
>
0
):
if
((
not
config
[
'
hide_noise
'
]
and
noisy
>
0
)
or
warnings
>
0
or
errors
>
0
):
log_file
.
write
(
log_line
+
"
</code></pre></div>
\n
"
)
log_file
.
write
(
ref_line
)
else
:
# The two lines contain a different number of numeric values
...
...
@@ -429,7 +429,10 @@ def mismatch_severities(str_f_values, str_c_values, config):
fractional
=
scale
*
(
f_values
[
i
]
-
c_values
[
i
])
/
f_values
[
i
]
if
(
fractional
<
0.0
):
fractional
*=
-
1.0
if
(
fractional
<=
config
[
'
warning_threshold
'
]):
if
(
log_f_value
>
config
[
'
data_order
'
]):
result
[
i
]
=
2
else
:
result
[
i
]
=
1
else
:
if
(
log_f_value
>
config
[
'
data_order
'
]):
result
[
i
]
=
3
...
...
@@ -445,7 +448,10 @@ def mismatch_severities(str_f_values, str_c_values, config):
fractional
=
scale
*
(
c_values
[
i
]
-
f_values
[
i
])
/
c_values
[
i
]
if
(
fractional
<
0.0
):
fractional
*=
-
1.0
if
(
fractional
<=
config
[
'
warning_threshold
'
]):
if
(
log_c_value
>
config
[
'
data_order
'
]):
result
[
i
]
=
2
else
:
result
[
i
]
=
1
else
:
if
(
log_c_value
>
config
[
'
data_order
'
]):
result
[
i
]
=
3
...
...
@@ -473,7 +479,7 @@ def parse_arguments():
'
fortran_file_name
'
:
''
,
'
full_log
'
:
False
,
'
help_mode
'
:
False
,
'
hide_noise
'
:
Fals
e
,
'
hide_noise
'
:
Tru
e
,
'
html_output
'
:
'
pycompare.html
'
,
'
linewise
'
:
True
,
'
log_html
'
:
False
,
...
...
@@ -499,14 +505,10 @@ def parse_arguments():
config
[
'
data_order
'
]
=
float
(
split_arg
[
1
])
elif
(
arg
.
startswith
(
"
--full
"
)):
config
[
'
full_log
'
]
=
True
elif
(
arg
.
startswith
(
"
--hide-noise
"
)):
config
[
'
hide_noise
'
]
=
True
elif
(
arg
.
startswith
(
"
--html
"
)):
config
[
'
log_html
'
]
=
True
if
(
len
(
split_arg
)
==
2
):
config
[
'
html_output
'
]
=
split_arg
[
1
]
elif
(
arg
.
startswith
(
"
--warn
"
)):
config
[
'
warning_threshold
'
]
=
float
(
split_arg
[
1
])
elif
(
arg
.
startswith
(
"
--help
"
)):
config
[
'
help_mode
'
]
=
True
elif
(
arg
.
startswith
(
"
--linewise
"
)):
...
...
@@ -515,6 +517,10 @@ def parse_arguments():
config
[
'
say_progress
'
]
=
False
elif
(
arg
.
startswith
(
"
--quick
"
)):
config
[
'
check_all
'
]
=
False
elif
(
arg
.
startswith
(
"
--show-noise
"
)):
config
[
'
hide_noise
'
]
=
False
elif
(
arg
.
startswith
(
"
--warn
"
)):
config
[
'
warning_threshold
'
]
=
float
(
split_arg
[
1
])
else
:
raise
Exception
(
"
Unrecognized argument
\'
{0:s}
\'
"
.
format
(
arg
))
arg_index
+=
1
...
...
@@ -535,11 +541,11 @@ def print_help():
print
(
"
--data-order=ORDER Consider data only down to specified order (default order is -99).
"
)
print
(
"
--full Print all lines to log file (default prints only mismatches).
"
)
print
(
"
--help Print this help and exit.
"
)
print
(
"
--hide-noise Hide noise in reports (default is to show it).
"
)
print
(
"
--html[=OPT_OUTPUT_NAME] Enable logging to HTML file (default logs to
\"
pycompare.html
\"
).
"
)
print
(
"
--linewise Load only one line at a time. Useful to compare big files (True by default).
"
)
print
(
"
--no-progress Disable progress logging.
"
)
print
(
"
--quick Stop on first mismatch (default is to perform a full check).
"
)
print
(
"
--show-noise Show noise in reports (default is to hide it).
"
)
print
(
"
--warn Set a fractional threshold for numeric warning (default = 0.005).
"
)
print
(
"
"
)
...
...
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