Skip to content
Snippets Groups Projects
Commit c916c40a authored by Prathamesh Joshi's avatar Prathamesh Joshi
Browse files

inspiral_intrinsics: Memory fix

parent a3511596
No related branches found
No related tags found
1 merge request!267inspiral_intrinsics: Memory fix
Pipeline #438401 passed with warnings
......@@ -112,7 +112,6 @@ class SourcePopulationModel(object):
"""
if filename is not None:
with h5py.File(filename, 'r') as model:
coefficients = model['coefficients'][()]
snr_bp = model['SNR'][()]
try:
model_ids = model['template_id'][()]
......@@ -136,7 +135,9 @@ class SourcePopulationModel(object):
template_indices[template_id] = numpy.where(model_ids==template_id)[0][0]
except IndexError:
raise IndexError("template ID %d is not in this model" % template_id)
self.polys = dict((template_id, PPoly(coefficients[:,:,[template_indices[template_id]]], snr_bp)) for template_id in template_ids)
with h5py.File(filename, 'r') as model:
coefficients = model['coefficients'][:,:,[template_indices[template_id]]]
self.polys = dict((template_id, PPoly(coefficients, snr_bp)) for template_id in template_ids)
self.max_snr = snr_bp.max()
else:
self.polys = None
......
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