Skip to content

Commit 12b5294

Browse files
committed
Note dask in a couple of places in the README
1 parent 2ee6902 commit 12b5294

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This is a small wrapper around common array libraries that is compatible with
44
the [Array API standard](https://data-apis.org/array-api/latest/). Currently,
5-
NumPy, CuPy, and PyTorch are supported. If you want support for other array
5+
NumPy, CuPy, PyTorch, and Dask are supported. If you want support for other array
66
libraries, or if you encounter any issues, please [open an
77
issue](https://github.com/data-apis/array-api-compat/issues).
88

@@ -56,7 +56,11 @@ import array_api_compat.cupy as cp
5656
import array_api_compat.torch as torch
5757
```
5858

59-
Each will include all the functions from the normal NumPy/CuPy/PyTorch
59+
```py
60+
import array_api_compat.dask as da
61+
```
62+
63+
Each will include all the functions from the normal NumPy/CuPy/PyTorch/dask.array
6064
namespace, except that functions that are part of the array API are wrapped so
6165
that they have the correct array API behavior. In each case, the array object
6266
used will be the same array object from the wrapped library.

0 commit comments

Comments
 (0)