| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #ifndef TENSORFLOW_LITE_KERNELS_INTERNAL_REFERENCE_DIV_H_ |
| #define TENSORFLOW_LITE_KERNELS_INTERNAL_REFERENCE_DIV_H_ |
|
|
| #include <algorithm> |
|
|
| #include "edge-impulse-sdk/tensorflow/lite/kernels/internal/common.h" |
|
|
| namespace tflite { |
|
|
| namespace reference_ops { |
|
|
| template <typename T> |
| inline void DivCheckArithmeticParams(const ArithmeticParams& params) { |
| TFLITE_DCHECK_LE(params.quantized_activation_min, |
| params.quantized_activation_max); |
| |
| |
| constexpr int32_t max_value = |
| static_cast<int32_t>(std::numeric_limits<T>::max()); |
| TFLITE_DCHECK_GE(params.input1_offset, -max_value); |
| TFLITE_DCHECK_LE(params.input1_offset, max_value); |
| TFLITE_DCHECK_GE(params.input2_offset, -max_value); |
| TFLITE_DCHECK_LE(params.input2_offset, max_value); |
| TFLITE_DCHECK_GE(params.output_offset, -max_value); |
| TFLITE_DCHECK_LE(params.output_offset, max_value); |
| } |
|
|
| |
| |
| template <typename T> |
| inline void DivElementwise(int size, const ArithmeticParams& params, |
| const T* input1_data, const T* input2_data, |
| T* output_data) { |
| DivCheckArithmeticParams<T>(params); |
|
|
| for (int i = 0; i < size; ++i) { |
| int32_t input1_val = params.input1_offset + input1_data[i]; |
| int32_t input2_val = params.input2_offset + input2_data[i]; |
| TFLITE_DCHECK_NE(input2_val, 0); |
| if (input2_val < 0) { |
| |
| |
| input1_val = -input1_val; |
| input2_val = -input2_val; |
| } |
| int recip_shift; |
| const int32_t input2_inv = GetReciprocal(input2_val, 31, &recip_shift); |
| const int headroom = CountLeadingSignBits(input1_val); |
| const int32_t unscaled_quotient = |
| MultiplyByQuantizedMultiplierGreaterThanOne(input1_val, input2_inv, |
| headroom); |
| const int total_shift = params.output_shift - recip_shift - headroom; |
| const int32_t unclamped_result = |
| params.output_offset + |
| MultiplyByQuantizedMultiplierSmallerThanOneExp( |
| unscaled_quotient, params.output_multiplier, total_shift); |
| const int32_t clamped_output = |
| std::min(params.quantized_activation_max, |
| std::max(params.quantized_activation_min, unclamped_result)); |
| output_data[i] = static_cast<T>(clamped_output); |
| } |
| } |
|
|
| inline void Div(const ArithmeticParams& params, |
| const RuntimeShape& input1_shape, const uint8_t* input1_data, |
| const RuntimeShape& input2_shape, const uint8_t* input2_data, |
| const RuntimeShape& output_shape, uint8_t* output_data) { |
| TFLITE_DCHECK_LE(params.quantized_activation_min, |
| params.quantized_activation_max); |
| const int flat_size = |
| MatchingElementsSize(input1_shape, input2_shape, output_shape); |
|
|
| DivElementwise(flat_size, params, input1_data, input2_data, output_data); |
| } |
|
|
| inline void Div(const ArithmeticParams& params, |
| const RuntimeShape& input1_shape, const int8_t* input1_data, |
| const RuntimeShape& input2_shape, const int8_t* input2_data, |
| const RuntimeShape& output_shape, int8_t* output_data) { |
| TFLITE_DCHECK_LE(params.quantized_activation_min, |
| params.quantized_activation_max); |
| const int flat_size = |
| MatchingElementsSize(input1_shape, input2_shape, output_shape); |
|
|
| DivElementwise(flat_size, params, input1_data, input2_data, output_data); |
| } |
|
|
| template <typename T, int N = 5> |
| inline void BroadcastDivSlowQuantized( |
| const ArithmeticParams& params, const RuntimeShape& unextended_input1_shape, |
| const T* input1_data, const RuntimeShape& unextended_input2_shape, |
| const T* input2_data, const RuntimeShape& unextended_output_shape, |
| T* output_data) { |
| TFLITE_DCHECK_LE(unextended_input1_shape.DimensionsCount(), N); |
| TFLITE_DCHECK_LE(unextended_input2_shape.DimensionsCount(), N); |
| TFLITE_DCHECK_LE(unextended_output_shape.DimensionsCount(), N); |
|
|
| NdArrayDesc<N> desc1; |
| NdArrayDesc<N> desc2; |
| NdArrayDesc<N> output_desc; |
| NdArrayDescsForElementwiseBroadcast(unextended_input1_shape, |
| unextended_input2_shape, &desc1, &desc2); |
| CopyDimsToDesc(RuntimeShape::ExtendedShape(N, unextended_output_shape), |
| &output_desc); |
|
|
| DivCheckArithmeticParams<T>(params); |
|
|
| auto div_func = [&](int indexes[N]) { |
| int32_t input1_val = |
| params.input1_offset + input1_data[SubscriptToIndex(desc1, indexes)]; |
| int32_t input2_val = |
| params.input2_offset + input2_data[SubscriptToIndex(desc2, indexes)]; |
| TFLITE_DCHECK_NE(input2_val, 0); |
| if (input2_val < 0) { |
| |
| |
| input1_val = -input1_val; |
| input2_val = -input2_val; |
| } |
| int recip_shift; |
| const int32_t input2_inv = GetReciprocal(input2_val, 31, &recip_shift); |
| const int headroom = CountLeadingSignBits(input1_val); |
| const int32_t unscaled_quotient = |
| MultiplyByQuantizedMultiplierGreaterThanOne(input1_val, input2_inv, |
| headroom); |
| const int total_shift = params.output_shift - recip_shift - headroom; |
| const int32_t unclamped_result = |
| params.output_offset + |
| MultiplyByQuantizedMultiplierSmallerThanOneExp( |
| unscaled_quotient, params.output_multiplier, total_shift); |
| const int32_t clamped_output = |
| std::min(params.quantized_activation_max, |
| std::max(params.quantized_activation_min, unclamped_result)); |
| output_data[SubscriptToIndex(output_desc, indexes)] = |
| static_cast<T>(clamped_output); |
| }; |
| NDOpsHelper<N>(output_desc, div_func); |
| } |
|
|
| template <int N = 5> |
| inline void BroadcastDivSlow(const ArithmeticParams& params, |
| const RuntimeShape& unextended_input1_shape, |
| const uint8_t* input1_data, |
| const RuntimeShape& unextended_input2_shape, |
| const uint8_t* input2_data, |
| const RuntimeShape& unextended_output_shape, |
| uint8_t* output_data) { |
| BroadcastDivSlowQuantized<uint8_t, N>( |
| params, unextended_input1_shape, input1_data, unextended_input2_shape, |
| input2_data, unextended_output_shape, output_data); |
| } |
|
|
| template <int N = 5> |
| inline void BroadcastDivSlow(const ArithmeticParams& params, |
| const RuntimeShape& unextended_input1_shape, |
| const int8_t* input1_data, |
| const RuntimeShape& unextended_input2_shape, |
| const int8_t* input2_data, |
| const RuntimeShape& unextended_output_shape, |
| int8_t* output_data) { |
| BroadcastDivSlowQuantized<int8_t, N>( |
| params, unextended_input1_shape, input1_data, unextended_input2_shape, |
| input2_data, unextended_output_shape, output_data); |
| } |
|
|
| |
| |
| |
| |
| template <typename T, int N = 5> |
| void BroadcastDivSlow(const ArithmeticParams& params, |
| const RuntimeShape& unextended_input1_shape, |
| const T* input1_data, |
| const RuntimeShape& unextended_input2_shape, |
| const T* input2_data, |
| const RuntimeShape& unextended_output_shape, |
| T* output_data) { |
| T output_activation_min; |
| T output_activation_max; |
| GetActivationParams(params, &output_activation_min, &output_activation_max); |
|
|
| TFLITE_DCHECK_LE(unextended_input1_shape.DimensionsCount(), N); |
| TFLITE_DCHECK_LE(unextended_input2_shape.DimensionsCount(), N); |
| TFLITE_DCHECK_LE(unextended_output_shape.DimensionsCount(), N); |
|
|
| NdArrayDesc<N> desc1; |
| NdArrayDesc<N> desc2; |
| NdArrayDesc<N> output_desc; |
| NdArrayDescsForElementwiseBroadcast(unextended_input1_shape, |
| unextended_input2_shape, &desc1, &desc2); |
| CopyDimsToDesc(RuntimeShape::ExtendedShape(N, unextended_output_shape), |
| &output_desc); |
|
|
| |
| |
| |
| |
| |
| |
| |
|
|
| auto div_func = [&](int indexes[N]) { |
| output_data[SubscriptToIndex(output_desc, indexes)] = |
| ActivationFunctionWithMinMax( |
| input1_data[SubscriptToIndex(desc1, indexes)] / |
| input2_data[SubscriptToIndex(desc2, indexes)], |
| output_activation_min, output_activation_max); |
| }; |
| NDOpsHelper<N>(output_desc, div_func); |
| } |
|
|
| template <typename T> |
| inline void Div(const ArithmeticParams& params, |
| const RuntimeShape& input1_shape, const T* input1_data, |
| const RuntimeShape& input2_shape, const T* input2_data, |
| const RuntimeShape& output_shape, T* output_data) { |
| T output_activation_min; |
| T output_activation_max; |
| GetActivationParams(params, &output_activation_min, &output_activation_max); |
|
|
| const int flat_size = |
| MatchingElementsSize(input1_shape, input2_shape, output_shape); |
| for (int i = 0; i < flat_size; ++i) { |
| output_data[i] = ActivationFunctionWithMinMax( |
| input1_data[i] / input2_data[i], output_activation_min, |
| output_activation_max); |
| } |
| } |
|
|
| } |
| } |
|
|
| #endif |
|
|