@@ -2,15 +2,15 @@ from libcpp.memory cimport shared_ptr
22
33ctypedef void (* sgemm_ptr)(bint transA, bint transB, int M, int N, int K,
44 float alpha, const float * A, int lda, const float * B,
5- int ldb, float beta, float * C, int ldc) nogil noexcept
5+ int ldb, float beta, float * C, int ldc) nogil
66
77
88ctypedef void (* saxpy_ptr)(int N, float alpha, const float * X, int incX,
9- float * Y, int incY) nogil noexcept
9+ float * Y, int incY) nogil
1010
1111
1212ctypedef void (* daxpy_ptr)(int N, double alpha, const double * X, int incX,
13- double * Y, int incY) nogil noexcept
13+ double * Y, int incY) nogil
1414
1515
1616# Forward-declaration of the BlasFuncs struct. This struct must be opaque, so
@@ -29,9 +29,9 @@ cdef class CBlas:
2929#
3030# See https://github.com/explosion/thinc/pull/700 for more information.
3131
32- cdef daxpy_ptr daxpy(CBlas cblas) nogil noexcept
33- cdef saxpy_ptr saxpy(CBlas cblas) nogil noexcept
34- cdef sgemm_ptr sgemm(CBlas cblas) nogil noexcept
35- cdef void set_daxpy(CBlas cblas, daxpy_ptr daxpy) nogil noexcept
36- cdef void set_saxpy(CBlas cblas, saxpy_ptr saxpy) nogil noexcept
37- cdef void set_sgemm(CBlas cblas, sgemm_ptr sgemm) nogil noexcept
32+ cdef daxpy_ptr daxpy(CBlas cblas) nogil
33+ cdef saxpy_ptr saxpy(CBlas cblas) nogil
34+ cdef sgemm_ptr sgemm(CBlas cblas) nogil
35+ cdef void set_daxpy(CBlas cblas, daxpy_ptr daxpy) nogil
36+ cdef void set_saxpy(CBlas cblas, saxpy_ptr saxpy) nogil
37+ cdef void set_sgemm(CBlas cblas, sgemm_ptr sgemm) nogil
0 commit comments