/external/eigen/test/ |
product_trmv.cpp | 12 template<typename MatrixType> void trmv(const MatrixType& m) function 78 CALL_SUBTEST_1( trmv(Matrix<float, 1, 1>()) ); 79 CALL_SUBTEST_2( trmv(Matrix<float, 2, 2>()) ); 80 CALL_SUBTEST_3( trmv(Matrix3d()) ); 83 CALL_SUBTEST_4( trmv(MatrixXcf(s,s)) ); 84 CALL_SUBTEST_5( trmv(MatrixXcd(s,s)) ); 88 CALL_SUBTEST_6( trmv(Matrix<float,Dynamic,Dynamic,RowMajor>(s, s)) );
|
product_trmm.cpp | 72 void trmv(int rows=get_random_size<Scalar>(), int cols=get_random_size<Scalar>()) function 93 EIGEN_CAT(CALL_SUBTEST_1,NB)((trmv<SCALAR, MODE, ColMajor>())); \ 94 EIGEN_CAT(CALL_SUBTEST_1,NB)((trmv<SCALAR, MODE, RowMajor>()));
|
/external/eigen/Eigen/src/Core/products/ |
TriangularMatrixVector_BLAS.h | 29 * Triangular matrix-vector product functionality based on ?TRMV. 44 // trmv/hemv specialization 123 /* call ?TRMV*/ \ 128 /* Non-square case - doesn't fit to BLAS ?TRMV. Fall to default triangular product*/ \ 205 /* call ?TRMV*/ \ 210 /* Non-square case - doesn't fit to BLAS ?TRMV. Fall to default triangular product*/ \
|
/frameworks/rs/cpp/ |
ScriptIntrinsicBLAS.cpp | 325 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "A must be a square matrix for TRMV"); 340 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "Incorrect vector dimensions for TRMV"); 412 // TBMV has the same requirements as TRMV + K >= 0 425 // TBMV has the same requirements as TRMV + K >= 0 438 // TBMV has the same requirements as TRMV + K >= 0 451 // TBMV has the same requirements as TRMV + K >= 0 496 // TRSV is the same as TRMV 506 // TRSV is the same as TRMV 517 // TRSV is the same as TRMV 528 // TRSV is the same as TRMV [all...] |
/external/eigen/doc/ |
UsingBlasLapackBackends.dox | 84 ?trmv
|
/external/eigen/blas/ |
level2_impl.h | 145 int EIGEN_BLAS_FUNC(trmv)(const char *uplo, const char *opa, const char *diag, const int *n, const RealScalar *pa, const int *lda, RealScalar *pb, const int *incb) function 190 return xerbla_(SCALAR_SUFFIX_UP"TRMV ",&info,6);
|
/frameworks/base/rs/java/android/renderscript/ |
ScriptIntrinsicBLAS.java | 539 throw new RSRuntimeException("A must be a square matrix for TRMV"); 554 throw new RSRuntimeException("Incorrect vector dimensions for TRMV"); [all...] |
/frameworks/rs/support/java/src/android/support/v8/renderscript/ |
ScriptIntrinsicBLAS.java | 626 throw new RSRuntimeException("A must be a square matrix for TRMV"); 641 throw new RSRuntimeException("Incorrect vector dimensions for TRMV"); [all...] |