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

@ -579,7 +579,17 @@ double BaseAmoebaT::host_memory_usage_atomic() const {
}
// ---------------------------------------------------------------------------
// Compute FFT
// Setup the FFT plan
// ---------------------------------------------------------------------------
template <class numtyp, class acctyp>
void BaseAmoebaT::setup_fft(const int size, const int element_type)
{
}
// ---------------------------------------------------------------------------
// Compute FFT on the device
// ---------------------------------------------------------------------------
template <class numtyp, class acctyp>