add a wip blas library built on top of Eigen. TODO:

- write extentive unit tests (maybe this already exist in other projects)
- the level2 functions still have to be implemented
This commit is contained in:
Gael Guennebaud
2009-09-25 13:08:39 +02:00
parent bdf603caec
commit 04dc63776a
11 changed files with 1065 additions and 1 deletions

10
blas/CMakeLists.txt Normal file
View File

@@ -0,0 +1,10 @@
set(EigenBlas_SRCS single.cpp double.cpp complex_single.cpp complex_double.cpp)
add_library(eigen_blas SHARED ${EigenBlas_SRCS})
install(TARGETS eigen_blas
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)