matrix_inverse.cu.cc 5.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2020 PaddlePaddle 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. */

#include "paddle/fluid/operators/math/blas.h"

W
wanghuancoder 已提交
17 18 19 20 21 22
namespace paddle {
namespace platform {
class CUDADeviceContext;
}  // namespace platform
}  // namespace paddle

23 24 25 26
namespace paddle {
namespace operators {
namespace math {

W
wanghuancoder 已提交
27 28 29
template <typename DeviceContext, typename T>
class MatrixInverseFunctor;

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
template <typename T>
class MatrixInverseFunctor<platform::CUDADeviceContext, T> {
 public:
  void operator()(const platform::CUDADeviceContext& context,
                  const framework::Tensor& a, framework::Tensor* a_inv) {
    const auto& mat_dims = a.dims();
    const int rank = mat_dims.size();
    int n = mat_dims[rank - 1];
    int batch_size = rank > 2 ? a.numel() / (n * n) : 1;

    memory::allocation::AllocationPtr tmp_gpu_mat_data;
    const T* gpu_mat = a.data<T>();
    if (n >= 32) {
      // Copy all elements of input matrix A to a temporary memory space to
      // avoid being overriden by getrf.
      tmp_gpu_mat_data = memory::Alloc(context, a.numel() * sizeof(T));
      memory::Copy(boost::get<platform::CUDAPlace>(context.GetPlace()),
                   tmp_gpu_mat_data->ptr(),
                   boost::get<platform::CUDAPlace>(context.GetPlace()),
                   a.data<void>(), a.numel() * sizeof(T), context.stream());
      gpu_mat = reinterpret_cast<const T*>(tmp_gpu_mat_data->ptr());
    }

    std::vector<const T*> cpu_ptrs(batch_size * 2);
    for (int i = 0; i < batch_size; ++i) {
      cpu_ptrs[i] = gpu_mat + i * n * n;
      cpu_ptrs[i + batch_size] = a_inv->data<T>() + i * n * n;
    }

    // Copy the addresses of A and A_inv from host to device.
    memory::allocation::AllocationPtr tmp_gpu_ptrs_data =
        memory::Alloc(context, cpu_ptrs.size() * sizeof(T*));
    memory::Copy(boost::get<platform::CUDAPlace>(context.GetPlace()),
                 tmp_gpu_ptrs_data->ptr(), platform::CPUPlace(),
                 static_cast<void*>(cpu_ptrs.data()),
                 cpu_ptrs.size() * sizeof(T*), context.stream());
    T** gpu_inv_ptrs =
        reinterpret_cast<T**>(tmp_gpu_ptrs_data->ptr()) + batch_size;

    // Allocate device memory for info and pivots.
    int num_ints = n < 32 ? batch_size : batch_size * (n + 1);
    memory::allocation::AllocationPtr tmp_gpu_info_data =
        memory::Alloc(context, num_ints * sizeof(int));
    int* gpu_info_ptr = reinterpret_cast<int*>(tmp_gpu_info_data->ptr());

    auto blas = math::GetBlas<platform::CUDADeviceContext, T>(context);

S
ShenLiang 已提交
77 78
    std::vector<int> info;  // only for singular checking
    info.resize(batch_size);
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
    // This functions in cuBLAS is intended to be used for matrices of small
    // sizes where the launch overhead is a significant factor.
    // TODO(Xreki): call function in cusolver for large matrices.
    if (n < 32) {
      // cublas<S/D>matinvBatched is a short cut of cublas<S/D>getrfBatched
      // plus cublas<S/D>getriBatched.
      // However it only works if N is less than 32. If not, we need to
      // go through cublas<S/D>getrfBatched and cublas<S/D>getriBatched.
      blas.BatchedMatInv(n,
                         reinterpret_cast<const T**>(tmp_gpu_ptrs_data->ptr()),
                         gpu_inv_ptrs, gpu_info_ptr, batch_size);
    } else {
      // This function performs the LU factorization of each matrix A by the
      // equation P * A = L * U. L and U are written back to original matrix A,
      // and diagonal elements of L are discarded.
      int* gpu_pivot_ptr =
          reinterpret_cast<int*>(tmp_gpu_info_data->ptr()) + batch_size;
      blas.BatchedGETRF(n, reinterpret_cast<T**>(tmp_gpu_ptrs_data->ptr()),
                        gpu_pivot_ptr, gpu_info_ptr, batch_size);

      blas.BatchedGETRI(n,
                        reinterpret_cast<const T**>(tmp_gpu_ptrs_data->ptr()),
                        gpu_pivot_ptr, gpu_inv_ptrs, gpu_info_ptr, batch_size);
    }
S
ShenLiang 已提交
103 104 105 106 107 108 109 110 111
    memory::Copy(platform::CPUPlace(), info.data(),
                 BOOST_GET_CONST(platform::CUDAPlace, context.GetPlace()),
                 gpu_info_ptr, sizeof(int) * batch_size, context.stream());
    for (int i = 0; i < batch_size; ++i) {
      PADDLE_ENFORCE_EQ(info[i], 0,
                        platform::errors::PreconditionNotMet(
                            "For batch [%d]: U(%d, %d) is zero, singular U.", i,
                            info[i], info[i]));
    }
112 113 114 115 116 117 118 119 120
  }
};

template class MatrixInverseFunctor<platform::CUDADeviceContext, float>;
template class MatrixInverseFunctor<platform::CUDADeviceContext, double>;

}  // namespace math
}  // namespace operators
}  // namespace paddle