cufft.h 3.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* 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
#ifdef PADDLE_WITH_CUDA
#include <cufft.h>
#include <cufftXt.h>
#include <glog/logging.h>
#include <mutex>  // NOLINT

22
#include "paddle/pten/backends/dynload/cufft.h"
23 24 25 26 27 28 29

namespace paddle {
namespace platform {
namespace dynload {

extern bool HasCUFFT();

30 31 32
#define PLATFORM_DECLARE_DYNAMIC_LOAD_CUFFT_WRAP(__name)      \
  using DynLoad__##__name = pten::dynload::DynLoad__##__name; \
  extern DynLoad__##__name __name
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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91

/**
 * include all needed cufft functions in HPPL
 * different cufft version has different interfaces
 **/
#define CUFFT_FFT_ROUTINE_EACH(__macro)  \
  __macro(cufftPlan1d);                  \
  __macro(cufftPlan2d);                  \
  __macro(cufftPlan3d);                  \
  __macro(cufftPlanMany);                \
  __macro(cufftMakePlan1d);              \
  __macro(cufftMakePlan2d);              \
  __macro(cufftMakePlan3d);              \
  __macro(cufftMakePlanMany);            \
  __macro(cufftMakePlanMany64);          \
  __macro(cufftGetSizeMany64);           \
  __macro(cufftEstimate1d);              \
  __macro(cufftEstimate2d);              \
  __macro(cufftEstimate3d);              \
  __macro(cufftEstimateMany);            \
  __macro(cufftCreate);                  \
  __macro(cufftGetSize1d);               \
  __macro(cufftGetSize2d);               \
  __macro(cufftGetSize3d);               \
  __macro(cufftGetSizeMany);             \
  __macro(cufftGetSize);                 \
  __macro(cufftSetWorkArea);             \
  __macro(cufftSetAutoAllocation);       \
  __macro(cufftExecC2C);                 \
  __macro(cufftExecR2C);                 \
  __macro(cufftExecC2R);                 \
  __macro(cufftExecZ2Z);                 \
  __macro(cufftExecD2Z);                 \
  __macro(cufftExecZ2D);                 \
  __macro(cufftSetStream);               \
  __macro(cufftDestroy);                 \
  __macro(cufftGetVersion);              \
  __macro(cufftGetProperty);             \
  __macro(cufftXtSetGPUs);               \
  __macro(cufftXtMalloc);                \
  __macro(cufftXtMemcpy);                \
  __macro(cufftXtFree);                  \
  __macro(cufftXtSetWorkArea);           \
  __macro(cufftXtExecDescriptorC2C);     \
  __macro(cufftXtExecDescriptorR2C);     \
  __macro(cufftXtExecDescriptorC2R);     \
  __macro(cufftXtExecDescriptorZ2Z);     \
  __macro(cufftXtExecDescriptorD2Z);     \
  __macro(cufftXtExecDescriptorZ2D);     \
  __macro(cufftXtQueryPlan);             \
  __macro(cufftXtSetCallback);           \
  __macro(cufftXtClearCallback);         \
  __macro(cufftXtSetCallbackSharedSize); \
  __macro(cufftXtMakePlanMany);          \
  __macro(cufftXtGetSizeMany);           \
  __macro(cufftXtExec);                  \
  __macro(cufftXtExecDescriptor);        \
  __macro(cufftXtSetWorkAreaPolicy);

92
CUFFT_FFT_ROUTINE_EACH(PLATFORM_DECLARE_DYNAMIC_LOAD_CUFFT_WRAP)
93 94 95 96 97 98

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

#endif