Configuration

class starry.config
lazy

Indicates whether or not the map evaluates things lazily.

If True, all attributes and method return values are unevaluated theano nodes. This is particularly useful for model building and integration with pymc3. In lazy mode, call the .eval() method on any theano node to compute and return its numerical value.

If False, starry will automatically compile methods called by the user, and all methods will return numerical values as in the previous version of the code.

profile

Enable function profiling in lazy mode.

quiet

Indicates whether or not to suppress informational messages.