Hipace
CuFFTUtils.H
Go to the documentation of this file.
1 /* Copyright 2020-2021
2  *
3  * This file is part of HiPACE++.
4  *
5  * Authors: Axel Huebl, MaxThevenet
6  * License: BSD-3-Clause-LBNL
7  */
8 #ifndef CUFFTUTILS_H_
9 #define CUFFTUTILS_H_
10 
11 #include <cufft.h>
12 
13 #include <string>
14 
15 
16 namespace CuFFTUtils
17 {
24  std::string cufftErrorToString (const cufftResult& err);
25 }
26 
27 #endif // CUFFTUTILS_H_
Definition: CuFFTUtils.cpp:13
std::string cufftErrorToString(const cufftResult &err)
This method converts a cufftResult into the corresponding string.
Definition: CuFFTUtils.cpp:14