summaryrefslogtreecommitdiff
path: root/ot/__init__.py
diff options
context:
space:
mode:
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']