| 63 | } |
| 64 | |
| 65 | bool FFTGeneratedStockhamAction::buildForwardKernel() |
| 66 | { |
| 67 | clfftLayout inputLayout = this->getSignatureData()->fft_inputLayout; |
| 68 | clfftLayout outputLayout = this->getSignatureData()->fft_outputLayout; |
| 69 | |
| 70 | bool r2c_transform = (inputLayout == CLFFT_REAL); |
| 71 | bool c2r_transform = (outputLayout == CLFFT_REAL); |
| 72 | bool real_transform = (r2c_transform || c2r_transform); |
| 73 | |
| 74 | return (!real_transform) || r2c_transform; |
| 75 | } |
| 76 | |
| 77 | bool FFTGeneratedStockhamAction::buildBackwardKernel() |
| 78 | { |
nothing calls this directly
no test coverage detected