📄 cblas.h
字号:
#define INDEX int#define OFFSET(N, incX) ((incX) > 0 ? 0 : ((N) - 1) * (-(incX)))#define BLAS_ERROR(x) cblas_xerbla(0, __FILE__, x); #define CONJUGATE(x) ((x) == CblasConjTrans)#define TRANSPOSE(x) ((x) == CblasTrans || (x) == CblasConjTrans)#define UPPER(x) ((x) == CblasUpper)#define LOWER(x) ((x) == CblasLower)/* Handling of packed complex types... */#define REAL(a,i) (((BASE *) a)[2*(i)])#define IMAG(a,i) (((BASE *) a)[2*(i)+1])#define REAL0(a) (((BASE *)a)[0])#define IMAG0(a) (((BASE *)a)[1])#define CONST_REAL(a,i) (((const BASE *) a)[2*(i)])#define CONST_IMAG(a,i) (((const BASE *) a)[2*(i)+1])#define CONST_REAL0(a) (((const BASE *)a)[0])#define CONST_IMAG0(a) (((const BASE *)a)[1])#define GB(KU,KL,lda,i,j) ((KU+1+(i-j))*lda + j)#define TRCOUNT(N,i) ((((i)+1)*(2*(N)-(i)))/2)/* #define TBUP(N,i,j) *//* #define TBLO(N,i,j) */#define TPUP(N,i,j) (TRCOUNT(N,(i)-1)+(j)-(i))#define TPLO(N,i,j) (((i)*((i)+1))/2 + (j))
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -