| 30 | |
| 31 | |
| 32 | FFTCopyAction::FFTCopyAction(clfftPlanHandle plHandle, FFTPlan * plan, cl_command_queue queue, clfftStatus & err) |
| 33 | : FFTAction(plan, err) |
| 34 | { |
| 35 | if (err != CLFFT_SUCCESS) |
| 36 | { |
| 37 | // FFTAction() failed, exit constructor |
| 38 | return; |
| 39 | } |
| 40 | |
| 41 | err = CLFFT_SUCCESS; |
| 42 | } |
| 43 | |
| 44 | FFTTransposeGCNAction::FFTTransposeGCNAction(clfftPlanHandle plHandle, FFTPlan * plan, cl_command_queue queue, clfftStatus & err) |
| 45 | : FFTAction(plan, err) |
nothing calls this directly
no outgoing calls
no test coverage detected