96 lines
3.9 KiB
C++
96 lines
3.9 KiB
C++
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
==============================================================================*/
|
|
#ifndef TENSORFLOW_LITE_KERNELS_INTERNAL_REFERENCE_PRELU_H_
|
|
#define TENSORFLOW_LITE_KERNELS_INTERNAL_REFERENCE_PRELU_H_
|
|
|
|
#include <algorithm>
|
|
|
|
#include "tensorflow/lite/kernels/internal/common.h"
|
|
#include "tensorflow/lite/kernels/internal/compatibility.h"
|
|
#include "tensorflow/lite/kernels/internal/reference/broadcast_loop.h"
|
|
#include "tensorflow/lite/kernels/internal/types.h"
|
|
|
|
namespace tflite {
|
|
|
|
namespace reference_ops {
|
|
|
|
// Broadcast prelu to output_shape for quantized uint8_t/int8_t data.
|
|
template <typename T, typename U>
|
|
inline void BroadcastPrelu4DSlow(
|
|
const PreluParams& params, const RuntimeShape& input_shape,
|
|
const T* input_data, const RuntimeShape& alpha_shape, const U* alpha_data,
|
|
const RuntimeShape& output_shape, T* output_data) {
|
|
const int32_t quantized_min = std::numeric_limits<T>::min();
|
|
const int32_t quantized_max = std::numeric_limits<T>::max();
|
|
|
|
auto op = [¶ms, quantized_min, quantized_max](T input_val, U alpha_val) {
|
|
const int32_t input_value = params.input_offset + input_val;
|
|
int32_t output_value;
|
|
if (input_value >= 0) {
|
|
output_value = MultiplyByQuantizedMultiplier(
|
|
input_value, params.output_multiplier_1, params.output_shift_1);
|
|
} else {
|
|
const int32_t alpha_value = params.alpha_offset + alpha_val;
|
|
output_value = MultiplyByQuantizedMultiplier(input_value * alpha_value,
|
|
params.output_multiplier_2,
|
|
params.output_shift_2);
|
|
}
|
|
output_value += params.output_offset;
|
|
|
|
const int32_t clamped_output =
|
|
std::min(quantized_max, std::max(quantized_min, output_value));
|
|
return static_cast<T>(clamped_output);
|
|
};
|
|
|
|
BroadcastBinaryOpSimple(input_shape, input_data, alpha_shape, alpha_data,
|
|
output_shape, output_data, op);
|
|
}
|
|
|
|
template <typename T, typename U>
|
|
inline void Prelu(const PreluParams& params, const RuntimeShape& input_shape,
|
|
const T* input_data, const RuntimeShape& alpha_shape,
|
|
const U* alpha_data, const RuntimeShape& output_shape,
|
|
T* output_data) {
|
|
const int32_t quantized_min = std::numeric_limits<T>::min();
|
|
const int32_t quantized_max = std::numeric_limits<T>::max();
|
|
|
|
const int flat_size =
|
|
MatchingElementsSize(input_shape, alpha_shape, output_shape);
|
|
for (int i = 0; i < flat_size; ++i) {
|
|
const int32_t input_value = params.input_offset + input_data[i];
|
|
int32_t output_value;
|
|
if (input_value >= 0) {
|
|
output_value = MultiplyByQuantizedMultiplier(
|
|
input_value, params.output_multiplier_1, params.output_shift_1);
|
|
} else {
|
|
const int32_t alpha_value = params.alpha_offset + alpha_data[i];
|
|
|
|
output_value = MultiplyByQuantizedMultiplier(input_value * alpha_value,
|
|
params.output_multiplier_2,
|
|
params.output_shift_2);
|
|
}
|
|
output_value += params.output_offset;
|
|
|
|
const int32_t clamped_output =
|
|
std::min(quantized_max, std::max(quantized_min, output_value));
|
|
output_data[i] = static_cast<T>(clamped_output);
|
|
}
|
|
}
|
|
|
|
} // namespace reference_ops
|
|
} // namespace tflite
|
|
|
|
#endif // TENSORFLOW_LITE_KERNELS_INTERNAL_REFERENCE_PRELU_H_
|