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
Copy file name to clipboardExpand all lines: README.md
+3-7Lines changed: 3 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ This open source Python library provide several solvers for optimization problem
14
14
It provides the following solvers:
15
15
16
16
* OT Network Flow solver for the linear program/ Earth Movers Distance [1].
17
-
* Entropic regularization OT solver with Sinkhorn Knopp Algorithm [2] and stabilized version [9][10] and greedy SInkhorn [22] with optional GPU implementation (requires cudamat).
17
+
* Entropic regularization OT solver with Sinkhorn Knopp Algorithm [2] and stabilized version [9][10] and greedy SInkhorn [22] with optional GPU implementation (requires cupy).
18
18
* Smooth optimal transport solvers (dual and semi-dual) for KL and squared L2 regularizations [17].
19
19
* Non regularized Wasserstein barycenters [16] with LP solver (only small scale).
20
20
* Bregman projections for Wasserstein barycenter [3], convolutional barycenter [21] and unmixing [4].
@@ -83,12 +83,8 @@ Some sub-modules require additional dependences which are discussed below
83
83
```
84
84
pip install pymanopt autograd
85
85
```
86
-
***ot.gpu** (GPU accelerated OT) depends on cudamat that have to be installed with:
87
-
```
88
-
git clone https://github.com/cudamat/cudamat.git
89
-
cd cudamat
90
-
python setup.py install --user # for user install (no root)
91
-
```
86
+
***ot.gpu** (GPU accelerated OT) depends on cupy that have to be installed following instructions on [this page](https://docs-cupy.chainer.org/en/stable/install.html).
87
+
92
88
93
89
obviously you need CUDA installed and a compatible GPU.
0 commit comments