Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
41
venv/Lib/site-packages/sklearn/utils/_cython_blas.pxd
Normal file
41
venv/Lib/site-packages/sklearn/utils/_cython_blas.pxd
Normal file
|
@ -0,0 +1,41 @@
|
|||
from cython cimport floating
|
||||
|
||||
|
||||
cpdef enum BLAS_Order:
|
||||
RowMajor # C contiguous
|
||||
ColMajor # Fortran contiguous
|
||||
|
||||
|
||||
cpdef enum BLAS_Trans:
|
||||
NoTrans = 110 # correspond to 'n'
|
||||
Trans = 116 # correspond to 't'
|
||||
|
||||
|
||||
# BLAS Level 1 ################################################################
|
||||
cdef floating _dot(int, floating*, int, floating*, int) nogil
|
||||
|
||||
cdef floating _asum(int, floating*, int) nogil
|
||||
|
||||
cdef void _axpy(int, floating, floating*, int, floating*, int) nogil
|
||||
|
||||
cdef floating _nrm2(int, floating*, int) nogil
|
||||
|
||||
cdef void _copy(int, floating*, int, floating*, int) nogil
|
||||
|
||||
cdef void _scal(int, floating, floating*, int) nogil
|
||||
|
||||
cdef void _rotg(floating*, floating*, floating*, floating*) nogil
|
||||
|
||||
cdef void _rot(int, floating*, int, floating*, int, floating, floating) nogil
|
||||
|
||||
# BLAS Level 2 ################################################################
|
||||
cdef void _gemv(BLAS_Order, BLAS_Trans, int, int, floating, floating*, int,
|
||||
floating*, int, floating, floating*, int) nogil
|
||||
|
||||
cdef void _ger(BLAS_Order, int, int, floating, floating*, int, floating*, int,
|
||||
floating*, int) nogil
|
||||
|
||||
# BLASLevel 3 ################################################################
|
||||
cdef void _gemm(BLAS_Order, BLAS_Trans, BLAS_Trans, int, int, int, floating,
|
||||
floating*, int, floating*, int, floating, floating*,
|
||||
int) nogil
|
Loading…
Add table
Add a link
Reference in a new issue