/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()) ); 82 CALL_SUBTEST_4( trmv(MatrixXcf(s,s)) ); 84 CALL_SUBTEST_5( trmv(MatrixXcd(s,s)) ); 86 CALL_SUBTEST_6( trmv(Matrix<float,Dynamic,Dynamic,RowMajor>(s, s)) );
|
product_trmm.cpp | 64 void trmv(int rows=internal::random<int>(1,EIGEN_TEST_MAX_SIZE), int cols=internal::random<int>(1,EIGEN_TEST_MAX_SIZE)) function 85 EIGEN_CAT(CALL_SUBTEST_1,NB)((trmv<SCALAR, MODE, ColMajor>())); \ 86 EIGEN_CAT(CALL_SUBTEST_1,NB)((trmv<SCALAR, MODE, RowMajor>()));
|
/external/eigen/Eigen/src/Core/products/ |
TriangularMatrixVector_MKL.h | 29 * Triangular matrix-vector product functionality based on ?TRMV. 44 // trmv/hemv specialization 125 /* call ?TRMV*/ \ 126 MKLPREFIX##trmv(&uplo, &trans, &diag, &n, (const MKLTYPE*)_lhs, &lda, (MKLTYPE*)x, &incx); \ 130 /* Non-square case - doesn't fit to MKL ?TRMV. Fall to default triangular product*/ \ 210 /* call ?TRMV*/ \ 211 MKLPREFIX##trmv(&uplo, &trans, &diag, &n, (const MKLTYPE*)_lhs, &lda, (MKLTYPE*)x, &incx); \ 215 /* Non-square case - doesn't fit to MKL ?TRMV. Fall to default triangular product*/ \
|
/external/eigen/doc/ |
UsingIntelMKL.dox | 90 ?trmv
|
/external/eigen/blas/ |
level2_impl.h | 131 int EIGEN_BLAS_FUNC(trmv)(char *uplo, char *opa, char *diag, int *n, RealScalar *pa, int *lda, RealScalar *pb, int *incb) function 172 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/support/v8/renderscript/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...] |
/prebuilts/sdk/renderscript/lib/ |
javalib.jar | |