Home
last modified time | relevance | path

Searched refs:VERIFY_EVALUATION_COUNT (Results 1 – 3 of 3) sorted by relevance

/external/eigen/test/
Dproduct_notemporary.cpp22 #define VERIFY_EVALUATION_COUNT(XPR,N) {\ macro
60 VERIFY_EVALUATION_COUNT( m3 = (m1 * m2.adjoint()), 1); in product_notemporary()
61 VERIFY_EVALUATION_COUNT( m3.noalias() = m1 * m2.adjoint(), 0); in product_notemporary()
63 VERIFY_EVALUATION_COUNT( m3.noalias() = s1 * (m1 * m2.transpose()), 0); in product_notemporary()
65 VERIFY_EVALUATION_COUNT( m3.noalias() = s1 * m1 * s2 * m2.adjoint(), 0); in product_notemporary()
66 VERIFY_EVALUATION_COUNT( m3.noalias() = s1 * m1 * s2 * (m1*s3+m2*s2).adjoint(), 1); in product_notemporary()
67 VERIFY_EVALUATION_COUNT( m3.noalias() = (s1 * m1).adjoint() * s2 * m2, 0); in product_notemporary()
68 VERIFY_EVALUATION_COUNT( m3.noalias() += s1 * (-m1*s3).adjoint() * (s2 * m2 * s3), 0); in product_notemporary()
69 VERIFY_EVALUATION_COUNT( m3.noalias() -= s1 * (m1.transpose() * m2), 0); in product_notemporary()
71VERIFY_EVALUATION_COUNT(( m3.block(r0,r0,r1,r1).noalias() += -m1.block(r0,c0,r1,c1) * (s2*m2.block… in product_notemporary()
[all …]
Dref.cpp27 #define VERIFY_EVALUATION_COUNT(XPR,N) {\ macro
184 VERIFY_EVALUATION_COUNT( call_ref_1(a,a), 0); in call_ref()
185 VERIFY_EVALUATION_COUNT( call_ref_1(b,b.transpose()), 0); in call_ref()
187 VERIFY_EVALUATION_COUNT( call_ref_1(ab,ab), 0); in call_ref()
188 VERIFY_EVALUATION_COUNT( call_ref_1(a.head(4),a.head(4)), 0); in call_ref()
189 VERIFY_EVALUATION_COUNT( call_ref_1(abc,abc), 0); in call_ref()
190 VERIFY_EVALUATION_COUNT( call_ref_1(A.col(3),A.col(3)), 0); in call_ref()
192 VERIFY_EVALUATION_COUNT( call_ref_3(A.row(3),A.row(3).transpose()), 0); in call_ref()
193 VERIFY_EVALUATION_COUNT( call_ref_4(A.row(3),A.row(3).transpose()), 0); in call_ref()
197 VERIFY_EVALUATION_COUNT( call_ref_2(A*A.col(1), tmp), 1); // evaluated into a temp in call_ref()
[all …]
Dcholesky.cpp22 #define VERIFY_EVALUATION_COUNT(XPR,N) {\ macro
171 VERIFY_EVALUATION_COUNT(matX = ldltlo.solve(matX), 0); in cholesky()
176 VERIFY_EVALUATION_COUNT(matX = ldltup.solve(matX), 0); in cholesky()