Skip to content

Commit 86dc575

Browse files
committed
add nogil annotation to function headers
1 parent b31463f commit 86dc575

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pydiso/mkl_solver.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ cdef extern from 'mkl.h':
4242
void pardiso(_MKL_DSS_HANDLE_t, const int*, const int*, const int*,
4343
const int *, const int *, const void *, const int *,
4444
const int *, int *, const int *, int *,
45-
const int *, void *, void *, int *)
45+
const int *, void *, void *, int *) nogil
4646

4747
void pardiso_64(_MKL_DSS_HANDLE_t, const long_t *, const long_t *, const long_t *,
4848
const long_t *, const long_t *, const void *, const long_t *,
4949
const long_t *, long_t *, const long_t *, long_t *,
50-
const long_t *, void *, void *, long_t *)
50+
const long_t *, void *, void *, long_t *) nogil
5151

5252

5353
#call pardiso (pt, maxfct, mnum, mtype, phase, n, a, ia, ja, perm, nrhs, iparm, msglvl, b, x, error)

0 commit comments

Comments
 (0)