Searched refs:val_sign (Results 1 – 1 of 1) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/ |
D | quantization_utils.h | 428 const int16x8_t val_sign = vshrq_n_s16(val, 15); in Divide16x8PowRound() local 429 const int16x8_t val_xor = veorq_s16(val, val_sign); in Divide16x8PowRound() 430 const int16x8_t val_pos = vsubq_s16(val_xor, val_sign); in Divide16x8PowRound() 432 const int16x8_t shifted_val_pos_xor = veorq_s16(shifted_val_pos, val_sign); in Divide16x8PowRound() 433 const int16x8_t shifted_val = vsubq_s16(shifted_val_pos_xor, val_sign); in Divide16x8PowRound() 440 const int64x2_t val_sign = vshrq_n_s64(val, 63); in Divide64x2PowRound() local 441 const int64x2_t val_xor = veorq_s64(val, val_sign); in Divide64x2PowRound() 442 const int64x2_t val_pos = vsubq_s64(val_xor, val_sign); in Divide64x2PowRound() 444 const int64x2_t shifted_val_pos_xor = veorq_s64(shifted_val_pos, val_sign); in Divide64x2PowRound() 445 const int64x2_t shifted_val = vsubq_s64(shifted_val_pos_xor, val_sign); in Divide64x2PowRound() [all …]
|