| 
									
										
										
										
											2009-07-26 19:01:37 +08:00
										 |  |  | // This file is part of Eigen, a lightweight C++ template library
 | 
					
						
							|  |  |  | // for linear algebra.
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2010-06-25 05:21:58 +08:00
										 |  |  | // Copyright (C) 2008-2009 Gael Guennebaud <gael.guennebaud@inria.fr>
 | 
					
						
							| 
									
										
										
										
											2009-07-26 19:01:37 +08:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2012-07-14 02:42:47 +08:00
										 |  |  | // This Source Code Form is subject to the terms of the Mozilla
 | 
					
						
							|  |  |  | // Public License v. 2.0. If a copy of the MPL was not distributed
 | 
					
						
							|  |  |  | // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
 | 
					
						
							| 
									
										
										
										
											2009-07-26 19:01:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "main.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-31 23:35:55 +08:00
										 |  |  | #define VERIFY_TRSM(TRI, XB)                             \
 | 
					
						
							|  |  |  |   {                                                      \ | 
					
						
							| 
									
										
										
										
											2009-08-15 16:20:01 +08:00
										 |  |  |     (XB).setRandom();                                    \ | 
					
						
							|  |  |  |     ref = (XB);                                          \ | 
					
						
							|  |  |  |     (TRI).solveInPlace(XB);                              \ | 
					
						
							| 
									
										
										
										
											2009-11-20 20:22:46 +08:00
										 |  |  |     VERIFY_IS_APPROX((TRI).toDenseMatrix() * (XB), ref); \ | 
					
						
							| 
									
										
										
										
											2011-02-02 00:21:20 +08:00
										 |  |  |     (XB).setRandom();                                    \ | 
					
						
							|  |  |  |     ref = (XB);                                          \ | 
					
						
							|  |  |  |     (XB) = (TRI).solve(XB);                              \ | 
					
						
							|  |  |  |     VERIFY_IS_APPROX((TRI).toDenseMatrix() * (XB), ref); \ | 
					
						
							| 
									
										
										
										
											2009-07-31 23:35:55 +08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-07-26 19:01:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-23 17:24:13 +08:00
										 |  |  | #define VERIFY_TRSM_ONTHERIGHT(TRI, XB)                                                      \
 | 
					
						
							|  |  |  |   {                                                                                          \ | 
					
						
							|  |  |  |     (XB).setRandom();                                                                        \ | 
					
						
							|  |  |  |     ref = (XB);                                                                              \ | 
					
						
							|  |  |  |     (TRI).transpose().template solveInPlace<OnTheRight>(XB.transpose());                     \ | 
					
						
							|  |  |  |     VERIFY_IS_APPROX((XB).transpose() * (TRI).transpose().toDenseMatrix(), ref.transpose()); \ | 
					
						
							| 
									
										
										
										
											2011-02-02 00:21:20 +08:00
										 |  |  |     (XB).setRandom();                                                                        \ | 
					
						
							|  |  |  |     ref = (XB);                                                                              \ | 
					
						
							|  |  |  |     (XB).transpose() = (TRI).transpose().template solve<OnTheRight>(XB.transpose());         \ | 
					
						
							|  |  |  |     VERIFY_IS_APPROX((XB).transpose() * (TRI).transpose().toDenseMatrix(), ref.transpose()); \ | 
					
						
							| 
									
										
										
										
											2009-12-23 17:24:13 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-23 18:48:53 +08:00
										 |  |  | template <typename Scalar, int Size, int Cols> | 
					
						
							|  |  |  | void trsolve(int size = Size, int cols = Cols) { | 
					
						
							| 
									
										
										
										
											2009-07-26 19:01:37 +08:00
										 |  |  |   typedef typename NumTraits<Scalar>::Real RealScalar; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-23 18:48:53 +08:00
										 |  |  |   Matrix<Scalar, Size, Size, ColMajor> cmLhs(size, size); | 
					
						
							|  |  |  |   Matrix<Scalar, Size, Size, RowMajor> rmLhs(size, size); | 
					
						
							| 
									
										
										
										
											2009-07-26 19:01:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-21 04:08:48 +08:00
										 |  |  |   enum { colmajor = Size == 1 ? RowMajor : ColMajor, rowmajor = Cols == 1 ? ColMajor : RowMajor }; | 
					
						
							| 
									
										
										
										
											2010-11-23 01:59:56 +08:00
										 |  |  |   Matrix<Scalar, Size, Cols, colmajor> cmRhs(size, cols); | 
					
						
							| 
									
										
										
										
											2010-07-21 04:08:48 +08:00
										 |  |  |   Matrix<Scalar, Size, Cols, rowmajor> rmRhs(size, cols); | 
					
						
							| 
									
										
										
										
											2010-11-23 01:59:56 +08:00
										 |  |  |   Matrix<Scalar, Dynamic, Dynamic, colmajor> ref(size, cols); | 
					
						
							| 
									
										
										
										
											2009-07-26 19:01:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-17 00:37:21 +08:00
										 |  |  |   cmLhs.setRandom(); | 
					
						
							|  |  |  |   cmLhs *= static_cast<RealScalar>(0.1); | 
					
						
							|  |  |  |   cmLhs.diagonal().array() += static_cast<RealScalar>(1); | 
					
						
							|  |  |  |   rmLhs.setRandom(); | 
					
						
							|  |  |  |   rmLhs *= static_cast<RealScalar>(0.1); | 
					
						
							|  |  |  |   rmLhs.diagonal().array() += static_cast<RealScalar>(1); | 
					
						
							| 
									
										
										
										
											2009-07-26 19:01:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-08 04:15:32 +08:00
										 |  |  |   VERIFY_TRSM(cmLhs.conjugate().template triangularView<Lower>(), cmRhs); | 
					
						
							| 
									
										
										
										
											2010-11-05 21:37:42 +08:00
										 |  |  |   VERIFY_TRSM(cmLhs.adjoint().template triangularView<Lower>(), cmRhs); | 
					
						
							| 
									
										
										
										
											2010-01-08 04:15:32 +08:00
										 |  |  |   VERIFY_TRSM(cmLhs.template triangularView<Upper>(), cmRhs); | 
					
						
							|  |  |  |   VERIFY_TRSM(cmLhs.template triangularView<Lower>(), rmRhs); | 
					
						
							|  |  |  |   VERIFY_TRSM(cmLhs.conjugate().template triangularView<Upper>(), rmRhs); | 
					
						
							| 
									
										
										
										
											2010-11-05 21:37:42 +08:00
										 |  |  |   VERIFY_TRSM(cmLhs.adjoint().template triangularView<Upper>(), rmRhs); | 
					
						
							| 
									
										
										
										
											2009-07-26 19:01:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-08 04:15:32 +08:00
										 |  |  |   VERIFY_TRSM(cmLhs.conjugate().template triangularView<UnitLower>(), cmRhs); | 
					
						
							|  |  |  |   VERIFY_TRSM(cmLhs.template triangularView<UnitUpper>(), rmRhs); | 
					
						
							| 
									
										
										
										
											2009-07-26 19:01:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-08 04:15:32 +08:00
										 |  |  |   VERIFY_TRSM(rmLhs.template triangularView<Lower>(), cmRhs); | 
					
						
							|  |  |  |   VERIFY_TRSM(rmLhs.conjugate().template triangularView<UnitUpper>(), rmRhs); | 
					
						
							| 
									
										
										
										
											2009-12-23 17:24:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-08 04:15:32 +08:00
										 |  |  |   VERIFY_TRSM_ONTHERIGHT(cmLhs.conjugate().template triangularView<Lower>(), cmRhs); | 
					
						
							|  |  |  |   VERIFY_TRSM_ONTHERIGHT(cmLhs.template triangularView<Upper>(), cmRhs); | 
					
						
							|  |  |  |   VERIFY_TRSM_ONTHERIGHT(cmLhs.template triangularView<Lower>(), rmRhs); | 
					
						
							|  |  |  |   VERIFY_TRSM_ONTHERIGHT(cmLhs.conjugate().template triangularView<Upper>(), rmRhs); | 
					
						
							| 
									
										
										
										
											2009-12-23 17:24:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-08 04:15:32 +08:00
										 |  |  |   VERIFY_TRSM_ONTHERIGHT(cmLhs.conjugate().template triangularView<UnitLower>(), cmRhs); | 
					
						
							|  |  |  |   VERIFY_TRSM_ONTHERIGHT(cmLhs.template triangularView<UnitUpper>(), rmRhs); | 
					
						
							| 
									
										
										
										
											2009-12-23 17:24:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-08 04:15:32 +08:00
										 |  |  |   VERIFY_TRSM_ONTHERIGHT(rmLhs.template triangularView<Lower>(), cmRhs); | 
					
						
							|  |  |  |   VERIFY_TRSM_ONTHERIGHT(rmLhs.conjugate().template triangularView<UnitUpper>(), rmRhs); | 
					
						
							| 
									
										
										
										
											2010-11-05 19:43:14 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   int c = internal::random<int>(0, cols - 1); | 
					
						
							|  |  |  |   VERIFY_TRSM(rmLhs.template triangularView<Lower>(), rmRhs.col(c)); | 
					
						
							|  |  |  |   VERIFY_TRSM(cmLhs.template triangularView<Lower>(), rmRhs.col(c)); | 
					
						
							| 
									
										
										
										
											2019-01-16 22:24:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 21:04:25 +08:00
										 |  |  |   // destination with a non-default inner-stride
 | 
					
						
							|  |  |  |   // see bug 1741
 | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     typedef Matrix<Scalar, Dynamic, Dynamic> MatrixX; | 
					
						
							|  |  |  |     MatrixX buffer(2 * cmRhs.rows(), 2 * cmRhs.cols()); | 
					
						
							|  |  |  |     Map<Matrix<Scalar, Size, Cols, colmajor>, 0, Stride<Dynamic, 2> > map1( | 
					
						
							|  |  |  |         buffer.data(), cmRhs.rows(), cmRhs.cols(), Stride<Dynamic, 2>(2 * cmRhs.outerStride(), 2)); | 
					
						
							|  |  |  |     Map<Matrix<Scalar, Size, Cols, rowmajor>, 0, Stride<Dynamic, 2> > map2( | 
					
						
							|  |  |  |         buffer.data(), rmRhs.rows(), rmRhs.cols(), Stride<Dynamic, 2>(2 * rmRhs.outerStride(), 2)); | 
					
						
							|  |  |  |     buffer.setZero(); | 
					
						
							|  |  |  |     VERIFY_TRSM(cmLhs.conjugate().template triangularView<Lower>(), map1); | 
					
						
							|  |  |  |     buffer.setZero(); | 
					
						
							|  |  |  |     VERIFY_TRSM(cmLhs.template triangularView<Lower>(), map2); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 22:24:59 +08:00
										 |  |  |   if (Size == Dynamic) { | 
					
						
							|  |  |  |     cmLhs.resize(0, 0); | 
					
						
							|  |  |  |     cmRhs.resize(0, cmRhs.cols()); | 
					
						
							|  |  |  |     Matrix<Scalar, Size, Cols, colmajor> res = cmLhs.template triangularView<Lower>().solve(cmRhs); | 
					
						
							|  |  |  |     VERIFY_IS_EQUAL(res.rows(), 0); | 
					
						
							|  |  |  |     VERIFY_IS_EQUAL(res.cols(), cmRhs.cols()); | 
					
						
							|  |  |  |     res = cmRhs; | 
					
						
							|  |  |  |     cmLhs.template triangularView<Lower>().solveInPlace(res); | 
					
						
							|  |  |  |     VERIFY_IS_EQUAL(res.rows(), 0); | 
					
						
							|  |  |  |     VERIFY_IS_EQUAL(res.cols(), cmRhs.cols()); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2009-07-26 19:01:37 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-07-27 17:42:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-17 20:46:15 +08:00
										 |  |  | EIGEN_DECLARE_TEST(product_trsolve) { | 
					
						
							| 
									
										
										
										
											2009-07-26 19:01:37 +08:00
										 |  |  |   for (int i = 0; i < g_repeat; i++) { | 
					
						
							| 
									
										
										
										
											2009-12-23 18:48:53 +08:00
										 |  |  |     // matrices
 | 
					
						
							| 
									
										
										
										
											2011-07-12 20:41:00 +08:00
										 |  |  |     CALL_SUBTEST_1((trsolve<float, Dynamic, Dynamic>(internal::random<int>(1, EIGEN_TEST_MAX_SIZE), | 
					
						
							|  |  |  |                                                      internal::random<int>(1, EIGEN_TEST_MAX_SIZE)))); | 
					
						
							|  |  |  |     CALL_SUBTEST_2((trsolve<double, Dynamic, Dynamic>(internal::random<int>(1, EIGEN_TEST_MAX_SIZE), | 
					
						
							|  |  |  |                                                       internal::random<int>(1, EIGEN_TEST_MAX_SIZE)))); | 
					
						
							|  |  |  |     CALL_SUBTEST_3((trsolve<std::complex<float>, Dynamic, Dynamic>(internal::random<int>(1, EIGEN_TEST_MAX_SIZE / 2), | 
					
						
							|  |  |  |                                                                    internal::random<int>(1, EIGEN_TEST_MAX_SIZE / 2)))); | 
					
						
							|  |  |  |     CALL_SUBTEST_4((trsolve<std::complex<double>, Dynamic, Dynamic>( | 
					
						
							|  |  |  |         internal::random<int>(1, EIGEN_TEST_MAX_SIZE / 2), internal::random<int>(1, EIGEN_TEST_MAX_SIZE / 2)))); | 
					
						
							| 
									
										
										
										
											2009-12-23 18:48:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // vectors
 | 
					
						
							| 
									
										
										
										
											2014-07-15 17:15:36 +08:00
										 |  |  |     CALL_SUBTEST_5((trsolve<float, Dynamic, 1>(internal::random<int>(1, EIGEN_TEST_MAX_SIZE)))); | 
					
						
							|  |  |  |     CALL_SUBTEST_6((trsolve<double, Dynamic, 1>(internal::random<int>(1, EIGEN_TEST_MAX_SIZE)))); | 
					
						
							|  |  |  |     CALL_SUBTEST_7((trsolve<std::complex<float>, Dynamic, 1>(internal::random<int>(1, EIGEN_TEST_MAX_SIZE)))); | 
					
						
							|  |  |  |     CALL_SUBTEST_8((trsolve<std::complex<double>, Dynamic, 1>(internal::random<int>(1, EIGEN_TEST_MAX_SIZE)))); | 
					
						
							| 
									
										
										
										
											2023-12-06 05:22:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-15 17:15:36 +08:00
										 |  |  |     // meta-unrollers
 | 
					
						
							|  |  |  |     CALL_SUBTEST_9((trsolve<float, 4, 1>())); | 
					
						
							|  |  |  |     CALL_SUBTEST_10((trsolve<double, 4, 1>())); | 
					
						
							|  |  |  |     CALL_SUBTEST_11((trsolve<std::complex<float>, 4, 1>())); | 
					
						
							|  |  |  |     CALL_SUBTEST_12((trsolve<float, 1, 1>())); | 
					
						
							|  |  |  |     CALL_SUBTEST_13((trsolve<float, 1, 2>())); | 
					
						
							|  |  |  |     CALL_SUBTEST_14((trsolve<float, 3, 1>())); | 
					
						
							| 
									
										
										
										
											2009-07-26 19:01:37 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | } |