Skip to content

Commit

Permalink
Revert "remove unused numba import"
Browse files Browse the repository at this point in the history
This reverts commit 1b8e71e.
  • Loading branch information
theAeon committed Feb 27, 2023
1 parent f6aeafc commit 309e635
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pyliger/factorization/_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import scipy.sparse as sps
import numpy.linalg as nla
import scipy.linalg as sla
from numba import jit, njit, prange
from .._utilities import _h5_idx_generator


Expand Down Expand Up @@ -129,7 +130,7 @@ def _update_H_HALS(H, V, W, X, value_lambda):
"""
#@jit(nopython=True)
def _update_W_HALS(A, B, W, V):
for j in range(W.shape[1]):
W_update_numerator = np.zeros(W.shape[0])
W_update_denominator = 0.0
Expand Down

0 comments on commit 309e635

Please sign in to comment.