#include "igl_inline.h"
#include <Eigen/Dense>
#include "svd3x3_avx.cpp"
Go to the source code of this file.
|
template<typename T > |
void | igl::svd3x3_avx (const Eigen::Matrix< T, 3 *8, 3 > &A, Eigen::Matrix< T, 3 *8, 3 > &U, Eigen::Matrix< T, 3 *8, 1 > &S, Eigen::Matrix< T, 3 *8, 3 > &V) |
| Super fast 3x3 SVD according to http://pages.cs.wisc.edu/~sifakis/project_pages/svd.html This is AVX version of svd3x3 (see svd3x3.h) which works on 8 matrices at a time These eight matrices are simply stacked in columns, the rest is the same as for svd3x3.
|
|