summaryrefslogtreecommitdiff
path: root/ot/__init__.py
diff options
context:
space:
mode:
authorLeo gautheron <gautheron@iv-cm-359.creatis.insa-lyon.fr>2017-04-20 12:12:15 +0200
committerLeo gautheron <gautheron@iv-cm-359.creatis.insa-lyon.fr>2017-04-20 12:12:15 +0200
commit16f51f971607efab2c73958d207c582b389406c8 (patch)
tree299a4f6f13faf8545d2144767e9a7791098aacf8 /ot/__init__.py
parent48ec27d8e1c2599bd6d9015d15f4204b8116af28 (diff)
sinkhorn GPU implementation
Diffstat (limited to 'ot/__init__.py')
-rw-r--r--ot/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/ot/__init__.py b/ot/__init__.py
index d89b3a3..702269c 100644
--- a/ot/__init__.py
+++ b/ot/__init__.py
@@ -9,6 +9,7 @@ from . import utils
from . import datasets
from . import plot
from . import da
+from . import gpu
# OT functions
from .lp import emd, emd2
@@ -20,6 +21,7 @@ from .utils import dist, unif, tic, toc, toq
__version__ = "0.2"
-__all__ = ["emd", "emd2", "sinkhorn", "utils", 'datasets', 'bregman', 'lp',
+__all__ = ["emd", "emd2", "sinkhorn", "utils", 'datasets', 'bregman', 'lp',
'plot', 'tic', 'toc', 'toq',
- 'dist', 'unif', 'barycenter', 'sinkhorn_lpl1_mm', 'da', 'optim']
+ 'dist', 'unif', 'barycenter', 'sinkhorn_lpl1_mm', 'da', 'optim',
+ 'gpu']