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