/* 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 #include #include #include // NOLINT #include "paddle/fluid/platform/dynload/dynamic_loader.h" #include "paddle/fluid/platform/port.h" namespace paddle { namespace platform { namespace dynload { extern std::once_flag cufft_dso_flag; extern void* cufft_dso_handle; extern bool HasCUFFT(); extern void EnforceCUFFTLoaded(const char* fn_name); #define DECLARE_DYNAMIC_LOAD_CUFFT_WRAP(__name) \ struct DynLoad__##__name { \ template \ auto operator()(Args... args) -> DECLARE_TYPE(__name, args...) { \ using cufft_func = decltype(&::__name); \ std::call_once(cufft_dso_flag, []() { \ cufft_dso_handle = paddle::platform::dynload::GetCUFFTDsoHandle(); \ }); \ EnforceCUFFTLoaded(#__name); \ static void* p_##__name = dlsym(cufft_dso_handle, #__name); \ return reinterpret_cast(p_##__name)(args...); \ } \ }; \ extern struct DynLoad__##__name __name /** * 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); CUFFT_FFT_ROUTINE_EACH(DECLARE_DYNAMIC_LOAD_CUFFT_WRAP) } // namespace dynload } // namespace platform } // namespace paddle #endif