Home
last modified time | relevance | path

Searched refs:matC (Results 1 – 8 of 8) sorted by relevance

/external/eigen/Eigen/src/Eigenvalues/
DGeneralizedSelfAdjointEigenSolver.h185 MatrixType matC = matA.template selfadjointView<Lower>(); in compute() local
186 cholB.matrixL().template solveInPlace<OnTheLeft>(matC); in compute()
187 cholB.matrixU().template solveInPlace<OnTheRight>(matC); in compute()
189 Base::compute(matC, computeEigVecs ? ComputeEigenvectors : EigenvaluesOnly ); in compute()
198 MatrixType matC = matA.template selfadjointView<Lower>(); in compute() local
199 matC = matC * cholB.matrixL(); in compute()
200 matC = cholB.matrixU() * matC; in compute()
202 Base::compute(matC, computeEigVecs ? ComputeEigenvectors : EigenvaluesOnly); in compute()
211 MatrixType matC = matA.template selfadjointView<Lower>(); in compute() local
212 matC = matC * cholB.matrixL(); in compute()
[all …]
/external/deqp/framework/common/
DtcuMatrix.hpp237 const Matrix<T, 1, 2> matC = Matrix<T, 1, 2>(areaC); in doInverse() local
240 const T schurComplement = T(1.0f) / (matD - matC*invA*matB)(0,0); in doInverse()
243 const Matrix<T, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA; in doInverse()
245 const Matrix<T, 1, 2> blockC = matC*invA*(-schurComplement); in doInverse()
288 const Matrix<T, 2, 2> matC = Matrix<T, 2, 2>(areaC); in doInverse() local
291 const Matrix<T, 2, 2> schurComplement = inverse(matD - matC*invA*matB); in doInverse()
294 const Matrix<T, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA; in doInverse()
296 const Matrix<T, 2, 2> blockC = (zeroMat-schurComplement)*matC*invA; in doInverse()
/external/opencv3/modules/core/src/
Dmatmul.cpp698 InputArray matC, double beta, OutputArray matD, int flags ) in ocl_gemm_amdblas() argument
701 bool haveC = matC.kind() != cv::_InputArray::NONE; in ocl_gemm_amdblas()
702 Size sizeA = matA.size(), sizeB = matB.size(), sizeC = haveC ? matC.size() : Size(0, 0); in ocl_gemm_amdblas()
714 CV_Assert( matB.type() == type && (!haveC || matC.type() == type) ); in ocl_gemm_amdblas()
720 (haveC && (matC.offset() % esz != 0 || matC.step() % esz != 0)) ) in ocl_gemm_amdblas()
730 UMat C = matC.getUMat(); in ocl_gemm_amdblas()
735 ctrans ? transpose(matC, D) : matC.copyTo(D); in ocl_gemm_amdblas()
792 InputArray matC, double beta, OutputArray matD, int flags ) in ocl_gemm() argument
805 bool haveC = matC.kind() != cv::_InputArray::NONE; in ocl_gemm()
806 Size sizeA = matA.size(), sizeB = matB.size(), sizeC = haveC ? matC.size() : Size(0, 0); in ocl_gemm()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderMatrixTests.cpp763 const tcu::Matrix<float, 1, 2> matC = tcu::Matrix<float, 1, 2>(areaC); in inverse() local
766 const float schurComplement = 1.0f / (matD - matC*invA*matB)(0,0); in inverse()
769 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA; in inverse()
771 const tcu::Matrix<float, 1, 2> blockC = matC*invA*(-schurComplement); in inverse()
815 const tcu::Matrix<float, 2, 2> matC = Mat2(areaC); in inverse() local
818 const tcu::Matrix<float, 2, 2> schurComplement = inverse(matD - matC*invA*matB); in inverse()
821 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA; in inverse()
823 const tcu::Matrix<float, 2, 2> blockC = (zeroMat-schurComplement)*matC*invA; in inverse()
/external/deqp/modules/gles3/functional/
Des3fShaderMatrixTests.cpp768 const tcu::Matrix<float, 1, 2> matC = tcu::Matrix<float, 1, 2>(areaC); in inverse() local
771 const float schurComplement = 1.0f / (matD - matC*invA*matB)(0,0); in inverse()
774 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA; in inverse()
776 const tcu::Matrix<float, 1, 2> blockC = matC*invA*(-schurComplement); in inverse()
820 const tcu::Matrix<float, 2, 2> matC = Mat2(areaC); in inverse() local
823 const tcu::Matrix<float, 2, 2> schurComplement = inverse(matD - matC*invA*matB); in inverse()
826 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA; in inverse()
828 const tcu::Matrix<float, 2, 2> blockC = (zeroMat-schurComplement)*matC*invA; in inverse()
/external/opencv3/modules/core/test/
Dtest_mat.cpp682 Ptr<CvMatND> matC(cvCloneMatND(&matB)); in run() local
691 Scalar(cvGet3D(matC, idx0[0], idx0[1], idx0[2])) != val1 || in run()
692 Scalar(cvGetND(matC, idx1)) != -val1 ) in run()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderBuiltinPrecisionTests.cpp3655 ExprP<Vec2> matC = bindExpression("matC", ctx, vec2(mat[0][2], mat[1][2])); in doExpand() local
3660 (matD - dot(matC * invA, matB))); in doExpand()
3664 ExprP<Mat2> t3 = outerProduct(t2, matC); in doExpand()
3671 (matC * invA) * -schur); in doExpand()
3696 ExprP<Mat2> matC = bindExpression("matC", ctx, in doExpand() local
3703 inverse(matD + -(matC * invA * matB))); in doExpand()
3705 invA + (invA * matB * schur * matC * invA)); in doExpand()
3709 (-schur) * matC * invA); in doExpand()
/external/deqp/modules/glshared/
DglsBuiltinPrecisionTests.cpp3706 ExprP<Vec2> matC = bindExpression("matC", ctx, vec2(mat[0][2], mat[1][2])); in doExpand() local
3711 (matD - dot(matC * invA, matB))); in doExpand()
3715 ExprP<Mat2> t3 = outerProduct(t2, matC); in doExpand()
3722 (matC * invA) * -schur); in doExpand()
3747 ExprP<Mat2> matC = bindExpression("matC", ctx, in doExpand() local
3754 inverse(matD + -(matC * invA * matB))); in doExpand()
3756 invA + (invA * matB * schur * matC * invA)); in doExpand()
3760 (-schur) * matC * invA); in doExpand()