get_available_options

phasic.get_available_options()

Get dictionary of available options on this system.

Returns

: dict

Available features and backends

Examples

>>> import phasic as ptd
>>> opts = ptd.get_available_options()
>>> if opts['jax']:
...     ptd.configure(jax=True, jit=True)
... else:
...     ptd.configure(jax=False, backend='cpp')