![]() |
DSPLIB User Guide
|
Go to the source code of this file.
Functions | |
| template<typename dataType > | |
| DSPLIB_STATUS | DSPLIB_qrd_solver_init_cn (DSPLIB_kernelHandle handle, DSPLIB_bufParams2D_t *bufParamsQ, DSPLIB_bufParams2D_t *bufParamsR, DSPLIB_bufParams1D_t *bufParamsB, DSPLIB_bufParams1D_t *bufParamsY, DSPLIB_bufParams1D_t *bufParamsX, const DSPLIB_qrdSolverInitArgs *pKerInitArgs) |
| This function is the initialization function for the natural C implementation of the kernel. The function declaration conforms to the declaration of DSPLIB_qrd_solver_init. More... | |
| template DSPLIB_STATUS | DSPLIB_qrd_solver_init_cn< float > (DSPLIB_kernelHandle handle, DSPLIB_bufParams2D_t *bufParamsQ, DSPLIB_bufParams2D_t *bufParamsR, DSPLIB_bufParams1D_t *bufParamsB, DSPLIB_bufParams1D_t *bufParamsY, DSPLIB_bufParams1D_t *bufParamsX, const DSPLIB_qrdSolverInitArgs *pKerInitArgs) |
| template DSPLIB_STATUS | DSPLIB_qrd_solver_init_cn< double > (DSPLIB_kernelHandle handle, DSPLIB_bufParams2D_t *bufParamsQ, DSPLIB_bufParams2D_t *bufParamsR, DSPLIB_bufParams1D_t *bufParamsB, DSPLIB_bufParams1D_t *bufParamsY, DSPLIB_bufParams1D_t *bufParamsX, const DSPLIB_qrdSolverInitArgs *pKerInitArgs) |
| template<typename dataType > | |
| DSPLIB_STATUS | DSPLIB_qrd_solver_exec_cn (DSPLIB_kernelHandle handle, void *restrict pQ, void *restrict pR, void *restrict pB, void *restrict pY, void *restrict pX, void *restrict pD, void *restrict pR1) |
| This function is the main execution function for the natural C implementation of the kernel. The function declaration conforms to the declaration of DSPLIB_qrd_solver_exec. More... | |
| template DSPLIB_STATUS | DSPLIB_qrd_solver_exec_cn< float > (DSPLIB_kernelHandle handle, void *restrict pQ, void *restrict pR, void *restrict pB, void *restrict pY, void *restrict pX, void *restrict pD, void *restrict pR1) |
| template DSPLIB_STATUS | DSPLIB_qrd_solver_exec_cn< double > (DSPLIB_kernelHandle handle, void *restrict pQ, void *restrict pR, void *restrict pB, void *restrict pY, void *restrict pX, void *restrict pD, void *restrict pR1) |
| DSPLIB_STATUS DSPLIB_qrd_solver_init_cn | ( | DSPLIB_kernelHandle | handle, |
| DSPLIB_bufParams2D_t * | bufParamsQ, | ||
| DSPLIB_bufParams2D_t * | bufParamsR, | ||
| DSPLIB_bufParams1D_t * | bufParamsB, | ||
| DSPLIB_bufParams1D_t * | bufParamsY, | ||
| DSPLIB_bufParams1D_t * | bufParamsX, | ||
| const DSPLIB_qrdSolverInitArgs * | pKerInitArgs | ||
| ) |
This function is the initialization function for the natural C implementation of the kernel. The function declaration conforms to the declaration of DSPLIB_qrd_solver_init.
| [in] | handle | : Active handle to the kernel |
| [in] | bufParamsQ | : Pointer to the structure containing dimensional information of Q matrix |
| [in] | bufParamsR | : Pointer to the structure containing dimensional information of R matrix |
| [in] | bufParamsB | : Pointer to the structure containing dimensional information of input vector B |
| [in] | bufParamsY | : Pointer to the structure containing dimensional information of temporary vector Y |
| [out] | bufParamsX | : Pointer to the structure containing dimensional information of ouput vector X |
| [in] | pKerInitArgs | : Pointer to the structure holding init parameters |
Definition at line 31 of file DSPLIB_qrd_solver_cn.cpp.
| template DSPLIB_STATUS DSPLIB_qrd_solver_init_cn< float > | ( | DSPLIB_kernelHandle | handle, |
| DSPLIB_bufParams2D_t * | bufParamsQ, | ||
| DSPLIB_bufParams2D_t * | bufParamsR, | ||
| DSPLIB_bufParams1D_t * | bufParamsB, | ||
| DSPLIB_bufParams1D_t * | bufParamsY, | ||
| DSPLIB_bufParams1D_t * | bufParamsX, | ||
| const DSPLIB_qrdSolverInitArgs * | pKerInitArgs | ||
| ) |
| template DSPLIB_STATUS DSPLIB_qrd_solver_init_cn< double > | ( | DSPLIB_kernelHandle | handle, |
| DSPLIB_bufParams2D_t * | bufParamsQ, | ||
| DSPLIB_bufParams2D_t * | bufParamsR, | ||
| DSPLIB_bufParams1D_t * | bufParamsB, | ||
| DSPLIB_bufParams1D_t * | bufParamsY, | ||
| DSPLIB_bufParams1D_t * | bufParamsX, | ||
| const DSPLIB_qrdSolverInitArgs * | pKerInitArgs | ||
| ) |
| DSPLIB_STATUS DSPLIB_qrd_solver_exec_cn | ( | DSPLIB_kernelHandle | handle, |
| void *restrict | pQ, | ||
| void *restrict | pR, | ||
| void *restrict | pB, | ||
| void *restrict | pY, | ||
| void *restrict | pX, | ||
| void *restrict | pD, | ||
| void *restrict | pR1 | ||
| ) |
This function is the main execution function for the natural C implementation of the kernel. The function declaration conforms to the declaration of DSPLIB_qrd_solver_exec.
| [in] | handle | : Active handle to the kernel. |
| [in] | pQ | : Pointer to the input matrix Q. |
| [in] | pR | : Pointer to the input matrix R. |
| [in] | pB | : Pointer to the input vector B. |
| [in] | pY | : Pointer to the temporary vector Y. |
| [out] | pX | : Pointer to the output vector X. |
| [in] | pD | : Pointer to the Scratch buffer D. |
| [in] | pR1 | : Pointer to the Scratch buffer for transposed matrix of R. |
Definition at line 60 of file DSPLIB_qrd_solver_cn.cpp.
| template DSPLIB_STATUS DSPLIB_qrd_solver_exec_cn< float > | ( | DSPLIB_kernelHandle | handle, |
| void *restrict | pQ, | ||
| void *restrict | pR, | ||
| void *restrict | pB, | ||
| void *restrict | pY, | ||
| void *restrict | pX, | ||
| void *restrict | pD, | ||
| void *restrict | pR1 | ||
| ) |
| template DSPLIB_STATUS DSPLIB_qrd_solver_exec_cn< double > | ( | DSPLIB_kernelHandle | handle, |
| void *restrict | pQ, | ||
| void *restrict | pR, | ||
| void *restrict | pB, | ||
| void *restrict | pY, | ||
| void *restrict | pX, | ||
| void *restrict | pD, | ||
| void *restrict | pR1 | ||
| ) |