HomeSort by relevance Sort by last modified time
    Searched defs:matC (Results 1 - 8 of 8) sorted by null

  /external/eigen/Eigen/src/Eigenvalues/
GeneralizedSelfAdjointEigenSolver.h 185 MatrixType matC = matA.template selfadjointView<Lower>();
186 cholB.matrixL().template solveInPlace<OnTheLeft>(matC);
187 cholB.matrixU().template solveInPlace<OnTheRight>(matC);
189 Base::compute(matC, computeEigVecs ? ComputeEigenvectors : EigenvaluesOnly );
198 MatrixType matC = matA.template selfadjointView<Lower>();
199 matC = matC * cholB.matrixL();
200 matC = cholB.matrixU() * matC;
202 Base::compute(matC, computeEigVecs ? ComputeEigenvectors : EigenvaluesOnly)
    [all...]
  /frameworks/rs/java/tests/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
BNNMTest.java 35 private Allocation matC;
229 matC = Allocation.createTyped(mRS, c_type);
234 mBLAS.BNNM(matA, a_offset, matB, b_offset, matC, c_offset, c_mult_int);
237 matC.copyTo(c_byte_output);
299 matC = Allocation.createTyped(mRS, c_type);
305 mBLAS.BNNM(matA, a_offset, matB, b_offset, matC, c_offset, c_mult_int);
308 matC.copyTo(c_byte_output);
348 matC = Allocation.createTyped(mRS, c_type);
354 mBLAS.BNNM(matA, a_offset, matB, b_offset, matC, c_offset, c_mult_int);
356 matC.copyTo(c_byte_output)
    [all...]
SGEMMTest.java 35 private Allocation matC;
152 matC = Allocation.createTyped(mRS, c_type);
159 1.0f, matA, matB, 0.f, matC);
162 matC.copyTo(c_float_out);
207 matC = Allocation.createTyped(mRS, c_type);
214 1.0f, matA, matB, 0.f, matC);
217 matC.copyTo(c_float_out);
255 matC = Allocation.createTyped(mRS, c_type);
262 1.0f, matA, matB, 0.f, matC);
265 matC.copyTo(c_float_out)
    [all...]
  /external/deqp/framework/common/
tcuMatrix.hpp 237 const Matrix<T, 1, 2> matC = Matrix<T, 1, 2>(areaC);
240 const T schurComplement = T(1.0f) / (matD - matC*invA*matB)(0,0);
243 const Matrix<T, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
245 const Matrix<T, 1, 2> blockC = matC*invA*(-schurComplement);
288 const Matrix<T, 2, 2> matC = Matrix<T, 2, 2>(areaC);
291 const Matrix<T, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
294 const Matrix<T, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
296 const Matrix<T, 2, 2> blockC = (zeroMat-schurComplement)*matC*invA;
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderMatrixTests.cpp 763 const tcu::Matrix<float, 1, 2> matC = tcu::Matrix<float, 1, 2>(areaC);
766 const float schurComplement = 1.0f / (matD - matC*invA*matB)(0,0);
769 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
771 const tcu::Matrix<float, 1, 2> blockC = matC*invA*(-schurComplement);
815 const tcu::Matrix<float, 2, 2> matC = Mat2(areaC);
818 const tcu::Matrix<float, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
821 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
823 const tcu::Matrix<float, 2, 2> blockC = (zeroMat-schurComplement)*matC*invA;
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderMatrixTests.cpp 768 const tcu::Matrix<float, 1, 2> matC = tcu::Matrix<float, 1, 2>(areaC);
771 const float schurComplement = 1.0f / (matD - matC*invA*matB)(0,0);
774 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
776 const tcu::Matrix<float, 1, 2> blockC = matC*invA*(-schurComplement);
820 const tcu::Matrix<float, 2, 2> matC = Mat2(areaC);
823 const tcu::Matrix<float, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
826 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
828 const tcu::Matrix<float, 2, 2> blockC = (zeroMat-schurComplement)*matC*invA;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp     [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]

Completed in 385 milliseconds