blob: 85332e6de3b889250ed689150734812e4d1def67 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* Copyright 2023 Luca Fedeli
*
* This file is part of WarpX.
*
* License: BSD-3-Clause-LBNL
*/
#ifndef WARPX_ROCFFT_UTIL_H_
#define WARPX_ROCFFT_UTIL_H_
namespace utils::rocfft
{
/** This function is a wrapper around rocff_setup().
* It is a no-op in case rocfft is not used.
*/
void setup();
/** This function is a wrapper around rocff_cleanup().
* It is a no-op in case rocfft is not used.
*/
void cleanup();
}
#endif //WARPX_ROCFFT_UTILS_H_
|