Skip to content

v.0.8.6

Choose a tag to compare

@MetinSa MetinSa released this 21 Mar 02:11
· 129 commits to main since this release

[0.8.6] - 2024-03-21

Deprecated

Deprecated the keyword parallel used when initializing a Zodipy model. Instead, wether or not ZodiPy will parallelize the line-of-sight integrals is inferred from n_proc, where n_proc=1, which is the default value, means no parallelization.

Example

import zodipy

# no parallelization
model = zodipy.Zodipy()

# parallelization over 10 cores
model = zodipy.Zodipy(n_proc=10)