| 71 | |
| 72 | |
| 73 | bool FFTGeneratedTransposeNonSquareAction::buildForwardKernel() |
| 74 | { |
| 75 | clfftLayout inputLayout = this->getSignatureData()->fft_inputLayout; |
| 76 | clfftLayout outputLayout = this->getSignatureData()->fft_outputLayout; |
| 77 | |
| 78 | bool r2c_transform = (inputLayout == CLFFT_REAL); |
| 79 | bool c2r_transform = (outputLayout == CLFFT_REAL); |
| 80 | bool real_transform = (r2c_transform || c2r_transform); |
| 81 | |
| 82 | return (!real_transform) || r2c_transform; |
| 83 | } |
| 84 | |
| 85 | bool FFTGeneratedTransposeNonSquareAction::buildBackwardKernel() |
| 86 | { |
nothing calls this directly
no test coverage detected