Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pygwinc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
gwinc
pygwinc
Commits
5d507cad
Commit
5d507cad
authored
4 years ago
by
Jameson Graef Rollins
Browse files
Options
Downloads
Patches
Plain Diff
test: update plot style
Use overlaid dashes for the head traces. Also do comparison in preferred IFO order.
parent
9ff4ba54
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#119157
passed
4 years ago
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gwinc/test/__main__.py
+60
-44
60 additions, 44 deletions
gwinc/test/__main__.py
with
60 additions
and
44 deletions
gwinc/test/__main__.py
+
60
−
44
View file @
5d507cad
...
@@ -11,9 +11,6 @@ from collections import OrderedDict
...
@@ -11,9 +11,6 @@ from collections import OrderedDict
from
collections.abc
import
Mapping
from
collections.abc
import
Mapping
from
PyPDF2
import
PdfFileReader
,
PdfFileWriter
from
PyPDF2
import
PdfFileReader
,
PdfFileWriter
logging
.
basicConfig
(
format
=
'
%(message)s
'
,
level
=
os
.
getenv
(
'
LOG_LEVEL
'
,
logging
.
INFO
))
from
..
import
IFOS
,
load_budget
from
..
import
IFOS
,
load_budget
from
..io
import
load_hdf5
,
save_hdf5
from
..io
import
load_hdf5
,
save_hdf5
...
@@ -23,6 +20,11 @@ except ImportError:
...
@@ -23,6 +20,11 @@ except ImportError:
inspiral_range
=
None
inspiral_range
=
None
logging
.
basicConfig
(
format
=
'
%(message)s
'
,
level
=
os
.
getenv
(
'
LOG_LEVEL
'
,
logging
.
INFO
))
TOLERANCE
=
1e-6
TOLERANCE
=
1e-6
CACHE_PATH
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'
cache
'
)
CACHE_PATH
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'
cache
'
)
...
@@ -106,7 +108,7 @@ def compare_traces(tracesA, tracesB, tolerance=TOLERANCE, skip=None):
...
@@ -106,7 +108,7 @@ def compare_traces(tracesA, tracesB, tolerance=TOLERANCE, skip=None):
def
plot_diffs
(
freq
,
diffs
,
tolerance
,
def
plot_diffs
(
freq
,
diffs
,
tolerance
,
name
,
labelA
,
label
B
,
fom_title
=
''
,
name
,
styleA
,
style
B
,
fom_title
=
''
,
save
=
None
):
save
=
None
):
spec
=
(
len
(
diffs
)
+
1
,
2
)
spec
=
(
len
(
diffs
)
+
1
,
2
)
sharex
=
None
sharex
=
None
...
@@ -114,8 +116,8 @@ def plot_diffs(freq, diffs, tolerance,
...
@@ -114,8 +116,8 @@ def plot_diffs(freq, diffs, tolerance,
noiseA
,
noiseB
,
frac
=
diffs
[
nname
]
noiseA
,
noiseB
,
frac
=
diffs
[
nname
]
axl
=
plt
.
subplot2grid
(
spec
,
(
i
,
0
),
sharex
=
None
)
axl
=
plt
.
subplot2grid
(
spec
,
(
i
,
0
),
sharex
=
None
)
axl
.
loglog
(
freq
,
np
.
sqrt
(
noiseA
),
label
=
label
A
)
axl
.
loglog
(
freq
,
np
.
sqrt
(
noiseA
),
**
style
A
)
axl
.
loglog
(
freq
,
np
.
sqrt
(
noiseB
),
label
=
label
B
)
axl
.
loglog
(
freq
,
np
.
sqrt
(
noiseB
),
**
style
B
)
axl
.
grid
()
axl
.
grid
()
axl
.
legend
(
loc
=
'
upper right
'
)
axl
.
legend
(
loc
=
'
upper right
'
)
axl
.
set_ylabel
(
nname
)
axl
.
set_ylabel
(
nname
)
...
@@ -136,7 +138,7 @@ def plot_diffs(freq, diffs, tolerance,
...
@@ -136,7 +138,7 @@ def plot_diffs(freq, diffs, tolerance,
plt
.
suptitle
(
'''
{} {}/{} noise comparison
plt
.
suptitle
(
'''
{} {}/{} noise comparison
(noises that differ by more than {} ppm)
(noises that differ by more than {} ppm)
{}
'''
.
format
(
name
,
labelA
,
label
B
,
tolerance
*
1e6
,
fom_title
))
{}
'''
.
format
(
name
,
styleA
[
'
label
'
],
styleB
[
'
label
'
]
,
tolerance
*
1e6
,
fom_title
))
axl
.
set_xlabel
(
"
frequency [Hz]
"
)
axl
.
set_xlabel
(
"
frequency [Hz]
"
)
axr
.
set_xlabel
(
"
frequency [Hz]
"
)
axr
.
set_xlabel
(
"
frequency [Hz]
"
)
...
@@ -154,21 +156,28 @@ def plot_diffs(freq, diffs, tolerance,
...
@@ -154,21 +156,28 @@ def plot_diffs(freq, diffs, tolerance,
def
main
():
def
main
():
parser
=
argparse
.
ArgumentParser
()
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'
--tolerance
'
,
'
-t
'
,
type
=
float
,
default
=
TOLERANCE
,
parser
.
add_argument
(
help
=
'
fractional tolerance [{}]
'
.
format
(
TOLERANCE
))
'
--tolerance
'
,
'
-t
'
,
type
=
float
,
default
=
TOLERANCE
,
parser
.
add_argument
(
'
--skip
'
,
'
-k
'
,
metavar
=
'
NOISE
'
,
action
=
'
append
'
,
help
=
'
fractional tolerance [{}]
'
.
format
(
TOLERANCE
))
help
=
'
traces to skip in comparison (multiple may be specified)
'
)
parser
.
add_argument
(
parser
.
add_argument
(
'
--cache
'
,
'
-c
'
,
metavar
=
'
PATH
'
,
default
=
CACHE_PATH
,
'
--skip
'
,
'
-k
'
,
metavar
=
'
NOISE
'
,
action
=
'
append
'
,
help
=
'
specify alternate IFO traces cache path
'
)
help
=
'
traces to skip in comparison (multiple may be specified)
'
)
parser
.
add_argument
(
'
--cache
'
,
'
-c
'
,
metavar
=
'
PATH
'
,
default
=
CACHE_PATH
,
help
=
'
specify alternate IFO traces cache path
'
)
rgroup
=
parser
.
add_mutually_exclusive_group
()
rgroup
=
parser
.
add_mutually_exclusive_group
()
rgroup
.
add_argument
(
'
--plot
'
,
'
-p
'
,
action
=
'
store_true
'
,
rgroup
.
add_argument
(
help
=
'
plot differences
'
)
'
--plot
'
,
'
-p
'
,
action
=
'
store_true
'
,
rgroup
.
add_argument
(
'
--report
'
,
'
-r
'
,
metavar
=
'
REPORT.pdf
'
,
help
=
'
plot differences
'
)
help
=
'
create PDF report of test results (only created if differences found)
'
)
rgroup
.
add_argument
(
rgroup
.
add_argument
(
'
--gen-cache
'
,
action
=
'
store_true
'
,
'
--report
'
,
'
-r
'
,
metavar
=
'
REPORT.pdf
'
,
help
=
'
update/create IFO traces cache directory
'
)
help
=
'
create PDF report of test results (only created if differences found)
'
)
parser
.
add_argument
(
'
ifo
'
,
metavar
=
'
IFO
'
,
nargs
=
'
*
'
,
rgroup
.
add_argument
(
help
=
'
specific ifos to test (default all)
'
)
'
--gen-cache
'
,
action
=
'
store_true
'
,
help
=
'
update/create IFO traces cache directory
'
)
parser
.
add_argument
(
'
ifo
'
,
metavar
=
'
IFO
'
,
nargs
=
'
*
'
,
help
=
'
specific ifos to test (default all)
'
)
args
=
parser
.
parse_args
()
args
=
parser
.
parse_args
()
if
args
.
gen_cache
:
if
args
.
gen_cache
:
...
@@ -183,13 +192,13 @@ def main():
...
@@ -183,13 +192,13 @@ def main():
path
=
os
.
path
.
join
(
args
.
cache
,
name
+
'
.h5
'
)
path
=
os
.
path
.
join
(
args
.
cache
,
name
+
'
.h5
'
)
save_hdf5
(
path
,
freq
,
traces
)
save_hdf5
(
path
,
freq
,
traces
)
return
return
if
args
.
report
:
if
args
.
report
:
base
,
ext
=
os
.
path
.
splitext
(
args
.
report
)
base
,
ext
=
os
.
path
.
splitext
(
args
.
report
)
if
ext
!=
'
.pdf
'
:
if
ext
!=
'
.pdf
'
:
parser
.
error
(
"
Test reports only support PDF format.
"
)
parser
.
error
(
"
Test reports only support PDF format.
"
)
outdir
=
tempfile
.
TemporaryDirectory
()
outdir
=
tempfile
.
TemporaryDirectory
()
# find all cached IFOs
# find all cached IFOs
logging
.
info
(
"
loading cache {}...
"
.
format
(
args
.
cache
))
logging
.
info
(
"
loading cache {}...
"
.
format
(
args
.
cache
))
cached_ifos
=
{}
cached_ifos
=
{}
...
@@ -201,50 +210,57 @@ def main():
...
@@ -201,50 +210,57 @@ def main():
# select
# select
if
args
.
ifo
:
if
args
.
ifo
:
ifos
=
{
name
:
cached_ifos
[
name
]
for
name
in
args
.
ifo
}
ifos
=
args
.
ifo
else
:
else
:
ifos
=
cached_ifos
ifos
=
IFOS
labelA
=
'
cache
'
style_cache
=
dict
(
label
=
'
cache
'
,
linestyle
=
'
-
'
)
label
B
=
'
head
'
style_head
=
dict
(
label
=
'
head
'
,
linestyle
=
'
--
'
)
fail
=
False
fail
=
False
# compare
# compare
for
name
,
path
in
ifos
.
items
()
:
for
name
in
ifos
:
logging
.
info
(
"
{} tests...
"
.
format
(
name
))
logging
.
info
(
"
{} tests...
"
.
format
(
name
))
freq
,
tracesA
,
attrs
=
load_hdf5
(
path
)
path
=
cached_ifos
[
name
]
if
not
os
.
path
.
exists
(
path
):
logging
.
warning
(
"
{} test cache not found
"
.
format
(
name
))
fail
|=
True
continue
freq
,
traces_cache
,
attrs
=
load_hdf5
(
path
)
Budget
=
load_budget
(
name
)
Budget
=
load_budget
(
name
)
traces
B
=
Budget
(
freq
).
run
()
traces
_head
=
Budget
(
freq
).
run
()
if
inspiral_range
:
if
inspiral_range
:
total
A
=
traces
A
[
'
Total
'
][
0
]
total
_cache
=
traces
_cache
[
'
Total
'
][
0
]
total
B
=
traces
B
[
'
Total
'
][
0
]
total
_head
=
traces
_head
[
'
Total
'
][
0
]
range_func
=
inspiral_range
.
range
range_func
=
inspiral_range
.
range
H
=
inspiral_range
.
waveform
.
CBCWaveform
(
freq
)
H
=
inspiral_range
.
waveform
.
CBCWaveform
(
freq
)
fom
A
=
range_func
(
freq
,
total
A
,
H
=
H
)
fom
_cache
=
range_func
(
freq
,
total
_cache
,
H
=
H
)
traces
A
[
'
int73
'
]
=
inspiral_range
.
int73
(
freq
,
total
A
)[
1
],
None
traces
_cache
[
'
int73
'
]
=
inspiral_range
.
int73
(
freq
,
total
_cache
)[
1
],
None
fom
B
=
range_func
(
freq
,
total
B
,
H
=
H
)
fom
_head
=
range_func
(
freq
,
total
_head
,
H
=
H
)
traces
B
[
'
int73
'
]
=
inspiral_range
.
int73
(
freq
,
total
B
)[
1
],
None
traces
_head
[
'
int73
'
]
=
inspiral_range
.
int73
(
freq
,
total
_head
)[
1
],
None
fom_summary
=
"""
fom_summary
=
"""
inspiral {func} {m1}/{m2} Msol:
inspiral {func} {m1}/{m2} Msol:
{label
A
}: {fom
A
:.2f} Mpc
{label
_cache
}: {fom
_cache
:.2f} Mpc
{label
B
}: {fom
B
:.2f} Mpc
{label
_head
}: {fom
_head
:.2f} Mpc
"""
.
format
(
"""
.
format
(
func
=
range_func
.
__name__
,
func
=
range_func
.
__name__
,
m1
=
H
.
params
[
'
m1
'
],
m1
=
H
.
params
[
'
m1
'
],
m2
=
H
.
params
[
'
m2
'
],
m2
=
H
.
params
[
'
m2
'
],
label
A
=
label
A
,
label
_cache
=
style_cache
[
'
label
'
]
,
fom
A
=
fomA
,
fom
_cache
=
fom_cache
,
label
B
=
label
B
,
label
_head
=
style_head
[
'
label
'
]
,
fom
B
=
fomB
,
fom
_head
=
fom_head
,
)
)
else
:
else
:
fom_summary
=
''
fom_summary
=
''
diffs
=
compare_traces
(
traces
A
,
traces
B
,
args
.
tolerance
,
args
.
skip
)
diffs
=
compare_traces
(
traces
_cache
,
traces
_head
,
args
.
tolerance
,
args
.
skip
)
if
diffs
:
if
diffs
:
logging
.
warning
(
"
{} tests FAIL
"
.
format
(
name
))
logging
.
warning
(
"
{} tests FAIL
"
.
format
(
name
))
...
@@ -256,7 +272,7 @@ inspiral {func} {m1}/{m2} Msol:
...
@@ -256,7 +272,7 @@ inspiral {func} {m1}/{m2} Msol:
save
=
None
save
=
None
plot_diffs
(
plot_diffs
(
freq
,
diffs
,
args
.
tolerance
,
freq
,
diffs
,
args
.
tolerance
,
name
,
labelA
,
labelB
,
fom_summary
,
name
,
style_cache
,
style_head
,
fom_summary
,
save
=
save
,
save
=
save
,
)
)
else
:
else
:
...
...
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