1#ifndef PRDC_CUDA_FFT_BATCHED_H
2#define PRDC_CUDA_FFT_BATCHED_H
14#include <pscf/math/IntVec.h>
139 void makePlans(
int batchSize);
146 {
return meshDimensions_; }
153 #ifndef PRDC_CUDA_FFT_BATCHED_TPP
Dynamic array on the GPU device with aligned data.
An IntVec<D, T> is a D-component vector of elements of integer type T.
Batched Fourier transform wrapper for real data.
virtual ~FFTBatched()
Destructor.
void forwardTransform(DeviceArray< cudaReal > const &rFields, DeviceArray< cudaComplex > &kFields) const
Compute batched forward (real-to-complex) DFTs.
const IntVec< D > & meshDimensions() const
Return the dimensions of the grid for which this was allocated.
void inverseTransformUnsafe(DeviceArray< cudaComplex > &kFields, DeviceArray< cudaReal > &rFields) const
Compute inverse (complex-to-real) Fourier transform.
void setup(IntVec< D > const &meshDimensions, int batchSize)
Set up FFT calculation (get grid dimensions and make FFT plan)
FFTBatched()
Default constructor.
bool isSetup() const
Has the setup method been called?
void resetBatchSize(int batchSize)
Set the batch size to a new value.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Utility classes for scientific computation.