Searched refs:transpose_c (Results 1 – 6 of 6) sorted by relevance
/external/gemmlowp/eight_bit_int_gemm/ |
D | eight_bit_int_gemm.cc | 71 template <bool transpose_a, bool transpose_b, bool transpose_c> 85 transpose_c ? MapOrder::RowMajor : MapOrder::ColMajor; in EightBitIntGemmImpl() 110 template <bool transpose_a, bool transpose_b, bool transpose_c> 120 transpose_c ? MapOrder::RowMajor : MapOrder::ColMajor; in EightBitIntGemmInt32Impl() 220 bool CanHandleMetaFastpath(bool transpose_a, bool transpose_b, bool transpose_c, in CanHandleMetaFastpath() argument 240 if (IsRowMajorOrVector(transpose_c, ldc, m, n)) { in CanHandleMetaFastpath() 244 if (IsColumnMajorOrVector(transpose_c, ldc, m, n)) { in CanHandleMetaFastpath() 304 void EightBitIntGemm(bool transpose_a, bool transpose_b, bool transpose_c, in EightBitIntGemm() argument 314 if (CanHandleMetaFastpath(transpose_a, transpose_b, transpose_c, m, n, k, lda, in EightBitIntGemm() 317 c_mult_int, c_shift, transpose_c, ldc, c); in EightBitIntGemm() [all …]
|
D | eight_bit_int_gemm.h | 55 void EightBitIntGemm(bool transpose_a, bool transpose_b, bool transpose_c, 62 void EightBitIntGemm(bool transpose_a, bool transpose_b, bool transpose_c,
|
/external/tensorflow/tensorflow/core/kernels/ |
D | quantized_matmul_op.cc | 127 const bool transpose_c = false; in Compute() local 138 (transpose_c == false) && (k <= 2048)) { in Compute() 145 (mult_c == 1) && (shift_c == 0) && (transpose_c == false)) { in Compute() 172 transpose_a_, transpose_b_, transpose_c, m, n, k, a_data, offset_a, in Compute()
|
D | reference_gemm.h | 34 void ReferenceGemm(bool transpose_a, bool transpose_b, bool transpose_c, in ReferenceGemm() argument 58 if (transpose_c) { in ReferenceGemm()
|
D | quantized_conv_ops.cc | 378 const bool transpose_c = false; in operator ()() local 390 (transpose_c == false) && (k <= 2048)) { in operator ()() 410 !transpose_c ? gemmlowp::MapOrder::RowMajor in operator ()() 440 transpose_a, transpose_b, transpose_c, m, n, k, im2col_buffer, in operator ()()
|
/external/gemmlowp/test/ |
D | test.cc | 36 bool transpose_c, int m, int n, int k, in ReferenceEightBitIntGemm() argument 69 if (transpose_c) { in ReferenceEightBitIntGemm() 248 const bool transpose_c = ResultOrder == MapOrder::RowMajor; in Gemm() local 252 transpose_a, transpose_b, transpose_c, lhs.rows(), rhs.cols(), in Gemm() 267 static bool Gemm(bool transpose_a, bool transpose_b, bool transpose_c, in Gemm() 274 ReferenceEightBitIntGemm(transpose_a, transpose_b, transpose_c, lhs.rows(), in Gemm() 426 const bool transpose_c = kResultOrder == MapOrder::RowMajor; in test_gemm_impl() local 430 transpose_a, transpose_b, transpose_c, lhs.const_map(), rhs.const_map(), in test_gemm_impl()
|