81 #ifndef DSPLIB_SVD_SMALL_IXX_IXX_OXX_H_
82 #define DSPLIB_SVD_SMALL_IXX_IXX_OXX_H_
84 #include "../common/DSPLIB_types.h"
251 const void *restrict pA,
252 const void *restrict pU,
253 const void *restrict pV,
254 const void *restrict pDiag,
255 const void *restrict pSuperDiag,
256 const void *restrict pU1);
303 void *restrict pDiag,
304 void *restrict pSuperDiag,
DSPLIB_STATUS_NAME
The enumeration of all status codes.
void * DSPLIB_kernelHandle
Handle type for DSPLIB operations.
DSPLIB_STATUS DSPLIB_svd_small_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_svd_small_InitArgs *pKerInitArgs)
This function checks the validity of the parameters passed to DSPLIB_svd_small_init function....
DSPLIB_STATUS DSPLIB_svd_small_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)
This function checks the validity of the parameters passed to DSPLIB_svd_small_exec function....
DSPLIB_STATUS DSPLIB_svd_small_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_svd_small_InitArgs *pKerInitArgs)
This function should be called before the DSPLIB_svd_small_exec function is called....
DSPLIB_STATUS DSPLIB_svd_small_exec(DSPLIB_kernelHandle handle, void *restrict pA, void *restrict pU, void *restrict pV, void *restrict pDiag, void *restrict pSuperDiag, void *restrict pU1)
This function is the main kernel compute function.
int32_t DSPLIB_svd_small_getHandleSize(DSPLIB_svd_small_InitArgs *pKerInitArgs)
This is a query function to calculate the size of internal handle.
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 dimX
Size of input data dimX => Number of columns ( = 6 or 7)
uint32_t strideVRows
Stride value for V matrix in the transposed form.
int8_t funcStyle
Variant of the function refer to DSPLIB_FUNCTION_STYLE
uint32_t strideURows
Stride value for U matrix in the transposed form.
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 ( = 6 only)