/external/eigen/Eigen/ |
Jacobi | 8 /** \defgroup Jacobi_Module Jacobi module 9 * This module provides Jacobi and Givens rotations. 12 * #include <Eigen/Jacobi> 15 * In addition to listed classes, it defines the two following MatrixBase methods to apply a Jacobi or Givens rotation: 20 #include "src/Jacobi/Jacobi.h"
|
QR | 9 #include "Jacobi"
|
SVD | 6 #include "Jacobi"
|
Eigenvalues | 9 #include "Jacobi"
|
IterativeLinearSolvers | 19 * - DiagonalPreconditioner - also called JAcobi preconditioner, work very well on diagonal dominant matrices.
|
/external/eigen/Eigen/src/Jacobi/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen/src/Jacobi COMPONENT Devel
|
/external/eigen/test/ |
jacobi.cpp | 15 void jacobi(const MatrixType& m = MatrixType()) function 64 CALL_SUBTEST_1(( jacobi<Matrix3f, float>() )); 65 CALL_SUBTEST_2(( jacobi<Matrix4d, double>() )); 66 CALL_SUBTEST_3(( jacobi<Matrix4cf, float>() )); 67 CALL_SUBTEST_3(( jacobi<Matrix4cf, std::complex<float> >() )); 71 CALL_SUBTEST_4(( jacobi<MatrixXf, float>(MatrixXf(r,c)) )); 72 CALL_SUBTEST_5(( jacobi<MatrixXcd, double>(MatrixXcd(r,c)) )); 73 CALL_SUBTEST_5(( jacobi<MatrixXcd, std::complex<double> >(MatrixXcd(r,c)) )); 75 CALL_SUBTEST_6(( jacobi<MatrixXcf, float>(MatrixXcf(r,c)) )); 76 CALL_SUBTEST_6(( jacobi<MatrixXcf, std::complex<float> >(MatrixXcf(r,c)) )) [all...] |
/external/eigen/unsupported/Eigen/ |
LevenbergMarquardt | 16 #include <Eigen/Jacobi>
|
SVD | 6 #include <Eigen/Jacobi>
|
IterativeSolvers | 36 #include "../../Eigen/Jacobi"
|
/external/eigen/unsupported/bench/ |
bench_svd.cpp | 60 cout << "Sample " << k << " : " << REPEAT << " computations : Jacobi : " << fixed << timerJacobi.value() << "s "; 64 cout << "KO : BDC is " << timerJacobi.value() / timerBDC.value() << " times faster than Jacobi" <<endl; 66 cout << "OK : BDC is " << timerJacobi.value() / timerBDC.value() << " times faster than Jacobi" <<endl; 91 cout << "Sample " << k << " : " << REPEAT << " computations : Jacobi : " << fixed << timerJacobi.value() << "s "; 95 cout << "KO : BDC is " << timerJacobi.value() / timerBDC.value() << " times faster than Jacobi" <<endl; 97 cout << "OK : BDC is " << timerJacobi.value() / timerBDC.value() << " times faster than Jacobi" <<endl;
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/ |
prime.py | 40 def jacobi(a, b): function 41 '''Calculates the value of the Jacobi symbol (a/b) where both a and b are 69 j = jacobi(x, n) % n 84 # 50% of Jacobi-witnesses can report compositness of non-prime numbers 86 # The implemented algorithm using the Jacobi witness function has error
|
_version200.py | 209 def jacobi(a, b): function 210 """Calculates the value of the Jacobi symbol (a/b) 233 j = jacobi(x, n) % n 247 # 50% of Jacobi-witnesses can report compositness of non-prime numbers 265 # Prime, according to Jacobi
|
_version133.py | 142 def jacobi(a, b): function 143 """Calculates the value of the Jacobi symbol (a/b) 165 j = jacobi(x, n) % n 205 # Prime, according to Jacobi
|
/external/ceres-solver/internal/ceres/ |
cgnr_solver.cc | 47 if (options_.preconditioner_type != JACOBI && 49 LOG(FATAL) << "CGNR only supports IDENTITY and JACOBI preconditioners."; 67 if (options_.preconditioner_type == JACOBI) {
|
implicit_schur_complement.cc | 71 if (options_.preconditioner_type == JACOBI) { 82 if (options_.preconditioner_type == JACOBI) { 91 if (options_.preconditioner_type == JACOBI) {
|
preconditioner.cc | 45 return JACOBI;
|
preconditioner.h | 51 : type(JACOBI), 101 // be used. This function returns JACOBI if a preconditioner for
|
types.cc | 75 CASESTR(JACOBI); 87 STRENUM(JACOBI);
|
block_jacobi_preconditioner.h | 44 // A block Jacobi preconditioner. This is intended for use with
|
/external/eigen/unsupported/Eigen/src/SVD/ |
TODOBdcsvd.txt | 17 0) comment the call to Jacobi in the last part of the divide method and everything right after
|
/external/llvm/test/Analysis/Delinearization/ |
himeno_1.ll | 15 ; void jacobi(int nn, Matrix* a, Matrix* p) 36 define void @jacobi(i32 %nn, %struct.Mat* nocapture %a, %struct.Mat* nocapture %p) nounwind uwtable {
|
himeno_2.ll | 15 ; void jacobi(int nn, Matrix* a, Matrix* p) 36 define void @jacobi(i32 %nn, %struct.Mat* nocapture %a, %struct.Mat* nocapture %p) nounwind uwtable {
|
/external/eigen/bench/spbench/ |
sp_solver.cpp | 7 #include <Eigen/Jacobi>
|
/external/eigen/blas/ |
common.h | 14 #include <Eigen/Jacobi>
|