Searched refs:transpose_c (Results 1 – 3 of 3) sorted by relevance
/external/gemmlowp/eight_bit_int_gemm/ |
D | eight_bit_int_gemm.cc | 62 template <bool transpose_a, bool transpose_b, bool transpose_c> 76 transpose_c ? MapOrder::RowMajor : MapOrder::ColMajor; in EightBitIntGemmImpl() 101 template <bool transpose_a, bool transpose_b, bool transpose_c> 111 transpose_c ? MapOrder::RowMajor : MapOrder::ColMajor; in EightBitIntGemmInt32Impl() 205 bool CanHandleMetaFastpath(bool transpose_a, bool transpose_b, bool transpose_c, in CanHandleMetaFastpath() argument 225 if (IsRowMajorOrVector(transpose_c, ldc, m, n)) { in CanHandleMetaFastpath() 229 if (IsColumnMajorOrVector(transpose_c, ldc, m, n)) { in CanHandleMetaFastpath() 291 void EightBitIntGemm(bool transpose_a, bool transpose_b, bool transpose_c, in EightBitIntGemm() argument 301 if (CanHandleMetaFastpath(transpose_a, transpose_b, transpose_c, m, n, k, lda, in EightBitIntGemm() 304 c_mult_int, c_shift, transpose_c, ldc, c); in EightBitIntGemm() [all …]
|
D | eight_bit_int_gemm.h | 57 void EightBitIntGemm(bool transpose_a, bool transpose_b, bool transpose_c, 64 void EightBitIntGemm(bool transpose_a, bool transpose_b, bool transpose_c,
|
/external/gemmlowp/test/ |
D | test.cc | 36 bool transpose_c, int m, int n, int k, in ReferenceEightBitIntGemm() argument 67 if (transpose_c) { in ReferenceEightBitIntGemm() 216 const bool transpose_c = ResultOrder == MapOrder::RowMajor; in Gemm() local 220 transpose_a, transpose_b, transpose_c, lhs.rows(), rhs.cols(), in Gemm() 234 static void Gemm(bool transpose_a, bool transpose_b, bool transpose_c, in Gemm() 240 ReferenceEightBitIntGemm(transpose_a, transpose_b, transpose_c, lhs.rows(), in Gemm() 385 const bool transpose_c = kResultOrder == MapOrder::RowMajor; in test_gemm_impl() local 389 transpose_a, transpose_b, transpose_c, lhs.const_map(), rhs.const_map(), in test_gemm_impl()
|