/* 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/linalg_ops.cc. #if GOOGLE_CUDA #define EIGEN_USE_GPU #endif #include "third_party/eigen3/Eigen/Core" #include "third_party/eigen3/Eigen/LU" #include "tensorflow/core/framework/kernel_def_builder.h" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/tensor_shape.h" #include "tensorflow/core/kernels/linalg_ops_common.h" #include "tensorflow/core/lib/core/errors.h" #include "tensorflow/core/platform/logging.h" #include "tensorflow/core/platform/macros.h" #include "tensorflow/core/platform/types.h" #if GOOGLE_CUDA #include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor" #include "tensorflow/core/kernels/cuda_solvers.h" #include "tensorflow/core/kernels/eye_functor.h" #include "tensorflow/core/kernels/transpose_functor.h" #endif namespace tensorflow { template class MatrixInverseOp : public LinearAlgebraOp { public: INHERIT_LINALG_TYPEDEFS(Scalar); explicit MatrixInverseOp(OpKernelConstruction* context) : Base(context) { OP_REQUIRES_OK(context, context->GetAttr("adjoint", &adjoint_)); } void ComputeMatrix(OpKernelContext* context, const ConstMatrixMaps& inputs, MatrixMaps* outputs) final { const ConstMatrixMap& input = inputs[0]; if (input.rows() == 0) { // By definition, an empty matrix's inverse is an empty matrix. return; } Eigen::PartialPivLU lu_decomposition; if (adjoint_) { // TODO(rmlarsen): For Eigen 3.2, this creates a temporary copy. // Make sure to backport: https://bitbucket.org/eigen/eigen/commits/ // bd2219a74c96dfe3f6bc2c23588749e36d2d8173 lu_decomposition.compute(input.adjoint()); } else { lu_decomposition.compute(input); } // TODO(rmlarsen): Add check based on condition number estimation. // PartialPivLU cannot give strong guarantees on invertibility, but // we can at least guard against exact zero pivots. This can occur as // a result of basic user mistakes, such as providing integer valued // matrices that are exactly singular, or due to underflow if this // code is run with denormals being flushed to zero. const RealScalar min_abs_pivot = lu_decomposition.matrixLU().diagonal().cwiseAbs().minCoeff(); OP_REQUIRES(context, min_abs_pivot > RealScalar(0), errors::InvalidArgument("Input is not invertible.")); outputs->at(0).noalias() = lu_decomposition.inverse(); } private: bool adjoint_; TF_DISALLOW_COPY_AND_ASSIGN(MatrixInverseOp); }; #if GOOGLE_CUDA typedef Eigen::GpuDevice GPUDevice; template class MatrixInverseOpGpu : public AsyncOpKernel { public: explicit MatrixInverseOpGpu(OpKernelConstruction* context) : AsyncOpKernel(context) { OP_REQUIRES_OK(context, context->GetAttr("adjoint", &adjoint_)); } void ComputeAsync(OpKernelContext* context, DoneCallback done) final { const Tensor& input = context->input(0); const int ndims = input.dims(); const int64 n = input.dim_size(ndims - 1); // Validate inputs. OP_REQUIRES_ASYNC( context, ndims >= 2, errors::InvalidArgument("Input must have rank >= 2, got ", ndims), done); OP_REQUIRES_ASYNC( context, input.dim_size(ndims - 2) == n, errors::InvalidArgument("Input matrices must be squares, got", input.dim_size(ndims - 2), " != ", n), done); // By definition, an empty matrix's inverse is an empty matrix. if (input.NumElements() == 0) { context->set_output(0, input); done(); return; } // Allocate output. Tensor* output; OP_REQUIRES_OK_ASYNC(context, context->forward_input_or_allocate_output( {0}, 0, input.shape(), &output), done); // TODO(rmlarsen): Convert to std::make_unique when available. std::unique_ptr solver(new CudaSolver(context)); // Make a copy of the (possible adjointed) input that we will use for the // factorization step. Tensor input_copy; OP_REQUIRES_OK_ASYNC( context, solver->allocate_scoped_tensor(DataTypeToEnum::value, input.shape(), &input_copy), done); auto input_copy_reshaped = input_copy.template flat_inner_dims(); const GPUDevice& device = context->eigen_device(); if (!adjoint_) { device.memcpy(input_copy.flat().data(), input.flat().data(), input.NumElements() * sizeof(Scalar)); } else { OP_REQUIRES_OK_ASYNC( context, DoConjugateMatrixTranspose(device, input, &input_copy), done); } const int64 batch_size = input_copy_reshaped.dimension(0); Tensor pivots; OP_REQUIRES_OK_ASYNC( context, solver->allocate_scoped_tensor(DataTypeToEnum::value, TensorShape{batch_size, n}, &pivots), done); auto pivots_mat = pivots.template matrix(); auto input_copy_ptr_array = solver->GetScratchSpace( sizeof(Scalar*) * batch_size, "input_copy_ptr_array", /* on_host */ true); auto output_ptr_array = solver->GetScratchSpace( sizeof(Scalar*) * batch_size, "output_copy_ptr_array", /* on_host */ true); auto output_reshaped = output->template flat_inner_dims(); std::vector dev_info; if (n < 32 || batch_size > n) { // For small matrices or very large batch sizes, we use the batched // interfaces in cuBlas to avoid being dominated by kernel launch // overhead. // TODO(rmlarsen): Come up with a better heuristic based on a simple // cost model. const Scalar** input_copy_ptr_array_base = reinterpret_cast(input_copy_ptr_array.mutable_data()); const Scalar** output_ptr_array_base = reinterpret_cast(output_ptr_array.mutable_data()); for (int batch = 0; batch < batch_size; ++batch) { input_copy_ptr_array_base[batch] = &input_copy_reshaped(batch, 0, 0); output_ptr_array_base[batch] = &output_reshaped(batch, 0, 0); } if (n < 32) { // MatInvBatched only supports n < 32. dev_info.push_back( solver->GetDeviceLapackInfo(batch_size, "MatInvBatched")); OP_REQUIRES_OK_ASYNC( context, solver->MatInvBatched(n, input_copy_ptr_array_base, n, output_ptr_array_base, n, &dev_info.back(), batch_size), done); } else { // For larger matrices and large batch size, we used the batched // GETRF/GETRI kernels. dev_info.push_back( solver->GetDeviceLapackInfo(batch_size, "GetrfBatched")); OP_REQUIRES_OK_ASYNC(context, solver->GetrfBatched(n, input_copy_ptr_array_base, n, pivots_mat.data(), &dev_info.back(), batch_size), done); // 2. Compute the inverse(s). dev_info.push_back( solver->GetDeviceLapackInfo(batch_size, "GetriBatched")); OP_REQUIRES_OK_ASYNC( context, solver->GetriBatched(n, input_copy_ptr_array_base, n, pivots_mat.data(), output_ptr_array_base, n, &dev_info.back(), batch_size), done); } } else { // For large matrices, we compute the inverse of each matrix in the batch // sequentially. Here we use the cuSolver methods GETRF/GETRS because they // are MUCH faster than their batched cuBlas equivalents for large // matrices. dev_info.push_back(solver->GetDeviceLapackInfo(batch_size, "getrf")); for (int batch = 0; batch < batch_size; ++batch) { OP_REQUIRES_OK_ASYNC( context, solver->Getrf(n, n, &input_copy_reshaped(batch, 0, 0), n, &pivots_mat(batch, 0), &dev_info.back()(batch)), done); } // Set all right-hand sides to the identity. functor::EyeFunctor eye; eye(device, output_reshaped); // Solve A X = I. dev_info.push_back(solver->GetDeviceLapackInfo(batch_size, "getrs")); for (int batch = 0; batch < batch_size; ++batch) { OP_REQUIRES_OK_ASYNC( context, solver->Getrs(CUBLAS_OP_N, n, n, &input_copy_reshaped(batch, 0, 0), n, &pivots_mat(batch, 0), &output_reshaped(batch, 0, 0), n, &dev_info.back()(batch)), done); } } // Callback for checking info after kernels finish. auto info_checker = [context, done]( const Status& status, const std::vector& host_infos) { if (!status.ok() && errors::IsInvalidArgument(status)) { for (const auto& host_info : host_infos) { for (int i = 0; i < host_info.size(); ++i) { // Match the CPU error message for singular matrices. Otherwise // just print the original error message from the call itself // below. OP_REQUIRES_ASYNC( context, host_info(i) <= 0, errors::InvalidArgument("Input is not invertible."), done); } } } OP_REQUIRES_OK_ASYNC(context, status, done); done(); }; CudaSolver::CheckLapackInfoAndDeleteSolverAsync(std::move(solver), dev_info, std::move(info_checker)); } private: bool adjoint_; }; REGISTER_LINALG_OP_GPU("MatrixInverse", (MatrixInverseOpGpu), float); REGISTER_LINALG_OP_GPU("MatrixInverse", (MatrixInverseOpGpu), double); REGISTER_LINALG_OP_GPU("MatrixInverse", (MatrixInverseOpGpu), complex64); REGISTER_LINALG_OP_GPU("MatrixInverse", (MatrixInverseOpGpu), complex128); #endif // GOOGLE_CUDA REGISTER_LINALG_OP("MatrixInverse", (MatrixInverseOp), float); REGISTER_LINALG_OP("MatrixInverse", (MatrixInverseOp), double); REGISTER_LINALG_OP("MatrixInverse", (MatrixInverseOp), complex64); REGISTER_LINALG_OP("MatrixInverse", (MatrixInverseOp), complex128); REGISTER_LINALG_OP("BatchMatrixInverse", (MatrixInverseOp), float); REGISTER_LINALG_OP("BatchMatrixInverse", (MatrixInverseOp), double); } // namespace tensorflow