/* 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. ==============================================================================*/ #ifndef TENSORFLOW_CORE_KERNELS_ADJUST_CONTRAST_OP_H_ #define TENSORFLOW_CORE_KERNELS_ADJUST_CONTRAST_OP_H_ #include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor" #include "tensorflow/core/framework/tensor_types.h" namespace tensorflow { namespace functor { // Functor used by AdjustContrastOp to do the computations. template struct AdjustContrast { void operator()(const Device& d, typename TTypes::ConstTensor input, typename TTypes::ConstScalar contrast_factor, typename TTypes::ConstScalar min_value, typename TTypes::ConstScalar max_value, typename TTypes::Tensor mean_values, typename TTypes::Tensor output) { const int batch = input.dimension(0); const int height = input.dimension(1); const int width = input.dimension(2); const int channels = input.dimension(3); Eigen::array scalar_broadcast; scalar_broadcast[0] = batch; scalar_broadcast[1] = height; scalar_broadcast[2] = width; scalar_broadcast[3] = channels; #if !defined(EIGEN_HAS_INDEX_LIST) Eigen::array reduction_axis; reduction_axis[0] = 1; reduction_axis[1] = 2; Eigen::array broadcast_dims; broadcast_dims[0] = 1; broadcast_dims[1] = height; broadcast_dims[2] = width; broadcast_dims[3] = 1; Eigen::Tensor::Dimensions reshape_dims; reshape_dims[0] = batch; reshape_dims[1] = 1; reshape_dims[2] = 1; reshape_dims[3] = channels; #else Eigen::IndexList, Eigen::type2index<2> > reduction_axis; Eigen::IndexList, int, int, Eigen::type2index<1> > broadcast_dims; broadcast_dims.set(1, height); broadcast_dims.set(2, width); Eigen::IndexList, Eigen::type2index<1>, int> reshape_dims; reshape_dims.set(0, batch); reshape_dims.set(3, channels); #endif Eigen::Sizes<1, 1, 1, 1> scalar; float num_reduced_coeffs = height * width; mean_values.device(d) = (input.template cast().sum(reduction_axis).eval() / num_reduced_coeffs) .reshape(reshape_dims) .broadcast(broadcast_dims); auto contrast_factor_tensor = contrast_factor.reshape(scalar).broadcast(scalar_broadcast); auto adjusted = (input.template cast() - mean_values) * contrast_factor_tensor + mean_values; auto min_bcast = min_value.reshape(scalar).broadcast(scalar_broadcast); auto max_bcast = max_value.reshape(scalar).broadcast(scalar_broadcast); // TODO(wicke): This is rather slow and should be re-written as pure cuda. output.device(d) = adjusted.cwiseMin(max_bcast).cwiseMax(min_bcast); } }; // Functor used by AdjustContrastOpv2 to do the computations. template struct AdjustContrastv2 { void operator()(const Device& d, typename TTypes::ConstTensor input, typename TTypes::ConstScalar contrast_factor, typename TTypes::Tensor output) { const int batch = input.dimension(0); const int height = input.dimension(1); const int width = input.dimension(2); const int channels = input.dimension(3); Eigen::array scalar_broadcast; scalar_broadcast[0] = batch; scalar_broadcast[1] = height; scalar_broadcast[2] = width; scalar_broadcast[3] = channels; #if !defined(EIGEN_HAS_INDEX_LIST) Eigen::array reduction_axis; reduction_axis[0] = 0; reduction_axis[1] = 1; Eigen::array broadcast_dims; broadcast_dims[0] = 1; broadcast_dims[1] = height; broadcast_dims[2] = width; broadcast_dims[3] = 1; Eigen::Tensor::Dimensions reshape_dims; reshape_dims[0] = batch; reshape_dims[1] = 1; reshape_dims[2] = 1; reshape_dims[3] = channels; Eigen::array reduced_dims_first; reduced_dims_first[0] = 1; reduced_dims_first[1] = 2; reduced_dims_first[2] = 0; reduced_dims_first[3] = 3; #else Eigen::IndexList, Eigen::type2index<1> > reduction_axis; Eigen::IndexList, int, int, Eigen::type2index<1> > broadcast_dims; broadcast_dims.set(1, height); broadcast_dims.set(2, width); Eigen::IndexList, Eigen::type2index<1>, int> reshape_dims; reshape_dims.set(0, batch); reshape_dims.set(3, channels); Eigen::IndexList, Eigen::type2index<2>, Eigen::type2index<0>, Eigen::type2index<3> > reduced_dims_first; #endif Eigen::Sizes<1, 1, 1, 1> scalar; float num_reduced_coeffs = height * width; output.device(d) = (input.shuffle(reduced_dims_first).sum(reduction_axis).eval() / num_reduced_coeffs) .reshape(reshape_dims) .broadcast(broadcast_dims); auto contrast_factor_tensor = contrast_factor.reshape(scalar).broadcast(scalar_broadcast); auto adjusted = (input - output) * contrast_factor_tensor; output.device(d) += adjusted; } }; } // namespace functor } // namespace tensorflow #endif // TENSORFLOW_CORE_KERNELS_ADJUST_CONTRAST_OP_H_