81 #ifndef DSPLIB_SVD_IXX_IXX_OXX_H_
82 #define DSPLIB_SVD_IXX_IXX_OXX_H_
84 #include "../common/DSPLIB_types.h"
86 #define DSPLIB_CYCLE_CALC 0
243 const void *restrict pA,
244 const void *restrict pU,
245 const void *restrict pV,
246 const void *restrict pDiag,
247 const void *restrict pSuperDiag,
248 const void *restrict pU1,
249 const void *restrict pV1,
250 const void *restrict pScratch);
301 void *restrict pDiag,
302 void *restrict pSuperDiag,
305 void *restrict pScratch);
DSPLIB_STATUS_NAME
The enumeration of all status codes.
void * DSPLIB_kernelHandle
Handle type for DSPLIB operations.
DSPLIB_STATUS DSPLIB_svd_exec(DSPLIB_kernelHandle handle, void *restrict pA, void *restrict pU, void *restrict pV, void *restrict pDiag, void *restrict pSuperDiag, void *restrict pU1, void *restrict pV1, void *restrict pScratch)
This function is the main kernel compute function.
DSPLIB_STATUS DSPLIB_svd_exec_checkParams(DSPLIB_kernelHandle handle, const void *restrict pA, const void *restrict pU, const void *restrict pV, const void *restrict pDiag, const void *restrict pSuperDiag, const void *restrict pU1, const void *restrict pV1, const void *restrict pScratch)
This function checks the validity of the parameters passed to DSPLIB_svd_exec function....
DSPLIB_STATUS DSPLIB_svd_init_checkParams(DSPLIB_kernelHandle handle, const DSPLIB_bufParams2D_t *bufParamsA, const DSPLIB_bufParams2D_t *bufParamsU, const DSPLIB_bufParams2D_t *bufParamsV, const DSPLIB_bufParams1D_t *bufParamsDiag, const DSPLIB_bufParams1D_t *bufParamsSuperDiag, const DSPLIB_svdInitArgs *pKerInitArgs)
This function checks the validity of the parameters passed to DSPLIB_svd_init function....
int32_t DSPLIB_svd_getHandleSize(DSPLIB_svdInitArgs *pKerInitArgs)
This is a query function to calculate the size of internal handle.
DSPLIB_STATUS DSPLIB_svd_init(DSPLIB_kernelHandle handle, const DSPLIB_bufParams2D_t *bufParamsA, const DSPLIB_bufParams2D_t *bufParamsU, const DSPLIB_bufParams2D_t *bufParamsV, const DSPLIB_bufParams1D_t *bufParamsDiag, const DSPLIB_bufParams1D_t *bufParamsSuperDiag, const DSPLIB_svdInitArgs *pKerInitArgs)
This function should be called before the DSPLIB_svd_exec function is called. This function takes car...
A structure for a 1 dimensional buffer descriptor.
A structure for a 2 dimensional buffer descriptor.
Structure containing the parameters to initialize the kernel.
uint32_t enableReducedForm
Flag to activate reduced form calculation | 1 => REDUCED FORM | 0 => NON-REDUCED FORM.
uint32_t dimY
Size of input data dimY => Number of rows.
uint32_t strideVRows
Stride value for V matrix in the transposed form.
uint32_t strideURows
Stride value for U matrix in the transposed form.
int8_t funcStyle
Variant of the function refer to DSPLIB_FUNCTION_STYLE
uint32_t dimX
Size of input data dimX => Number of columns.