summaryrefslogtreecommitdiff
path: root/ot
diff options
context:
space:
mode:
authorRomain Tavenard <romain.tavenard@univ-rennes2.fr>2019-06-27 13:29:19 +0200
committerRomain Tavenard <romain.tavenard@univ-rennes2.fr>2019-06-27 13:29:19 +0200
commit362a7f8fa20cf7ae6f2e36d7e47c7ca9f81d3c51 (patch)
treec97a7359bdf7de19d7a1cc325304852622a8f580 /ot
parentc92e595009ad5e2ae6d4b2c040556cffb6316847 (diff)
Added RT as a contributor + "optimized" Cython math operations
Diffstat (limited to 'ot')
-rw-r--r--ot/lp/emd_wrap.pyx6
1 files changed, 3 insertions, 3 deletions
diff --git a/ot/lp/emd_wrap.pyx b/ot/lp/emd_wrap.pyx
index 42b848f..8a4aec9 100644
--- a/ot/lp/emd_wrap.pyx
+++ b/ot/lp/emd_wrap.pyx
@@ -156,11 +156,11 @@ def emd_1d_sorted(np.ndarray[double, ndim=1, mode="c"] u_weights,
cdef int cur_idx = 0
while i < n and j < m:
if metric == 'sqeuclidean':
- m_ij = (u[i] - v[j]) ** 2
+ m_ij = (u[i] - v[j]) * (u[i] - v[j])
elif metric == 'cityblock' or metric == 'euclidean':
- m_ij = abs(u[i] - v[j])
+ m_ij = math.fabs(u[i] - v[j])
elif metric == 'minkowski':
- m_ij = math.pow(abs(u[i] - v[j]), p)
+ m_ij = math.pow(math.fabs(u[i] - v[j]), p)
else:
m_ij = dist(u[i].reshape((1, 1)), v[j].reshape((1, 1)),
metric=metric)[0, 0]