| 75 | } |
| 76 | |
| 77 | bool FFTGeneratedStockhamAction::buildBackwardKernel() |
| 78 | { |
| 79 | clfftLayout inputLayout = this->getSignatureData()->fft_inputLayout; |
| 80 | clfftLayout outputLayout = this->getSignatureData()->fft_outputLayout; |
| 81 | |
| 82 | bool r2c_transform = (inputLayout == CLFFT_REAL); |
| 83 | bool c2r_transform = (outputLayout == CLFFT_REAL); |
| 84 | bool real_transform = (r2c_transform || c2r_transform); |
| 85 | |
| 86 | return (!real_transform) || c2r_transform; |
| 87 | } |
| 88 | |
| 89 | |
| 90 | // FFT Stockham Autosort Method |
nothing calls this directly
no test coverage detected