Skip to content

Commit 25c161d

Browse files
committed
numba fix
1 parent eae437c commit 25c161d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

heliosat/smoothing.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def smooth_data(
5959
return time_smooth, data_smooth
6060

6161

62-
@nb.njit(fastmath=False)
62+
@nb.njit
6363
def _smoothing_closest(
6464
dtp: np.ndarray, dtp_r: np.ndarray, dk_r: np.ndarray, data_smooth: np.ndarray
6565
) -> Tuple[np.ndarray, np.ndarray]:
@@ -74,7 +74,7 @@ def _smoothing_closest(
7474
return t_actual, data_smooth
7575

7676

77-
@nb.njit(fastmath=False)
77+
@nb.njit
7878
def _smoothing_mean(
7979
dtp: np.ndarray,
8080
dtp_r: np.ndarray,
@@ -101,7 +101,7 @@ def _smoothing_mean(
101101
data_smooth[i, k] = vector[k] / total
102102

103103

104-
@nb.njit(fastmath=False)
104+
@nb.njit
105105
def _smoothing_gaussian_kernel(
106106
dtp: np.ndarray,
107107
dtp_r: np.ndarray,

0 commit comments

Comments
 (0)