| 54 | } |
| 55 | |
| 56 | FFTTransposeSquareAction::FFTTransposeSquareAction(clfftPlanHandle plHandle, FFTPlan * plan, cl_command_queue queue, clfftStatus & err) |
| 57 | : FFTAction(plan, err) |
| 58 | { |
| 59 | if (err != CLFFT_SUCCESS) |
| 60 | { |
| 61 | // FFTAction() failed, exit constructor |
| 62 | return; |
| 63 | } |
| 64 | |
| 65 | err = CLFFT_SUCCESS; |
| 66 | } |
| 67 | |
| 68 | FFTTransposeNonSquareAction::FFTTransposeNonSquareAction(clfftPlanHandle plHandle, FFTPlan * plan, cl_command_queue queue, clfftStatus & err) |
| 69 | : FFTAction(plan, err) |
nothing calls this directly
no outgoing calls
no test coverage detected