lapack.h 7.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2016 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. */

#pragma once

17
#include <complex>
18
#include <mutex>
19
#include "paddle/fluid/platform/complex.h"
20 21 22 23 24 25 26 27 28 29 30 31
#include "paddle/fluid/platform/dynload/dynamic_loader.h"
#include "paddle/fluid/platform/port.h"

// Note(zhouwei): because lapack doesn't provide appropriate header file.
// should expose API statement yourself.

// getrf_(For example)
extern "C" void dgetrf_(int *m, int *n, double *a, int *lda, int *ipiv,
                        int *info);
extern "C" void sgetrf_(int *m, int *n, float *a, int *lda, int *ipiv,
                        int *info);

32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
// evd
extern "C" void zheevd_(char *jobz, char *uplo, int *n, std::complex<double> *a,
                        int *lda, double *w, std::complex<double> *work,
                        int *lwork, double *rwork, int *lrwork, int *iwork,
                        int *liwork, int *info);
extern "C" void cheevd_(char *jobz, char *uplo, int *n, std::complex<float> *a,
                        int *lda, float *w, std::complex<float> *work,
                        int *lwork, float *rwork, int *lrwork, int *iwork,
                        int *liwork, int *info);
extern "C" void dsyevd_(char *jobz, char *uplo, int *n, double *a, int *lda,
                        double *w, double *work, int *lwork, int *iwork,
                        int *liwork, int *info);
extern "C" void ssyevd_(char *jobz, char *uplo, int *n, float *a, int *lda,
                        float *w, float *work, int *lwork, int *iwork,
                        int *liwork, int *info);

48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
// geev
extern "C" void dgeev_(char *jobvl, char *jobvr, int *n, double *a, int *lda,
                       double *wr, double *wi, double *vl, int *ldvl,
                       double *vr, int *ldvr, double *work, int *lwork,
                       int *info);
extern "C" void sgeev_(char *jobvl, char *jobvr, int *n, float *a, int *lda,
                       float *wr, float *wi, float *vl, int *ldvl, float *vr,
                       int *ldvr, float *work, int *lwork, int *info);
extern "C" void zgeev_(char *jobvl, char *jobvr, int *n,
                       std::complex<double> *a, int *lda,
                       std::complex<double> *w, std::complex<double> *vl,
                       int *ldvl, std::complex<double> *vr, int *ldvr,
                       std::complex<double> *work, int *lwork, double *rwork,
                       int *info);
extern "C" void cgeev_(char *jobvl, char *jobvr, int *n, std::complex<float> *a,
                       int *lda, std::complex<float> *w,
                       std::complex<float> *vl, int *ldvl,
                       std::complex<float> *vr, int *ldvr,
                       std::complex<float> *work, int *lwork, float *rwork,
                       int *info);

69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
// gels
extern "C" void dgels_(char *trans, int *m, int *n, int *nrhs, double *a,
                       int *lda, double *b, int *ldb, double *work, int *lwork,
                       int *info);
extern "C" void sgels_(char *trans, int *m, int *n, int *nrhs, float *a,
                       int *lda, float *b, int *ldb, float *work, int *lwork,
                       int *info);

// gelsd
extern "C" void dgelsd_(int *m, int *n, int *nrhs, double *a, int *lda,
                        double *b, int *ldb, double *s, double *rcond,
                        int *rank, double *work, int *lwork, int *iwork,
                        int *info);
extern "C" void sgelsd_(int *m, int *n, int *nrhs, float *a, int *lda, float *b,
                        int *ldb, float *s, float *rcond, int *rank,
                        float *work, int *lwork, int *iwork, int *info);

// gelsy
extern "C" void dgelsy_(int *m, int *n, int *nrhs, double *a, int *lda,
                        double *b, int *ldb, int *jpvt, double *rcond,
                        int *rank, double *work, int *lwork, int *info);
