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

  /external/gemmlowp/public/
output_stages.h 183 OutputStageQuantizeDownInt32ToUint8Scale quantize_down_stage; local
184 quantize_down_stage.result_offset = result_offset;
185 quantize_down_stage.result_mult_int = result_mult_int;
186 quantize_down_stage.result_shift = result_shift;
188 return std::make_tuple(quantize_down_stage, saturating_cast_stage);
201 OutputStageQuantizeDownInt32ToUint8ScalePC<tShape> quantize_down_stage; local
202 quantize_down_stage.result_offset = result_offset;
203 quantize_down_stage.result_mult_int = result_mult_int;
204 quantize_down_stage.result_shift = result_shift;
206 return std::make_tuple(quantize_down_stage, saturating_cast_stage)
    [all...]
  /external/gemmlowp/doc/
quantization_example.cc 351 quantize_down_stage;
352 quantize_down_stage.result_offset_after_shift = result_offset;
353 quantize_down_stage.result_fixedpoint_multiplier = quantized_multiplier;
354 quantize_down_stage.result_shift = right_shift;
357 std::make_tuple(quantize_down_stage, saturating_cast_stage);
  /external/gemmlowp/test/
benchmark_all_sizes.cc 129 quantize_down_stage; local
130 quantize_down_stage.result_offset_after_shift = 128;
131 quantize_down_stage.result_fixedpoint_multiplier = 1234567890;
132 quantize_down_stage.result_shift = 16;
135 std::make_tuple(quantize_down_stage, saturating_cast_stage);
test.cc 1234 OutputStageQuantizeDownInt32ToUint8Scale quantize_down_stage; local
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/
optimized_ops.h 547 quantize_down_stage; local
548 quantize_down_stage.result_offset_after_shift = output_offset;
549 quantize_down_stage.result_fixedpoint_multiplier = output_multiplier;
550 quantize_down_stage.result_shift = output_shift;
555 return std::make_tuple(bias_addition_stage, quantize_down_stage,
    [all...]

Completed in 183 milliseconds