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

  /external/opencv3/modules/core/test/ocl/
test_gemm.cpp 66 bool atrans, btrans, ctrans; local
77 atrans = btrans = ctrans = false;
88 flags |= GEMM_3_T, ctrans = true;
115 randomSubMat(C, C_roi, ctrans ? CRoiSizeT : DRoiSize, CBorder, type, -11, 11);
  /external/opencv3/modules/core/src/
matmul.cpp 703 bool atrans = (flags & GEMM_1_T) != 0, btrans = (flags & GEMM_2_T) != 0, ctrans = (flags & GEMM_3_T) != 0; local
709 if (haveC && ctrans)
735 ctrans ? transpose(matC, D) : matC.copyTo(D);
807 bool atrans = (flags & GEMM_1_T) != 0, btrans = (flags & GEMM_2_T) != 0, ctrans = (flags & GEMM_3_T) != 0; local
813 if (haveC && ctrans)
835 ctrans ? transpose(matC, D) : matC.copyTo(D);
    [all...]

Completed in 386 milliseconds