eigen/blas
Gael Guennebaud 66e99ab6a1 Relax mixing-type constraints for binary coefficient-wise operators:
- Replace internal::scalar_product_traits<A,B> by Eigen::ScalarBinaryOpTraits<A,B,OP>
- Remove the "functor_is_product_like" helper (was pretty ugly)
- Currently, OP is not used, but it is available to the user for fine grained tuning
- Currently, only the following operators have been generalized: *,/,+,-,=,*=,/=,+=,-=
- TODO: generalize all other binray operators (comparisons,pow,etc.)
- TODO: handle "scalar op array" operators (currently only * is handled)
- TODO: move the handling of the "void" scalar type to ScalarBinaryOpTraits
2016-06-06 15:11:41 +02:00
..
f2c
fortran Remove unused fortran files 2014-12-13 21:41:25 +01:00
testing Update BLAS API unit tests 2015-11-30 22:19:20 +01:00
BandTriangularSolver.h
CMakeLists.txt
common.h Improve constness of level2 blas API. 2016-04-11 17:13:01 +02:00
complex_double.cpp
complex_single.cpp
double.cpp
GeneralRank1Update.h
level1_cplx_impl.h
level1_impl.h Improve constness of level2 blas API. 2016-04-11 17:13:01 +02:00
level1_real_impl.h
level2_cplx_impl.h Improve constness of level2 blas API. 2016-04-11 17:13:01 +02:00
level2_impl.h Improve constness of level2 blas API. 2016-04-11 17:13:01 +02:00
level2_real_impl.h Improve constness of level2 blas API. 2016-04-11 17:13:01 +02:00
level3_impl.h Implement stricter argument checking for SYRK and SY2K and real matrices. To implement the BLAS API they should return info=2 if op='C' is passed for a complex matrix. Without this change, the Eigen BLAS fails the strict zblat3 and cblat3 tests in LAPACK 3.5. 2016-04-27 19:59:44 +02:00
PackedSelfadjointProduct.h
PackedTriangularMatrixVector.h Relax mixing-type constraints for binary coefficient-wise operators: 2016-06-06 15:11:41 +02:00
PackedTriangularSolverVector.h
Rank2Update.h
README.txt
single.cpp Enable and fix -Wdouble-conversion warnings 2016-05-05 13:35:45 +02:00
xerbla.cpp Cygwin does not like weak linking either. 2015-02-28 14:53:11 +01:00

This directory contains a BLAS library built on top of Eigen.

This module is not built by default. In order to compile it, you need to
type 'make blas' from within your build dir.