Home
last modified time | relevance | path

Searched refs:transpose_c (Results 1 – 6 of 6) sorted by relevance

/external/gemmlowp/eight_bit_int_gemm/
Deight_bit_int_gemm.cc71 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 …]
Deight_bit_int_gemm.h55 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/
Dquantized_matmul_op.cc127 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()
Dreference_gemm.h34 void ReferenceGemm(bool transpose_a, bool transpose_b, bool transpose_c, in ReferenceGemm() argument
58 if (transpose_c) { in ReferenceGemm()
Dquantized_conv_ops.cc378 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/
Dtest.cc36 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()