| 66 | } |
| 67 | |
| 68 | FFTTransposeNonSquareAction::FFTTransposeNonSquareAction(clfftPlanHandle plHandle, FFTPlan * plan, cl_command_queue queue, clfftStatus & err) |
| 69 | : FFTAction(plan, err) |
| 70 | { |
| 71 | if (err != CLFFT_SUCCESS) |
| 72 | { |
| 73 | // FFTAction() failed, exit constructor |
| 74 | return; |
| 75 | } |
| 76 | |
| 77 | err = CLFFT_SUCCESS; |
| 78 | } |
| 79 | |
| 80 | FFTStockhamAction::FFTStockhamAction(clfftPlanHandle plHandle, FFTPlan * plan, cl_command_queue queue, clfftStatus & err) |
| 81 | : FFTAction(plan, err) |
nothing calls this directly
no outgoing calls
no test coverage detected