Skip to content
Snippets Groups Projects
Commit 5d507cad authored by Jameson Graef Rollins's avatar Jameson Graef Rollins
Browse files

test: update plot style

Use overlaid dashes for the head traces.

Also do comparison in preferred IFO order.
parent 9ff4ba54
No related branches found
No related tags found
No related merge requests found
Pipeline #119157 passed
...@@ -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, labelB, fom_title='', name, styleA, styleB, 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=labelA) axl.loglog(freq, np.sqrt(noiseA), **styleA)
axl.loglog(freq, np.sqrt(noiseB), label=labelB) axl.loglog(freq, np.sqrt(noiseB), **styleB)
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, labelB, 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='-')
labelB = '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)
tracesB = Budget(freq).run() traces_head = Budget(freq).run()
if inspiral_range: if inspiral_range:
totalA = tracesA['Total'][0] total_cache = traces_cache['Total'][0]
totalB = tracesB['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)
fomA = range_func(freq, totalA, H=H) fom_cache = range_func(freq, total_cache, H=H)
tracesA['int73'] = inspiral_range.int73(freq, totalA)[1], None traces_cache['int73'] = inspiral_range.int73(freq, total_cache)[1], None
fomB = range_func(freq, totalB, H=H) fom_head = range_func(freq, total_head, H=H)
tracesB['int73'] = inspiral_range.int73(freq, totalB)[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:
{labelA}: {fomA:.2f} Mpc {label_cache}: {fom_cache:.2f} Mpc
{labelB}: {fomB:.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'],
labelA=labelA, label_cache=style_cache['label'],
fomA=fomA, fom_cache=fom_cache,
labelB=labelB, label_head=style_head['label'],
fomB=fomB, fom_head=fom_head,
) )
else: else:
fom_summary = '' fom_summary = ''
diffs = compare_traces(tracesA, tracesB, 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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment