File: index.md

package info (click to toggle)
ipyparallel 8.8.0-6
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 12,412 kB
  • sloc: python: 21,991; javascript: 267; makefile: 29; sh: 28
file content (60 lines) | stat: -rw-r--r-- 1,239 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
file_format: mystnb
kernelspec:
  name: python3
mystnb:
  execution_mode: "force"
  remove_code_source: true
---

# examples

Here you will find example notebooks and scripts for working with IPython Parallel.

## Tutorials

```{toctree}
Cluster API
Parallel Magics
progress
Data Publication API
visualizing-tasks
broadcast/Broadcast view
broadcast/memmap Broadcast
broadcast/MPI Broadcast
```

## Examples

```{toctree}
Monitoring an MPI Simulation - 1
Monitoring an MPI Simulation - 2
Parallel Decorator and map
Using MPI with IPython Parallel
Monte Carlo Options
rmt/rmt
```

## Integrating IPython Parallel with other tools

There are lots of cool tools for working with asynchronous and parallel execution. IPython Parallel aims to be fairly compatible with these, both by implementing explicit support via methods such as `Client.become_dask`, and by using standards such as the `concurrent.futures.Future` API.

```{toctree}
Futures
joblib
dask
Using Dill
```

## Non-notebook examples

This directory also contains some examples that are scripts instead of notebooks.

```{code-cell}
import glob
import os

from IPython.display import FileLink, FileLinks, display

FileLinks(".", included_suffixes=[".py"], recursive=True)
```