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

  /external/eigen/Eigen/src/Eigenvalues/
GeneralizedSelfAdjointEigenSolver.h 184 MatrixType matC = matA.template selfadjointView<Lower>();
185 cholB.matrixL().template solveInPlace<OnTheLeft>(matC);
186 cholB.matrixU().template solveInPlace<OnTheRight>(matC);
188 Base::compute(matC, computeEigVecs ? ComputeEigenvectors : EigenvaluesOnly );
197 MatrixType matC = matA.template selfadjointView<Lower>();
198 matC = matC * cholB.matrixL();
199 matC = cholB.matrixU() * matC;
201 Base::compute(matC, computeEigVecs ? ComputeEigenvectors : EigenvaluesOnly)
    [all...]
  /frameworks/rs/tests/java_api/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...]
GoogLeNet.java 29 private ArrayList<Allocation> matC;
151 matC = new ArrayList<Allocation>();
204 matC.add(C);
213 1.0f, matA.get(i), matB.get(i), 0.f, matC.get(i));
216 matC.get(i-1).copy1DRangeTo(0, 1, floatOut);
225 mBLAS.BNNM(matA.get(i), a_offset, matB.get(i), b_offset, matC.get(i), c_offset, c_mult_int);
228 matC.get(i-1).copy1DRangeTo(0, 1, byteOut);
  /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;
  /cts/tests/tests/rsblas/src/android/renderscript/cts/
IntrinsicBLAS.java     [all...]
  /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 642 milliseconds