Skip to content

Commit 1307799

Browse files
committed
Fix cython's buf. mismatch with numpy's 8bit bools
1 parent 5e89b43 commit 1307799

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/gstools/variogram/estimator.pyx

+5-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ if OPENMP:
1313
cimport numpy as np
1414
from libc.math cimport M_PI, acos, atan2, cos, fabs, isnan, pow, sin, sqrt
1515

16+
# numpy's "bool"
17+
ctypedef unsigned char uint8
18+
1619

1720
def set_num_threads(num_threads):
1821
cdef int num_threads_c = 1
@@ -342,7 +345,7 @@ def structured(
342345

343346
def ma_structured(
344347
const double[:, :] f,
345-
const bint[:, :] mask,
348+
uint8[:, :] mask, # numpy's bools are 8bit vars
346349
str estimator_type='m',
347350
num_threads=None,
348351
):
@@ -365,7 +368,7 @@ def ma_structured(
365368
for i in range(i_max):
366369
for j in range(j_max):
367370
for k in prange(1, k_max-i):
368-
if not mask[i, j] and not mask[i+k, j]:
371+
if mask[i, j] == 0 and mask[i+k, j] == 0:
369372
counts[k] += 1
370373
variogram[k] += estimator_func(f[i, j] - f[i+k, j])
371374

0 commit comments

Comments
 (0)