summaryrefslogtreecommitdiff
path: root/ot/gpu/__init__.py
blob: de4825ddcaa51005fd57ba032b8e693a03bb7f0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- coding: utf-8 -*-

from . import bregman
from . import da
from .bregman import sinkhorn

from . import utils
from .utils import dist, to_gpu, to_np


# Author: Remi Flamary <remi.flamary@unice.fr>
#         Leo Gautheron <https://github.com/aje>
#
# License: MIT License

__all__ = ["utils", "dist", "sinkhorn"]