How to use the exoplanet.theano_ops.build_utils.get_header_dirs function in exoplanet

To help you get started, we’ve selected a few exoplanet examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github dfm / exoplanet / exoplanet / theano_ops / starry / base_op.py View on Github external
def c_header_dirs(self, compiler):
        return get_header_dirs(eigen=True)
github dfm / exoplanet / exoplanet / theano_ops / celerite / base_op.py View on Github external
def c_header_dirs(self, compiler):
        return get_header_dirs(eigen=True)
github dfm / exoplanet / exoplanet / theano_ops / kepler / kepler.py View on Github external
def c_header_dirs(self, compiler):
        return get_header_dirs(eigen=False)
github dfm / exoplanet / exoplanet / theano_ops / contact / contact.py View on Github external
def c_header_dirs(self, compiler):
        return get_header_dirs(eigen=False)
github dfm / exoplanet / exoplanet / theano_ops / interp / regular_grid.py View on Github external
def c_header_dirs(self, compiler):
        return [
            pkg_resources.resource_filename(__name__, "include")
        ] + get_header_dirs()