DSPLIB User Guide
DSPLIB_cholesky_inplace_priv.h
Go to the documentation of this file.
1 /******************************************************************************
2  * *
3  * module name :DSPLIB *
4  * *
5  * module descripton :Digital Signal Processing Library module for C7x+MMA *
6  * *
7  * Copyright (C) 2017-2018 Texas Instruments Incorporated - https://www.ti.com/ *
8  * ALL RIGHTS RESERVED *
9  * *
10  ******************************************************************************/
11 
12 /********************************************************************************
13  * @file DSPLIB_cholesky_inplace_priv.h
14  *
15  * @brief File to hold private parameters of function DSPLIB_cholesky_inplace
16  *
17  * @version 0.1 - Mar 2022 : Initial Version
18  *
19  ********************************************************************************/
20 
21 #ifndef DSPLIB_CHOLESKY_INPLACE_IXX_IXX_OXX_PRIV_H_
22 #define DSPLIB_CHOLESKY_INPLACE_IXX_IXX_OXX_PRIV_H_
23 
24 // #include "../../common/DSPLIB_utility.h"
25 #include "../common/DSPLIB_inlines.h"
26 #include "../common/DSPLIB_utility.h"
27 
28 #include "DSPLIB_cholesky_common.h"
30 
43 #define DSPLIB_CHOLESKY_INPLACE_IXX_IXX_OXX_PBLOCK_SIZE (7 * SE_PARAM_SIZE)
44 
51  void *restrict pA,
52  void *restrict pMul);
53 
80 template <typename dataType>
82  DSPLIB_bufParams2D_t *bufParamsA,
83  DSPLIB_bufParams1D_t *bufParamsMul,
84  const DSPLIB_cholesky_inplace_InitArgs *pKerInitArgs);
85 
107 template <typename dataType>
108 extern DSPLIB_STATUS
109 DSPLIB_cholesky_inplace_exec_ci(DSPLIB_kernelHandle handle, void *restrict pA, void *restrict pMul);
110 
125 template <typename dataType>
126 extern DSPLIB_STATUS
127 DSPLIB_cholesky_inplace_exec_cn(DSPLIB_kernelHandle handle, void *restrict pA, void *restrict pMul);
128 
132 typedef struct {
140  int32_t order; // Order of input A
141  int32_t stride; // stride to go from one row to the other
142  int32_t enableTest; // flag to check if input matrix is positive definite
146 
147 #endif /* DSPLIB_CHOLESKY_INPLACE_IXX_IXX_OXX_PRIV_H_ */
148 
149 /* ======================================================================== */
150 /* End of file: DSPLIB_cholesky_inplace_priv.h */
151 /* ======================================================================== */
DSPLIB_STATUS(* pFxnDSPLIB_cholesky_inplace_exec)(DSPLIB_kernelHandle handle, void *restrict pA, void *restrict pMul)
This is a function pointer type that conforms to the declaration of DSPLIB_cholesky_inplace_exec_ci a...
DSPLIB_STATUS DSPLIB_cholesky_inplace_init_ci(DSPLIB_kernelHandle handle, DSPLIB_bufParams2D_t *bufParamsA, DSPLIB_bufParams1D_t *bufParamsMul, const DSPLIB_cholesky_inplace_InitArgs *pKerInitArgs)
This function is the initialization function for the C7x implementation of the kernel....
DSPLIB_STATUS DSPLIB_cholesky_inplace_exec_cn(DSPLIB_kernelHandle handle, void *restrict pA, void *restrict pMul)
This function is the main execution function for the natural C implementation of the kernel....
#define DSPLIB_CHOLESKY_INPLACE_IXX_IXX_OXX_PBLOCK_SIZE
Macro to define the size of bufPblock array of DSPLIB_cholesky_inplace_PrivArgs structure.
DSPLIB_STATUS DSPLIB_cholesky_inplace_exec_ci(DSPLIB_kernelHandle handle, void *restrict pA, void *restrict pMul)
This function is the main execution function for the C7x implementation of the kernel....
DSPLIB_STATUS_NAME DSPLIB_STATUS
Return value for DSPLIB functions.
Definition: DSPLIB_types.h:170
DSPLIB_STATUS_NAME
The enumeration of all status codes.
Definition: DSPLIB_types.h:151
void * DSPLIB_kernelHandle
Handle type for DSPLIB operations.
Definition: DSPLIB_types.h:172
A structure for a 1 dimensional buffer descriptor.
A structure for a 2 dimensional buffer descriptor.
Structure containing the parameters to initialize the kernel.
Structure that is reserved for internal use by the kernel.
int32_t order
Order of input buffer for different batches DSPLIB_cholesky_inplace_init that will be retrieved and u...
pFxnDSPLIB_cholesky_inplace_exec execute
Function pointer to point to the right execution variant between DSPLIB_cholesky_inplace_exec_cn and ...