Cleaned up unused variables in the amoeba kernels, made room for convolution gpu

This commit is contained in:
Trung Nguyen
2022-08-16 15:37:49 -05:00
parent 46b8b00a4f
commit 28dabb9687
6 changed files with 34 additions and 67 deletions

View File

@ -190,7 +190,12 @@ class BaseAmoeba {
_fieldp.update_host(_max_fieldp_size*8,false);
}
/// setup a plan for FFT, where size is the number of elements
void setup_fft(const int size, const int element_type=0);
/// compute forward/backward FFT on the device
void compute_fft1d(void** in, void** out, const int mode);
// -------------------------- DEVICE DATA -------------------------