Source code for pytransit.models.ma_quadratic_cl

#  PyTransit: fast and easy exoplanet transit modelling in Python.
#  Copyright (C) 2010-2019  Hannu Parviainen
#
#  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 3 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 this program.  If not, see <https://www.gnu.org/licenses/>.
#
#  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 3 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 this program.  If not, see <https://www.gnu.org/licenses/>.
from pathlib import Path
from typing import Union, Optional

import numpy as np
import pyopencl as cl
from os.path import dirname, join

import warnings

from pkg_resources import resource_filename
from pyopencl import CompilerWarning

from numpy import array, uint32, float32, int32, asarray, zeros, ones, unique, atleast_2d, squeeze, ndarray, empty, \
    concatenate

from .numba.ma_quadratic_nb import calculate_interpolation_tables
from .transitmodel import TransitModel

warnings.filterwarnings('ignore', category=CompilerWarning)

[docs]class QuadraticModelCL(TransitModel): """ OpenCL implementation of the transit light curve model with quadratic limb darkening by Mandel and Agol (2002). This class implements the quadratic transit model by Mandel & Agol (ApJ 580, L171-L175, 2002) in OpenCL. The class can replace `pytransit.QuadraticModel` directly, and offers in most cases a significant performance boost with some drawbacks (see the notes below). Notes ---- - All the calculations are done in **single precision**. This can affect the results when modelling extremely shallow transits, and will certainly affect the model if the times are given in JD. The times should be given relative to some constant epoch that maximises the precision (see `pytransit.lpf.lpf.BaseLPF` for an example). """
[docs] def __init__(self, klims: tuple = (0.05, 0.25), nk: int = 256, nz: int = 256, cl_ctx=None, cl_queue=None) -> None: """Transit model with quadratic limb darkening (Mandel & Agol, ApJ 580, L171-L175, 2002). Parameters ---------- klims : tuple, optional Radius ratio limits (kmin, kmax) for the interpolated model. nk : int, optional Radius ratio grid size for the interpolated model. nz : int, optional Normalized distance grid size for the interpolated model. cl_ctx: optional OpenCL context. cl_queue: optional OpenCL queue """ super().__init__() self.ctx = cl_ctx or cl.create_some_context() self.queue = cl_queue or cl.CommandQueue(self.ctx) self.ed,self.le,self.ld,self.kt,self.zt = map(lambda a: np.array(a,dtype=float32,order='C'), calculate_interpolation_tables(klims[0],klims[1],nk,nz)) self.klims = klims self.nk = int32(nk) self.nz = int32(nz) self.nptb = 0 self.npb = 0 self.u = np.array([]) self.f = None self.k0, self.k1 = map(float32, self.kt[[0,-1]]) self.dk = float32(self.kt[1]-self.kt[0]) self.dz = float32(self.zt[1]-self.zt[0]) self.pv = array([]) mf = cl.mem_flags # Create the buffers for the Mandel & Agol coefficient arrays self._b_ed = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.ed) self._b_le = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.le) self._b_ld = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.ld) self._b_kt = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.kt) self._b_zt = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.zt) self.time = None self.lcids = None self.pbids = None self.nsamples = None self.exptimes = None self.vajs: Optional[ndarray] = None # Declare the buffers for the ld coefficients, time, and flux arrays. These will # be initialised when the model is first evaluated, and reinitialised if the # array sizes change. # self._b_u = None # Limb darkening coefficient buffer self._b_time = None # Time buffer self._b_f = None # Flux buffer self._b_p = None # Parameter vector buffer self._b_vajs = None self._time_id = None # Time array ID rd = Path(resource_filename('pytransit', 'models/opencl')) po = rd / 'orbits.cl' pm = rd / 'ma_quadratic.cl' self.prg = cl.Program(self.ctx, po.read_text() + pm.read_text()).build()
[docs] def set_data(self, time, lcids=None, pbids=None, nsamples=None, exptimes=None): mf = cl.mem_flags if self._b_time is not None: self._b_time.release() self._b_lcids.release() self._b_pbids.release() self._b_nsamples.release() self._b_etimes.release() self.nlc = uint32(1 if lcids is None else unique(lcids).size) self.npb = uint32(1 if pbids is None else unique(pbids).size) self.nptb = time.size #TODO: Fix nsamples and exptimes in cases where a scalar is given. self.time = asarray(time, dtype='float32') self.lcids = zeros(time.size, 'uint32') if lcids is None else asarray(lcids, dtype='uint32') self.pbids = zeros(self.nlc, 'uint32') if pbids is None else asarray(pbids, dtype='uint32') self.nsamples = ones(self.nlc, 'uint32') if nsamples is None else asarray(nsamples, dtype='uint32') self.exptimes = ones(self.nlc, 'float32') if exptimes is None else asarray(exptimes, dtype='float32') self._b_time = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.time) self._b_lcids = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.lcids) self._b_pbids = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.pbids) self._b_nsamples = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.nsamples) self._b_etimes = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.exptimes)
[docs] def evaluate(self, k: Union[float, ndarray], ldc: ndarray, t0: Union[float, ndarray], p: Union[float, ndarray], a: Union[float, ndarray], i: Union[float, ndarray], e: Union[float, ndarray] = None, w: Union[float, ndarray] = None, copy: bool = True) -> ndarray: """Evaluate the transit model for a set of scalar or vector parameters. Parameters ---------- k Radius ratio(s) either as a single float, 1D vector, or 2D array. ldc Limb darkening coefficients as a 1D or 2D array. t0 Transit center(s) as a float or a 1D vector. p Orbital period(s) as a float or a 1D vector. a Orbital semi-major axis (axes) divided by the stellar radius as a float or a 1D vector. i Orbital inclination(s) as a float or a 1D vector. e : optional Orbital eccentricity as a float or a 1D vector. w : optional Argument of periastron as a float or a 1D vector. Notes ----- The model can be evaluated either for one set of parameters or for many sets of parameters simultaneously. In the first case, the orbital parameters should all be given as floats. In the second case, the orbital parameters should be given as a 1D array-like. Returns ------- ndarray Modelled flux either as a 1D or 2D ndarray. """ npv = 1 if isinstance(p, float) else len(p) k = asarray(k) if npv == 1: nk = k.size else: if k.ndim == 1: k = k.reshape([npv, 1]) nk = 1 else: nk = k.shape[1] if e is None: e, w = 0.0, 0.0 pvp = empty((npv, nk + 6), dtype=float32) pvp[:, :nk] = k pvp[:, nk] = t0 pvp[:, nk + 1] = p pvp[:, nk + 2] = a pvp[:, nk + 3] = i pvp[:, nk + 4] = e pvp[:, nk + 5] = w ldc = atleast_2d(ldc).astype(float32) self.npv = uint32(pvp.shape[0]) self.spv = uint32(pvp.shape[1]) if ldc.ndim == 3: ldc = ldc.reshape([npv, -1]) # Release and reinitialise the GPU buffers if the sizes of the time or # limb darkening coefficient arrays change. if (ldc.size != self.u.size) or (pvp.size != self.pv.size): assert self.npb == ldc.shape[1] // 2 if self._b_f is not None: self._b_f.release() self._b_u.release() self._b_p.release() self._b_vajs.release() self.pv = zeros(pvp.shape, float32) self.u = zeros((self.npv, 2 * self.npb), float32) self.f = zeros((self.npv, self.nptb), float32) self.vajs = zeros((self.npv, 9), float32) mf = cl.mem_flags self._b_f = cl.Buffer(self.ctx, mf.WRITE_ONLY, self.time.nbytes * self.npv) self._b_u = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.u) self._b_p = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.pv) self._b_vajs = cl.Buffer(self.ctx, mf.READ_WRITE, float32().nbytes*self.npv*9) # Copy the limb darkening coefficient array to the GPU cl.enqueue_copy(self.queue, self._b_u, ldc) # Copy the parameter vector to the GPU self.pv[:] = pvp cl.enqueue_copy(self.queue, self._b_p, self.pv) self.prg.vajs_from_paiew_v(self.queue, (self.npv, ), None, self.spv, self._b_p, self._b_vajs) self.prg.ma_eccentric_pop(self.queue, (self.npv, self.nptb), None, self._b_time, self._b_lcids, self._b_pbids, self._b_p, self._b_u, self._b_ed, self._b_le, self._b_ld, self._b_nsamples, self._b_etimes, self._b_vajs, self.k0, self.k1, self.nk, self.nz, self.dk, self.dz, self.spv, self.nlc, self.npb, self._b_f) if copy: cl.enqueue_copy(self.queue, self.f, self._b_f) return squeeze(self.f) else: return None
[docs] def evaluate_ps(self, k: Union[float, ndarray], ldc: ndarray, t0: float, p: float, a: float, i: float, e: float = 0.0, w: float = 0.0, copy: bool = True): """Evaluate the transit model for a set of scalar parameters. Parameters ---------- k : array-like Radius ratio(s) either as a single float or an 1D array. ldc : array-like Limb darkening coefficients as a 1D array. t0 : float Transit center as a float. p : float Orbital period as a float. a : float Orbital semi-major axis divided by the stellar radius as a float. i : float Orbital inclination(s) as a float. e : float, optional Orbital eccentricity as a float. w : float, optional Argument of periastron as a float. Returns ------- ndarray Modelled flux as a 1D ndarray. """ if isinstance(k, float): pv = array([[k, t0, p, a, i, e, w]], float32) else: pv = concatenate([k, [t0, p, a, i, e, w]]).astype(float32) return self.evaluate_pv(pv, ldc, copy)
[docs] def evaluate_pv(self, pvp: ndarray, ldc: ndarray, copy: bool = True): """Evaluate the transit model for 2D parameter array. Parameters ---------- pvp Parameter array with a shape `(npv, npar)` where `npv` is the number of parameter vectors, and each row contains a set of parameters `[k, t0, p, a, i, e, w]`. The radius ratios can also be given per passband, in which case the row should be structured as `[k_0, k_1, k_2, ..., k_npb, t0, p, a, i, e, w]`. ldc Limb darkening coefficient array with shape `(npv, 2*npb)`, where `npv` is the number of parameter vectors and `npb` is the number of passbands. Notes ----- This version of the `evaluate` method is optimized for calculating several models in parallel, such as when using *emcee* for MCMC sampling. Returns ------- ndarray Modelled flux either as a 1D or 2D ndarray. """ pvp = atleast_2d(pvp) ldc = atleast_2d(ldc).astype(float32) self.npv = uint32(pvp.shape[0]) self.spv = uint32(pvp.shape[1]) if pvp.shape[0] != ldc.shape[0]: raise ValueError("The parameter array and the ldc array have incompatible dimensions.") # Release and reinitialise the GPU buffers if the sizes of the time or # limb darkening coefficient arrays change. if (ldc.size != self.u.size) or (pvp.size != self.pv.size): assert self.npb == ldc.shape[1] // 2 if self._b_f is not None: self._b_f.release() self._b_u.release() self._b_p.release() self._b_vajs.release() self.pv = zeros(pvp.shape, float32) self.u = zeros((self.npv, 2 * self.npb), float32) self.f = zeros((self.npv, self.nptb), float32) self.vajs = zeros((self.npv, 9), float32) mf = cl.mem_flags self._b_f = cl.Buffer(self.ctx, mf.WRITE_ONLY, self.time.nbytes * self.npv) self._b_u = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.u) self._b_p = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.pv) self._b_vajs = cl.Buffer(self.ctx, mf.READ_WRITE, float32().nbytes*self.npv*9) # Copy the limb darkening coefficient array to the GPU cl.enqueue_copy(self.queue, self._b_u, ldc) # Copy the parameter vector to the GPU self.pv[:] = pvp cl.enqueue_copy(self.queue, self._b_p, self.pv) self.prg.vajs_from_paiew_v(self.queue, (self.npv, ), None, self.spv, self._b_p, self._b_vajs) self.prg.ma_eccentric_pop(self.queue, (self.npv, self.nptb), None, self._b_time, self._b_lcids, self._b_pbids, self._b_p, self._b_u, self._b_ed, self._b_le, self._b_ld, self._b_nsamples, self._b_etimes, self._b_vajs, self.k0, self.k1, self.nk, self.nz, self.dk, self.dz, self.spv, self.nlc, self.npb, self._b_f) if copy: cl.enqueue_copy(self.queue, self.f, self._b_f) return squeeze(self.f) else: return None
def evaluate_pv_ttv(self, pvp: ndarray, ldc: ndarray, copy: bool = True, tdv: bool = False): pvp = atleast_2d(pvp) ldc = atleast_2d(ldc).astype(float32) self.npv = uint32(pvp.shape[0]) self.spv = uint32(pvp.shape[1]) # Release and reinitialise the GPU buffers if the sizes of the time or # limb darkening coefficient arrays change. if (ldc.size != self.u.size) or (pvp.size != self.pv.size): assert self.npb == ldc.shape[1] // 2 if self._b_f is not None: self._b_f.release() self._b_u.release() self._b_p.release() self.pv = zeros(pvp.shape, float32) self.u = zeros((self.npv, 2*self.npb), float32) self.f = zeros((self.npv, self.time.size), float32) mf = cl.mem_flags self._b_f = cl.Buffer(self.ctx, mf.WRITE_ONLY, self.time.nbytes * self.npv) self._b_u = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.u) self._b_p = cl.Buffer(self.ctx, mf.READ_ONLY | mf.COPY_HOST_PTR, hostbuf=self.pv) # Copy the limb darkening coefficient array to the GPU cl.enqueue_copy(self.queue, self._b_u, ldc) # Copy the parameter vector to the GPU self.pv[:] = pvp cl.enqueue_copy(self.queue, self._b_p, self.pv) if tdv: self.prg.ma_eccentric_pop_tdv(self.queue, (self.npv, self.nptb), None, self._b_time, self._b_lcids, self._b_pbids, self._b_p, self._b_u, self._b_ed, self._b_le, self._b_ld, self._b_nsamples, self._b_etimes, self.k0, self.k1, self.nk, self.nz, self.dk, self.dz, self.spv, self.nlc, self.npb, self._b_f) else: self.prg.ma_eccentric_pop_ttv(self.queue, (self.npv, self.nptb), None, self._b_time, self._b_lcids, self._b_pbids, self._b_p, self._b_u, self._b_ed, self._b_le, self._b_ld, self._b_nsamples, self._b_etimes, self.k0, self.k1, self.nk, self.nz, self.dk, self.dz, self.spv, self.nlc, self.npb, self._b_f) if copy: cl.enqueue_copy(self.queue, self.f, self._b_f) return self.f else: return None