svd3x3_sse.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // This file is part of libigl, a simple c++ geometry processing library.
  2. //
  3. // Copyright (C) 2013 Alec Jacobson <[email protected]>
  4. //
  5. // This Source Code Form is subject to the terms of the Mozilla Public License
  6. // v. 2.0. If a copy of the MPL was not distributed with this file, You can
  7. // obtain one at http://mozilla.org/MPL/2.0/.
  8. #ifndef IGL_SVD3X3_SSE_H
  9. #define IGL_SVD3X3_SSE_H
  10. #include "igl_inline.h"
  11. #include <Eigen/Dense>
  12. namespace igl
  13. {
  14. // Super fast 3x3 SVD according to http://pages.cs.wisc.edu/~sifakis/project_pages/svd.html
  15. // This is SSE version of svd3x3 (see svd3x3.h) which works on 4 matrices at a time
  16. // These four matrices are simply stacked in columns, the rest is the same as for svd3x3
  17. //
  18. /// @param[in] A 12 by 3 stack of 3x3 matrices
  19. /// @param[out] U 12x3 left singular vectors stacked
  20. /// @param[out] S 12x1 singular values stacked
  21. /// @param[out] V 12x3 right singular vectors stacked
  22. ///
  23. /// \bug this will not work correctly for double precision.
  24. template<typename T>
  25. IGL_INLINE void svd3x3_sse(
  26. const Eigen::Matrix<T, 3*4, 3>& A,
  27. Eigen::Matrix<T, 3*4, 3> &U,
  28. Eigen::Matrix<T, 3*4, 1> &S,
  29. Eigen::Matrix<T, 3*4, 3>&V);
  30. }
  31. #ifndef IGL_STATIC_LIBRARY
  32. # include "svd3x3_sse.cpp"
  33. #endif
  34. #endif