extern "C" void sgelsy_(int *m, int *n, int *nrhs, float *a, int *lda, float *b,
                        int *ldb, int *jpvt, float *rcond, int *rank,
                        float *work, int *lwork, int *info);

// gelss
extern "C" void dgelss_(int *m, int *n, int *nrhs, double *a, int *lda,
                        double *b, int *ldb, double *s, double *rcond,
                        int *rank, double *work, int *lwork, int *info);
extern "C" void sgelss_(int *m, int *n, int *nrhs, float *a, int *lda, float *b,
                        int *ldb, float *s, float *rcond, int *rank,
                        float *work, int *lwork, int *info);

Z
zhiboniu 已提交
102 103 104 105 106 107 108 109 110
extern "C" void zpotrs_(char *uplo, int *n, int *nrhs, std::complex<double> *a,
                        int *lda, std::complex<double> *b, int *ldb, int *info);
extern "C" void cpotrs_(char *uplo, int *n, int *nrhs, std::complex<float> *a,
                        int *lda, std::complex<float> *b, int *ldb, int *info);
extern "C" void dpotrs_(char *uplo, int *n, int *nrhs, double *a, int *lda,
                        double *b, int *ldb, int *info);
extern "C" void spotrs_(char *uplo, int *n, int *nrhs, float *a, int *lda,
                        float *b, int *ldb, int *info);

111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
namespace paddle {
namespace platform {
namespace dynload {

extern std::once_flag lapack_dso_flag;
extern void *lapack_dso_handle;

/**
 * The following macro definition can generate structs
 * (for each function) to dynamic load lapack routine
 * via operator overloading.
 */
#define DYNAMIC_LOAD_LAPACK_WRAP(__name)                                     \
  struct DynLoad__##__name {                                                 \
    template <typename... Args>                                              \
    auto operator()(Args... args) -> DECLARE_TYPE(__name, args...) {         \
      using lapackFunc = decltype(&::__name);                                \
      std::call_once(lapack_dso_flag, []() {                                 \
        lapack_dso_handle = paddle::platform::dynload::GetLAPACKDsoHandle(); \
      });                                                                    \
      static void *p_##_name = dlsym(lapack_dso_handle, #__name);            \
      return reinterpret_cast<lapackFunc>(p_##_name)(args...);               \
    }                                                                        \
  };                                                                         \
  extern DynLoad__##__name __name

#define DECLARE_DYNAMIC_LOAD_LAPACK_WRAP(__name) \
  DYNAMIC_LOAD_LAPACK_WRAP(__name)

#define LAPACK_ROUTINE_EACH(__macro) \
  __macro(dgetrf_);                  \
142
  __macro(sgetrf_);                  \
143 144 145 146
  __macro(zheevd_);                  \
  __macro(cheevd_);                  \
  __macro(dsyevd_);                  \
  __macro(ssyevd_);                  \
147 148 149
  __macro(dgeev_);                   \
  __macro(sgeev_);                   \
  __macro(zgeev_);                   \
Z
zhiboniu 已提交
150
  __macro(cgeev_);                   \
151 152 153 154 155 156 157 158
  __macro(dgels_);                   \
  __macro(sgels_);                   \
  __macro(dgelsd_);                  \
  __macro(sgelsd_);                  \
  __macro(dgelsy_);                  \
  __macro(sgelsy_);                  \
  __macro(dgelss_);                  \
  __macro(sgelss_);                  \
Z
zhiboniu 已提交
159 160 161 162
  __macro(zpotrs_);                  \
  __macro(cpotrs_);                  \
  __macro(dpotrs_);                  \
  __macro(spotrs_);
163 164 165 166 167 168 169 170

LAPACK_ROUTINE_EACH(DECLARE_DYNAMIC_LOAD_LAPACK_WRAP);

#undef DYNAMIC_LOAD_LAPACK_WRAP

}  // namespace dynload
}  // namespace platform
}  // namespace paddle