Prefer the standard integral types over custom type-aliases.

PiperOrigin-RevId: 344142291
Change-Id: I353b16d4a4580f969611fc064715afbc7046cbd9
This commit is contained in:
Advait Jain 2020-11-24 15:27:25 -08:00 committed by TensorFlower Gardener
parent 9130a21036
commit daf6e17a73

View File

@ -189,7 +189,7 @@ inline int32_t MultiplyByQuantizedMultiplier(int64_t x,
#ifdef USE_NEON
// Round uses ARM's rounding shift right.
inline int32x4x4_t MultiplyByQuantizedMultiplier4Rows(
int32x4x4_t input_val, int32 quantized_multiplier, int shift) {
int32x4x4_t input_val, int32_t quantized_multiplier, int shift) {
const int left_shift = std::max(shift, 0);
const int right_shift = std::min(shift, 0);
int32x4x4_t result;