Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
L
lalsuite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
109
Issues
109
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
28
Merge Requests
28
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lscsoft
lalsuite
Commits
7f6362cb
Commit
7f6362cb
authored
Mar 23, 2018
by
John Douglas Veitch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Split out distance integrator from bayestar_sky_map.c
parent
f62e5c79
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
391 additions
and
2 deletions
+391
-2
lalinference/src/LALInferenceLikelihood.c
lalinference/src/LALInferenceLikelihood.c
+27
-2
lalinference/src/Makefile.am
lalinference/src/Makefile.am
+1
-0
lalinference/src/distance_integrator.c
lalinference/src/distance_integrator.c
+347
-0
lalinference/src/distance_integrator.h
lalinference/src/distance_integrator.h
+16
-0
No files found.
lalinference/src/LALInferenceLikelihood.c
View file @
7f6362cb
...
...
@@ -43,6 +43,8 @@
#include "logaddexp.h"
#include "distance_integrator.h"
typedef
enum
{
GAUSSIAN
,
...
...
@@ -1208,9 +1210,32 @@ static REAL8 LALInferenceFusedFreqDomainLogLikelihood(LALInferenceVariables *cur
if
(
1
){
double
dist_min
,
dist_max
;
static
const
size_t
default_log_radial_integrator_size
=
400
;
LALInferenceGetMinMaxPrior
(
model
->
params
,
"logdistance"
,
&
dist_min
,
&
dist_max
);
double
marg_l
=
dist_integral
(
OptimalSNR
*
OptimalSNR
,
2
.
0
*
d_inner_h
,
exp
(
dist_min
),
exp
(
dist_max
));
loglikelihood
=
-
D
+
log
(
marg_l
);
static
log_radial_integrator
*
integrator
=
NULL
;
#pragma omp threadprivate(integrator)
if
(
integrator
==
NULL
)
{
double
pmax
=
20000
;
/* CHECKME: Max SNR allowed ? */
int
cosmology
=
0
;
/* 0 = euclidean, nonzero co-moving */
/* Initialise the integrator for the first time */
integrator
=
log_radial_integrator_init
(
dist_min
,
dist_max
,
2
,
/* Power of distance in prior */
cosmology
,
pmax
,
default_log_radial_integrator_size
*
5
/* CHECKME: fudge factor of 5 compared to bayestar */
);
if
(
!
integrator
)
XLAL_ERROR
(
XLAL_EFUNC
,
"Unable to initialise distance marginalisation integrator"
);
}
//double marg_l = dist_integral(OptimalSNR*OptimalSNR, 2.0*d_inner_h, exp(dist_min), exp(dist_max));
double
marg_l
=
log_radial_integrator_eval
(
integrator
,
OptimalSNR
/
sqrt
(
2
),
2
.
0
*
d_inner_h
,
log
(
OptimalSNR
/
sqrt
(
2
)),
log
(
2
.
0
*
d_inner_h
));
loglikelihood
=
-
D
+
marg_l
;
}
...
...
lalinference/src/Makefile.am
View file @
7f6362cb
...
...
@@ -75,6 +75,7 @@ liblalinference_la_SOURCES = \
LALInferenceDistanceMarg.c
\
logaddexp.h
\
cubic_interp.c
\
distance_integrator.c
\
$(BAYESTARSRC)
\
$(XMLSRC)
...
...
lalinference/src/distance_integrator.c
0 → 100644
View file @
7f6362cb
/*
* Copyright (C) 2013-2017 Leo Singer
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with with program; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*/
#include "bayestar_cosmology.h"
//#include "omp_interruptible.h"
#include <assert.h>
#include <lal/LALError.h>
#include <gsl/gsl_integration.h>
#include <gsl/gsl_interp.h>
#include <gsl/gsl_sf_bessel.h>
#include <gsl/gsl_sf_exp.h>
#include "distance_integrator.h"
#ifndef _OPENMP
#define omp ignore
#endif
typedef
struct
{
double
scale
;
double
p
;
double
b
;
int
k
,
cosmology
;
}
radial_integrand_params
;
/* Uniform-in-comoving volume prior for the WMAP9 cosmology.
* This is implemented as a cubic spline interpolant.
*
* The following static variables are defined in bayestar_cosmology.h, which
* is automatically generated by bayestar_cosmology.py:
* - dVC_dVL_data
* - dVC_dVL_tmin
* - dVC_dVL_dt
* - dVC_dVL_high_z_slope
* - dVC_dVL_high_z_intercept
*/
static
gsl_spline
*
dVC_dVL_interp
=
NULL
;
static
double
log_dVC_dVL
(
double
DL
)
{
const
double
log_DL
=
log
(
DL
);
if
(
log_DL
<=
dVC_dVL_tmin
)
{
return
0
.
0
;
}
else
if
(
log_DL
>=
dVC_dVL_tmax
)
{
return
dVC_dVL_high_z_slope
*
log_DL
+
dVC_dVL_high_z_intercept
;
}
else
{
return
gsl_spline_eval
(
dVC_dVL_interp
,
log_DL
,
NULL
);
}
}
static
double
radial_integrand
(
double
r
,
void
*
params
)
{
const
radial_integrand_params
*
integrand_params
=
params
;
const
double
scale
=
integrand_params
->
scale
;
const
double
p
=
integrand_params
->
p
;
const
double
b
=
integrand_params
->
b
;
const
int
k
=
integrand_params
->
k
;
double
ret
=
scale
-
gsl_pow_2
(
p
/
r
-
0
.
5
*
b
/
p
);
if
(
integrand_params
->
cosmology
)
ret
+=
log_dVC_dVL
(
r
);
return
gsl_sf_exp_mult
(
ret
,
gsl_sf_bessel_I0_scaled
(
b
/
r
)
*
gsl_pow_int
(
r
,
k
));
}
static
double
log_radial_integrand
(
double
r
,
void
*
params
)
{
const
radial_integrand_params
*
integrand_params
=
params
;
const
double
scale
=
integrand_params
->
scale
;
const
double
p
=
integrand_params
->
p
;
const
double
b
=
integrand_params
->
b
;
const
int
k
=
integrand_params
->
k
;
double
ret
=
log
(
gsl_sf_bessel_I0_scaled
(
b
/
r
)
*
gsl_pow_int
(
r
,
k
))
+
scale
-
gsl_pow_2
(
p
/
r
-
0
.
5
*
b
/
p
);
if
(
integrand_params
->
cosmology
)
ret
+=
log_dVC_dVL
(
r
);
return
ret
;
}
static
double
log_radial_integral
(
double
r1
,
double
r2
,
double
p
,
double
b
,
int
k
,
int
cosmology
)
{
radial_integrand_params
params
=
{
0
,
p
,
b
,
k
,
cosmology
};
double
breakpoints
[
5
];
unsigned
char
nbreakpoints
=
0
;
double
result
=
0
,
abserr
,
log_offset
=
-
INFINITY
;
int
ret
;
if
(
b
!=
0
)
{
/* Calculate the approximate distance at which the integrand attains a
* maximum (middle) and a fraction eta of the maximum (left and right).
* This neglects the scaled Bessel function factors and the power-law
* distance prior. It assumes that the likelihood is approximately of
* the form
*
* -p^2/r^2 + B/r.
*
* Then the middle breakpoint occurs at 1/r = -B/2A, and the left and
* right breakpoints occur when
*
* A/r^2 + B/r = log(eta) - B^2/4A.
*/
static
const
double
eta
=
0
.
01
;
const
double
middle
=
2
*
gsl_pow_2
(
p
)
/
b
;
const
double
left
=
1
/
(
1
/
middle
+
sqrt
(
-
log
(
eta
))
/
p
);
const
double
right
=
1
/
(
1
/
middle
-
sqrt
(
-
log
(
eta
))
/
p
);
/* Use whichever of the middle, left, and right points lie within the
* integration limits as initial subdivisions for the adaptive
* integrator. */
breakpoints
[
nbreakpoints
++
]
=
r1
;
if
(
left
>
breakpoints
[
nbreakpoints
-
1
]
&&
left
<
r2
)
breakpoints
[
nbreakpoints
++
]
=
left
;
if
(
middle
>
breakpoints
[
nbreakpoints
-
1
]
&&
middle
<
r2
)
breakpoints
[
nbreakpoints
++
]
=
middle
;
if
(
right
>
breakpoints
[
nbreakpoints
-
1
]
&&
right
<
r2
)
breakpoints
[
nbreakpoints
++
]
=
right
;
breakpoints
[
nbreakpoints
++
]
=
r2
;
}
else
{
/* Inner breakpoints are undefined because b = 0. */
breakpoints
[
nbreakpoints
++
]
=
r1
;
breakpoints
[
nbreakpoints
++
]
=
r2
;
}
/* Re-scale the integrand so that the maximum value at any of the
* breakpoints is 1. Note that the initial value of the constant term
* is overwritten. */
for
(
unsigned
char
i
=
0
;
i
<
nbreakpoints
;
i
++
)
{
double
new_log_offset
=
log_radial_integrand
(
breakpoints
[
i
],
&
params
);
if
(
new_log_offset
>
log_offset
)
log_offset
=
new_log_offset
;
}
/* If the largest value of the log integrand was -INFINITY, then the
* integrand is 0 everywhere. Set log_offset to 0, because subtracting
* -INFINITY would make the integrand infinite. */
if
(
log_offset
==
-
INFINITY
)
log_offset
=
0
;
params
.
scale
=
-
log_offset
;
{
/* Maximum number of subdivisions for adaptive integration. */
static
const
size_t
n
=
64
;
/* Allocate workspace on stack. Hopefully, a little bit faster than
* using the heap in multi-threaded code. */
double
alist
[
n
];
double
blist
[
n
];
double
rlist
[
n
];
double
elist
[
n
];
size_t
order
[
n
];
size_t
level
[
n
];
gsl_integration_workspace
workspace
=
{
.
alist
=
alist
,
.
blist
=
blist
,
.
rlist
=
rlist
,
.
elist
=
elist
,
.
order
=
order
,
.
level
=
level
,
.
limit
=
n
};
/* Set up integrand data structure. */
const
gsl_function
func
=
{
radial_integrand
,
&
params
};
/* Perform adaptive Gaussian quadrature. */
ret
=
gsl_integration_qagp
(
&
func
,
breakpoints
,
nbreakpoints
,
DBL_MIN
,
1e-8
,
n
,
&
workspace
,
&
result
,
&
abserr
);
/* FIXME: do we care to keep the error estimate around? */
}
/* FIXME: do something with ret */
(
void
)
ret
;
/* Done! */
return
log_offset
+
log
(
result
);
}
log_radial_integrator
*
log_radial_integrator_init
(
double
r1
,
double
r2
,
int
k
,
int
cosmology
,
double
pmax
,
size_t
size
)
{
log_radial_integrator
*
integrator
;
bicubic_interp
*
region0
=
NULL
;
cubic_interp
*
region1
=
NULL
,
*
region2
=
NULL
;
const
double
alpha
=
4
;
const
double
p0
=
0
.
5
*
(
k
>=
0
?
r2
:
r1
);
const
double
xmax
=
log
(
pmax
);
const
double
x0
=
GSL_MIN_DBL
(
log
(
p0
),
xmax
);
const
double
xmin
=
x0
-
(
1
+
M_SQRT2
)
*
alpha
;
const
double
ymax
=
x0
+
alpha
;
const
double
ymin
=
2
*
x0
-
M_SQRT2
*
alpha
-
xmax
;
const
double
d
=
(
xmax
-
xmin
)
/
(
size
-
1
);
/* dx = dy = du */
const
double
umin
=
-
(
1
+
M_SQRT1_2
)
*
alpha
;
const
double
vmax
=
x0
-
M_SQRT1_2
*
alpha
;
double
z0
[
size
][
size
],
z1
[
size
],
z2
[
size
];
/* const double umax = xmax - vmax; */
/* unused */
int
interrupted
=
0
;
// OMP_BEGIN_INTERRUPTIBLE
integrator
=
calloc
(
1
,
sizeof
(
log_radial_integrator
));
#pragma omp parallel for
for
(
size_t
i
=
0
;
i
<
size
*
size
;
i
++
)
{
/*
if (OMP_WAS_INTERRUPTED)
OMP_EXIT_LOOP_EARLY;
*/
const
size_t
ix
=
i
/
size
;
const
size_t
iy
=
i
%
size
;
const
double
x
=
xmin
+
ix
*
d
;
const
double
y
=
ymin
+
iy
*
d
;
const
double
p
=
exp
(
x
);
const
double
r0
=
exp
(
y
);
const
double
b
=
2
*
gsl_pow_2
(
p
)
/
r0
;
/* Note: using this where p > r0; could reduce evaluations by half */
z0
[
ix
][
iy
]
=
log_radial_integral
(
r1
,
r2
,
p
,
b
,
k
,
cosmology
);
}
/*
if (OMP_WAS_INTERRUPTED)
goto done;
*/
region0
=
bicubic_interp_init
(
*
z0
,
size
,
size
,
xmin
,
ymin
,
d
,
d
);
for
(
size_t
i
=
0
;
i
<
size
;
i
++
)
z1
[
i
]
=
z0
[
i
][
size
-
1
];
region1
=
cubic_interp_init
(
z1
,
size
,
xmin
,
d
);
for
(
size_t
i
=
0
;
i
<
size
;
i
++
)
z2
[
i
]
=
z0
[
i
][
size
-
1
-
i
];
region2
=
cubic_interp_init
(
z2
,
size
,
umin
,
d
);
/*
done:
interrupted = OMP_WAS_INTERRUPTED;
OMP_END_INTERRUPTIBLE
*/
if
(
interrupted
||
!
(
integrator
&&
region0
&&
region1
&&
region2
))
{
free
(
integrator
);
free
(
region0
);
free
(
region1
);
free
(
region2
);
XLAL_ERROR_NULL
(
XLAL_ENOMEM
,
"not enough memory to allocate integrator"
);
}
integrator
->
region0
=
region0
;
integrator
->
region1
=
region1
;
integrator
->
region2
=
region2
;
integrator
->
xmax
=
xmax
;
integrator
->
ymax
=
ymax
;
integrator
->
vmax
=
vmax
;
integrator
->
r1
=
r1
;
integrator
->
r2
=
r2
;
integrator
->
k
=
k
;
return
integrator
;
}
void
log_radial_integrator_free
(
log_radial_integrator
*
integrator
)
{
if
(
integrator
)
{
bicubic_interp_free
(
integrator
->
region0
);
integrator
->
region0
=
NULL
;
cubic_interp_free
(
integrator
->
region1
);
integrator
->
region1
=
NULL
;
cubic_interp_free
(
integrator
->
region2
);
integrator
->
region2
=
NULL
;
}
free
(
integrator
);
}
double
log_radial_integrator_eval
(
const
log_radial_integrator
*
integrator
,
double
p
,
double
b
,
double
log_p
,
double
log_b
)
{
const
double
x
=
log_p
;
const
double
y
=
M_LN2
+
2
*
log_p
-
log_b
;
double
result
;
assert
(
x
<=
integrator
->
xmax
);
if
(
p
==
0
)
{
/* note: p2 == 0 implies b == 0 */
assert
(
b
==
0
);
int
k1
=
integrator
->
k
+
1
;
if
(
k1
==
0
)
{
result
=
log
(
log
(
integrator
->
r2
/
integrator
->
r1
));
}
else
{
result
=
log
((
gsl_pow_int
(
integrator
->
r2
,
k1
)
-
gsl_pow_int
(
integrator
->
r1
,
k1
))
/
k1
);
}
}
else
{
if
(
y
>=
integrator
->
ymax
)
{
result
=
cubic_interp_eval
(
integrator
->
region1
,
x
);
}
else
{
const
double
v
=
0
.
5
*
(
x
+
y
);
if
(
v
<=
integrator
->
vmax
)
{
const
double
u
=
0
.
5
*
(
x
-
y
);
result
=
cubic_interp_eval
(
integrator
->
region2
,
u
);
}
else
{
result
=
bicubic_interp_eval
(
integrator
->
region0
,
x
,
y
);
}
}
result
+=
gsl_pow_2
(
0
.
5
*
b
/
p
);
}
return
result
;
}
lalinference/src/distance_integrator.h
0 → 100644
View file @
7f6362cb
#include <gsl/gsl_spline.h>
#include <gsl/gsl_interp.h>
#include "cubic_interp.h"
typedef
struct
{
bicubic_interp
*
region0
;
cubic_interp
*
region1
;
cubic_interp
*
region2
;
double
xmax
,
ymax
,
vmax
,
r1
,
r2
;
int
k
;
}
log_radial_integrator
;
log_radial_integrator
*
log_radial_integrator_init
(
double
r1
,
double
r2
,
int
k
,
int
cosmology
,
double
pmax
,
size_t
size
);
void
log_radial_integrator_free
(
log_radial_integrator
*
integrator
);
double
log_radial_integrator_eval
(
const
log_radial_integrator
*
integrator
,
double
p
,
double
b
,
double
log_p
,
double
log_b
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment