Dan Foreman-Mackey
Dan Foreman-Mackey
Ref: https://github.com/exoplanet-dev/exoplanet/blob/main/src/exoplanet/light_curves/secondary_eclipse.py
Over in https://github.com/exoplanet-dev/jaxoplanet/pull/144, @shashankdholakia, @dgegen, @lgrcia, and I were discussing what would be the most useful output from the `light_curve` function under the `starry` submodule. Our proposal over there was...
The rotation matrices are block diagonal and in the implementation in #17, the full dense matrix is constructed. This probably isn't what we want in all cases: for larger systems...
Of particular interest to @shashankdholakia, who may be able to sketch out a more fine grained plan for what steps are required. The key point here is that we're trying...
Of particular interest, the rotation matrices might benefit from some reading of the literature to make sure that we're making sensible choices in our implementation. Of possible interest: [this project](https://github.com/astro-informatics/s2fft)...
Not yet ready for review. This is a sketch of an interface to abstract away some of the boiler plate required when defining primitives that get lowered to custom calls....
As far as I can tell, it seems like the `linear` parameter in the `lax.cond_p` primitive only exists for historical reasons. It could be used for type checking in `_cond_transpose`,...
Currently, JAX users who want to use XLA custom calls must interact with private APIs (e.g. `core.Primitive`) and MLIR. This doesn’t provide a great developer experience, and it would be...