You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make decorator that executes an agenda in parallel (#1117)
Now you can do
```python3
@pyarts.in_parallel(ws=ws)
def create_agenda_parallel(ws: pyarts.Workspace):
ws.abs_speciesSet(species=["H2O", "CO2"])
ws.atm_pointInit()
```
The two methods are executed in parallel. Note that this will come with
overhead, and the example above is clearly faster to run serial.
0 commit comments