Blender Git Loki
Git Commits -> Revision 4f1c674
Revision 4f1c674 by Brecht Van Lommel (master) July 13, 2004, 11:42 (GMT) |
Added SuperLU 3.0: http://crd.lbl.gov/~xiaoye/SuperLU/ This is a library to solve sparse matrix systems (type A*x=B). It is able to solve large systems very FAST. Only the necessary parts of the library are included to limit file size and compilation time. This means the example files, fortran interface, test files, matlab interface, cblas library, complex number part and build system have been left out. All (gcc) warnings have been fixed too. This library will be used for LSCM UV unwrapping. With this library, LSCM unwrapping can be calculated in a split second, making the unwrapping proces much more interactive. Added OpenNL (Open Numerical Libary): http://www.loria.fr/~levy/OpenNL/ OpenNL is a library to easily construct and solve sparse linear systems. We use a stripped down version, as an interface to SuperLU. This library was kindly given to use by Bruno Levy. |
Commit Details:
Full Hash: 4f1c674ee02e07a6986a54a312d7fb9e2547e950
SVN Revision: 2786
Parent Commit: 4a13a57
Lines Changed: +13799, -3
46 Added Paths:
/intern/opennl/doc/OpenNL_License.txt (+341, -0) (View)
/intern/opennl/doc/OpenNL_Readme.txt (+13, -0) (View)
/intern/opennl/doc/SuperLU_License.txt (+31, -0) (View)
/intern/opennl/doc/SuperLU_Readme.txt (+52, -0) (View)
/intern/opennl/extern/ONL_opennl.h (+163, -0) (View)
/intern/opennl/intern/Makefile (+43, -0)
/intern/opennl/intern/opennl.c (+1151, -0) (View)
/intern/opennl/Makefile (+67, -0)
/intern/opennl/SConscript (+43, -0) (View)
/intern/opennl/superlu/Cnames.h (+281, -0) (View)
/intern/opennl/superlu/colamd.c (+2583, -0) (View)
/intern/opennl/superlu/colamd.h (+67, -0) (View)
/intern/opennl/superlu/get_perm_c.c (+453, -0) (View)
/intern/opennl/superlu/heap_relax_snode.c (+116, -0) (View)
/intern/opennl/superlu/lsame.c (+70, -0) (View)
/intern/opennl/superlu/Makefile (+40, -0)
/intern/opennl/superlu/memory.c (+207, -0) (View)
/intern/opennl/superlu/mmd.c (+1012, -0) (View)
/intern/opennl/superlu/relax_snode.c (+71, -0) (View)
/intern/opennl/superlu/scolumn_bmod.c (+353, -0) (View)
/intern/opennl/superlu/scolumn_dfs.c (+270, -0) (View)
/intern/opennl/superlu/scopy_to_ucol.c (+105, -0) (View)
/intern/opennl/superlu/sgssv.c (+221, -0) (View)
/intern/opennl/superlu/sgstrf.c (+433, -0) (View)
/intern/opennl/superlu/sgstrs.c (+331, -0) (View)
/intern/opennl/superlu/smemory.c (+676, -0) (View)
/intern/opennl/superlu/smyblas2.c (+225, -0) (View)
/intern/opennl/superlu/spanel_bmod.c (+449, -0) (View)
/intern/opennl/superlu/spanel_dfs.c (+249, -0) (View)
/intern/opennl/superlu/spivotL.c (+173, -0) (View)
/intern/opennl/superlu/spruneL.c (+149, -0) (View)
/intern/opennl/superlu/sp_coletree.c (+332, -0) (View)
/intern/opennl/superlu/sp_ienv.c (+65, -0) (View)
/intern/opennl/superlu/sp_preorder.c (+203, -0) (View)
/intern/opennl/superlu/ssnode_bmod.c (+117, -0) (View)
/intern/opennl/superlu/ssnode_dfs.c (+106, -0) (View)
/intern/opennl/superlu/ssp_blas2.c (+469, -0) (View)
/intern/opennl/superlu/ssp_blas3.c (+121, -0) (View)
/intern/opennl/superlu/ssp_defs.h (+234, -0) (View)
/intern/opennl/superlu/strsv.c (+331, -0) (View)
/intern/opennl/superlu/superlu_timer.c (+55, -0) (View)
/intern/opennl/superlu/supermatrix.h (+140, -0) (View)
/intern/opennl/superlu/sutil.c (+478, -0) (View)
/intern/opennl/superlu/util.c (+391, -0) (View)
/intern/opennl/superlu/util.h (+267, -0) (View)
/intern/opennl/superlu/xerbla.c (+43, -0) (View)
/intern/opennl/doc/OpenNL_Readme.txt (+13, -0) (View)
/intern/opennl/doc/SuperLU_License.txt (+31, -0) (View)
/intern/opennl/doc/SuperLU_Readme.txt (+52, -0) (View)
/intern/opennl/extern/ONL_opennl.h (+163, -0) (View)
/intern/opennl/intern/Makefile (+43, -0)
/intern/opennl/intern/opennl.c (+1151, -0) (View)
/intern/opennl/Makefile (+67, -0)
/intern/opennl/SConscript (+43, -0) (View)
/intern/opennl/superlu/Cnames.h (+281, -0) (View)
/intern/opennl/superlu/colamd.c (+2583, -0) (View)
/intern/opennl/superlu/colamd.h (+67, -0) (View)
/intern/opennl/superlu/get_perm_c.c (+453, -0) (View)
/intern/opennl/superlu/heap_relax_snode.c (+116, -0) (View)
/intern/opennl/superlu/lsame.c (+70, -0) (View)
/intern/opennl/superlu/Makefile (+40, -0)
/intern/opennl/superlu/memory.c (+207, -0) (View)
/intern/opennl/superlu/mmd.c (+1012, -0) (View)
/intern/opennl/superlu/relax_snode.c (+71, -0) (View)
/intern/opennl/superlu/scolumn_bmod.c (+353, -0) (View)
/intern/opennl/superlu/scolumn_dfs.c (+270, -0) (View)
/intern/opennl/superlu/scopy_to_ucol.c (+105, -0) (View)
/intern/opennl/superlu/sgssv.c (+221, -0) (View)
/intern/opennl/superlu/sgstrf.c (+433, -0) (View)
/intern/opennl/superlu/sgstrs.c (+331, -0) (View)
/intern/opennl/superlu/smemory.c (+676, -0) (View)
/intern/opennl/superlu/smyblas2.c (+225, -0) (View)
/intern/opennl/superlu/spanel_bmod.c (+449, -0) (View)
/intern/opennl/superlu/spanel_dfs.c (+249, -0) (View)
/intern/opennl/superlu/spivotL.c (+173, -0) (View)
/intern/opennl/superlu/spruneL.c (+149, -0) (View)
/intern/opennl/superlu/sp_coletree.c (+332, -0) (View)
/intern/opennl/superlu/sp_ienv.c (+65, -0) (View)
/intern/opennl/superlu/sp_preorder.c (+203, -0) (View)
/intern/opennl/superlu/ssnode_bmod.c (+117, -0) (View)
/intern/opennl/superlu/ssnode_dfs.c (+106, -0) (View)
/intern/opennl/superlu/ssp_blas2.c (+469, -0) (View)
/intern/opennl/superlu/ssp_blas3.c (+121, -0) (View)
/intern/opennl/superlu/ssp_defs.h (+234, -0) (View)
/intern/opennl/superlu/strsv.c (+331, -0) (View)
/intern/opennl/superlu/superlu_timer.c (+55, -0) (View)
/intern/opennl/superlu/supermatrix.h (+140, -0) (View)
/intern/opennl/superlu/sutil.c (+478, -0) (View)
/intern/opennl/superlu/util.c (+391, -0) (View)
/intern/opennl/superlu/util.h (+267, -0) (View)
/intern/opennl/superlu/xerbla.c (+43, -0) (View)