/* 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. ==============================================================================*/ // See docs in ../ops/nn_ops.cc. #define EIGEN_USE_THREADS #include "tensorflow/core/kernels/l2loss_op.h" #include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor" #include "tensorflow/core/framework/numeric_op.h" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/register_types.h" #include "tensorflow/core/framework/tensor.h" namespace tensorflow { typedef Eigen::ThreadPoolDevice CPUDevice; template class L2LossOp : public OpKernel { public: explicit L2LossOp(OpKernelConstruction* context) : OpKernel(context) {} void Compute(OpKernelContext* context) override { // The input tensor can be of any number of dimensions, even though it's // 2D in most typical applications. const Tensor& input = context->input(0); // The output is a single number. Tensor* output = nullptr; OP_REQUIRES_OK(context, context->allocate_output(0, TensorShape({}), &output)); const CPUDevice& d = context->eigen_device(); output->scalar().device(d) = (input.flat().square() * static_cast(0.5)).sum(); } }; #define REGISTER_KERNEL(T) \ REGISTER_KERNEL_BUILDER( \ Name("L2Loss").Device(DEVICE_CPU).TypeConstraint("T"), \ L2LossOp); REGISTER_KERNEL(float); REGISTER_KERNEL(double); REGISTER_KERNEL(Eigen::half); #undef REGISTER_KERNEL } // namespace tensorflow