cublasLt.h 2.4 KB
Newer Older
1
/* Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
2
Copyright (c) 2022 NVIDIA Authors. All Rights Reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

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

#include <cublasLt.h>
#include <cuda.h>
#include <mutex>  // NOLINT
#include <type_traits>

23
#include "paddle/phi/backends/dynload/cublasLt.h"
24 25 26 27 28 29 30 31 32 33 34 35

namespace paddle {
namespace platform {
namespace dynload {

/**
 * The following macro definition can generate structs
 * (for each function) to dynamic load cublasLt routine
 * via operator overloading.
 *
 * note: default dynamic linked libs
 */
36 37
#define PLATFORM_DECLARE_DYNAMIC_LOAD_CUBLASLT_WRAP(__name)  \
  using DynLoad__##__name = phi::dynload::DynLoad__##__name; \
38 39 40 41
  extern DynLoad__##__name __name

// APIs available after CUDA 10.1
// #if CUDA_VERSION >= 10100
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
#define CUBLASLT_BLAS_ROUTINE_EACH(__macro)      \
  __macro(cublasLtCreate);                       \
  __macro(cublasLtDestroy);                      \
  __macro(cublasLtMatmul);                       \
  __macro(cublasLtMatmulDescCreate);             \
  __macro(cublasLtMatmulDescDestroy);            \
  __macro(cublasLtMatmulDescSetAttribute);       \
  __macro(cublasLtMatmulDescGetAttribute);       \
  __macro(cublasLtMatrixLayoutCreate);           \
  __macro(cublasLtMatrixLayoutDestroy);          \
  __macro(cublasLtMatrixLayoutSetAttribute);     \
  __macro(cublasLtMatrixLayoutGetAttribute);     \
  __macro(cublasLtMatmulPreferenceCreate);       \
  __macro(cublasLtMatmulPreferenceDestroy);      \
  __macro(cublasLtMatmulPreferenceSetAttribute); \
  __macro(cublasLtMatmulAlgoGetHeuristic);       \
  __macro(cublasLtMatrixTransform);              \
  __macro(cublasLtMatrixTransformDescCreate);    \
  __macro(cublasLtMatrixTransformDescDestroy);   \
61 62
  __macro(cublasLtMatrixTransformDescSetAttribute);

63
CUBLASLT_BLAS_ROUTINE_EACH(PLATFORM_DECLARE_DYNAMIC_LOAD_CUBLASLT_WRAP)
64 65
// #endif

66
#undef PLATFORM_DECLARE_DYNAMIC_LOAD_CUBLASLT_WRAP
67 68 69
}  // namespace dynload
}  // namespace platform
}  // namespace paddle