summaryrefslogtreecommitdiff
path: root/ml_exp/math.py
diff options
context:
space:
mode:
Diffstat (limited to 'ml_exp/math.py')
-rw-r--r--ml_exp/math.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ml_exp/math.py b/ml_exp/math.py
index da1fdf08f..253abe5d2 100644
--- a/ml_exp/math.py
+++ b/ml_exp/math.py
@@ -39,7 +39,7 @@ def cholesky_solve(K,
size = K.shape[0]
# Solve Lx=y for x.
- x = np.zeros(size, dtype=float)
+ x = np.zeros(size, dtype=np.float64)
x[0] = y[0] / L[0, 0]
for i in range(1, size):
temp_sum = 0.0
@@ -49,7 +49,7 @@ def cholesky_solve(K,
# Now, solve LTa=x for a.
L2 = L.T
- a = np.zeros(size, dtype=float)
+ a = np.zeros(size, dtype=np.float64)
a[size - 1] = x[size - 1] / L2[size - 1, size - 1]
for i in range(0, size - 1)[::-1]:
temp_sum = 0.0