/* Copyright 2015 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. ==============================================================================*/ // Implements a quantized version of the Relu6 operation. #define EIGEN_USE_THREADS #include "tensorflow/core/framework/numeric_op.h" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/kernels/meta_support.h" #include "tensorflow/core/kernels/quantization_utils.h" #include "tensorflow/core/lib/core/errors.h" namespace tensorflow { template class QuantizedReluOp : public OpKernel { public: explicit QuantizedReluOp(OpKernelConstruction* context) : OpKernel(context) {} void Compute(OpKernelContext* context) override { const Tensor& input = context->input(0); const float min_input = context->input(1).flat()(0); const float max_input = context->input(2).flat()(0); Tensor* output = nullptr; OP_REQUIRES_OK(context, context->allocate_output(0, input.shape(), &output)); const T min_as_quantized = FloatToQuantized(0.0f, min_input, max_input); if (meta::IsSupportedAndEnabled() && std::is_same()) { auto input_ui8_array = input.flat(); meta::Clamp(context, input_ui8_array.data(), input_ui8_array.size(), min_as_quantized, 255, output->flat().data()); } else { output->flat().device(context->eigen_cpu_device()) = input.flat().cwiseMax(min_as_quantized).template cast(); } Tensor* output_min = nullptr; OP_REQUIRES_OK(context, context->allocate_output(1, {}, &output_min)); output_min->flat()(0) = min_input; Tensor* output_max = nullptr; OP_REQUIRES_OK(context, context->allocate_output(2, {}, &output_max)); output_max->flat()(0) = max_input; } }; template class QuantizedRelu6Op : public OpKernel { public: explicit QuantizedRelu6Op(OpKernelConstruction* context) : OpKernel(context) {} void Compute(OpKernelContext* context) override { const Tensor& input = context->input(0); const float min_input = context->input(1).flat()(0); const float max_input = context->input(2).flat()(0); Tensor* output = nullptr; OP_REQUIRES_OK(context, context->allocate_output(0, input.shape(), &output)); const T min_as_quantized = FloatToQuantized(0.0f, min_input, max_input); const T max_as_quantized = FloatToQuantized(6.0f, min_input, max_input); if (meta::IsSupportedAndEnabled() && std::is_same()) { auto input_ui8_array = input.flat(); meta::Clamp(context, input_ui8_array.data(), input_ui8_array.size(), min_as_quantized, max_as_quantized, output->flat().data()); } else { output->flat().device(context->eigen_cpu_device()) = input.flat() .cwiseMax(min_as_quantized) .cwiseMin(max_as_quantized) .template cast(); } Tensor* output_min = nullptr; OP_REQUIRES_OK(context, context->allocate_output(1, {}, &output_min)); output_min->flat()(0) = min_input; Tensor* output_max = nullptr; OP_REQUIRES_OK(context, context->allocate_output(2, {}, &output_max)); output_max->flat()(0) = max_input; } }; REGISTER_KERNEL_BUILDER(Name("QuantizedRelu") .Device(DEVICE_CPU) .TypeConstraint("Tinput") .TypeConstraint("out_type"), QuantizedReluOp); REGISTER_KERNEL_BUILDER(Name("QuantizedRelu") .Device(DEVICE_CPU) .TypeConstraint("Tinput") .TypeConstraint("out_type"), QuantizedReluOp); REGISTER_KERNEL_BUILDER(Name("QuantizedRelu6") .Device(DEVICE_CPU) .TypeConstraint("Tinput") .TypeConstraint("out_type"), QuantizedRelu6Op); REGISTER_KERNEL_BUILDER(Name("QuantizedRelu6") .Device(DEVICE_CPU) .TypeConstraint("Tinput") .TypeConstraint("out_type"), QuantizedRelu6Op); } // namespace tensorflow