/external/gemmlowp/public/ |
output_stages.h | 35 // result_offset, result_mult_int, result_shift, 37 // ((input + result_offset) * result_mult_int + rounding) >> result_shift 41 std::int32_t result_offset; member in struct:gemmlowp::OutputStageQuantizeDownInt32ToUint8Scale 52 // result_offset, result_mult_int, result_shift, 54 // ((input + result_offset) * result_mult_int + rounding) >> result_shift 59 // row or column of the output (depending on tShape) has its own result_offset 63 VectorMap<const std::int32_t, tShape> result_offset; member in struct:gemmlowp::OutputStageQuantizeDownInt32ToUint8ScalePC 102 MakeStandardOutputPipeline(std::int32_t result_offset, 106 quantize_down_stage.result_offset = result_offset; [all...] |
/external/gemmlowp/internal/ |
output_neon.h | 77 const std::int32_t result_offset = output_stage.result_offset; local 80 const int32x4_t a = vaddq_s32(input, vdupq_n_s32(result_offset)); 108 const int32x4_t result_offset = local 109 vld1q_s32(output_stage.result_offset.data(row)); 110 const int32x4_t a = vaddq_s32(input, result_offset); 138 const int32x4_t result_offset = local 139 vld1q_s32(output_stage.result_offset.data(row)); 140 const int32x4_t a = vaddq_s32(input, result_offset);
|
output.h | 114 const std::int32_t result_offset = output_stage.result_offset; local 117 return ((input + result_offset) * result_mult_int + kRoundingTerm) >> 138 const std::int32_t result_offset = output_stage.result_offset(row); local 141 return ((input + result_offset) * result_mult_int + kRoundingTerm) >> 162 const std::int32_t result_offset = output_stage.result_offset(col); local 165 return ((input + result_offset) * result_mult_int + kRoundingTerm) >>
|
/external/gemmlowp/meta/ |
multi_thread_gemm.h | 103 float result_offset) 106 result_offset(result_offset) {} 123 result_offset, result, result_stride); 134 float result_offset; member in class:gemmlowp::meta::internal::GemmFloatOperation 202 float result_offset, float* result) { 203 internal::GemmFloatOperation operation(lhs_offset, rhs_offset, result_offset);
|
/external/gemmlowp/eight_bit_int_gemm/ |
eight_bit_int_gemm.cc | 71 const int result_offset = c_offset; local 90 context, lhs, rhs, &result, lhs_offset, rhs_offset, result_offset, \ 267 float result_offset, bool result_transpose, 275 lhs, rhs, m, n, k, lhs_offset, rhs_offset, result_offset, result); 281 rhs, lhs, n, m, k, rhs_offset, lhs_offset, result_offset, result);
|