Linear Algebra
Copyright (C) 2005 IENT-RWTH Aachen
GENIAL implements some linear algebra functions, similar to BLAS functions, that benefit from SIMD instructions (SSE/SSE2/SSE3) and cache memory optimizations.
See the C interface for an exact BLAS syntax.
Include
blas/dot.h blas/copy.h blas/gemv.h blas/gemm.h
axpy |
Y=a*X+Y |
cdot |
conj(X).Y |
copy |
Y=X |
dot |
X.Y |
gemm |
C=a*mul(A,B)+b*C |
gemv |
Y=a*mul(A,X)+b*Y |
scal |
X=a*X |

