24 #ifndef __CHOLESKY_TYPES_H__
25 #define __CHOLESKY_TYPES_H__
27 #include "algorithms/algorithm.h"
28 #include "data_management/data/numeric_table.h"
29 #include "data_management/data/homogen_numeric_table.h"
30 #include "services/daal_defines.h"
73 lastResultId = choleskyFactor
85 class DAAL_EXPORT Input :
public daal::algorithms::Input
89 Input(
const Input& other) : daal::algorithms::Input(other){}
98 data_management::NumericTablePtr
get(InputId id)
const;
105 void set(InputId
id,
const data_management::NumericTablePtr &ptr);
114 virtual services::Status check(
const daal::algorithms::Parameter *par,
int method)
const DAAL_C11_OVERRIDE;
121 class DAAL_EXPORT Result :
public daal::algorithms::Result
124 DECLARE_SERIALIZABLE_CAST(Result);
127 virtual ~Result() {};
137 template <
typename algorithmFPType>
138 DAAL_EXPORT services::Status allocate(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *par,
const int method);
145 data_management::NumericTablePtr
get(ResultId id)
const;
152 void set(ResultId
id,
const data_management::NumericTablePtr &ptr);
162 virtual services::Status check(
const algorithms::Input *input,
const algorithms::Parameter *par,
int method)
const DAAL_C11_OVERRIDE;
166 template<
typename Archive,
bool onDeserialize>
167 services::Status serialImpl(Archive *arch)
169 return daal::algorithms::Result::serialImpl<Archive, onDeserialize>(arch);
172 typedef services::SharedPtr<Result> ResultPtr;
175 using interface1::Input;
176 using interface1::Result;
177 using interface1::ResultPtr;
daal::algorithms::cholesky::interface1::Result
Results obtained with the compute() method of the Cholesky algorithm in the batch processing mode...
Definition: cholesky_types.h:121
daal::algorithms::cholesky::defaultDense
Definition: cholesky_types.h:53
daal::algorithms::cholesky::data
Definition: cholesky_types.h:62
daal::algorithms::cholesky::InputId
InputId
Definition: cholesky_types.h:60
daal::algorithms::cholesky::ResultId
ResultId
Definition: cholesky_types.h:70
daal::algorithms::cholesky::Method
Method
Definition: cholesky_types.h:51
daal::algorithms::cholesky::choleskyFactor
Definition: cholesky_types.h:72
daal::algorithms::cholesky::interface1::Input
Input parameters for the Cholesky algorithm
Definition: cholesky_types.h:85