48 #ifndef __CHOLESKY_TYPES_H__ 49 #define __CHOLESKY_TYPES_H__ 51 #include "algorithms/algorithm.h" 52 #include "data_management/data/numeric_table.h" 53 #include "data_management/data/homogen_numeric_table.h" 54 #include "services/daal_defines.h" 97 lastResultId = choleskyFactor
109 class DAAL_EXPORT Input :
public daal::algorithms::Input
113 Input(
const Input& other) : daal::algorithms::Input(other){}
122 data_management::NumericTablePtr
get(InputId id)
const;
129 void set(InputId id,
const data_management::NumericTablePtr &ptr);
138 virtual services::Status check(
const daal::algorithms::Parameter *par,
int method)
const DAAL_C11_OVERRIDE;
145 class DAAL_EXPORT Result :
public daal::algorithms::Result
148 DECLARE_SERIALIZABLE_CAST(Result);
151 virtual ~Result() {};
161 template <
typename algorithmFPType>
162 DAAL_EXPORT services::Status allocate(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *par,
const int method);
169 data_management::NumericTablePtr
get(ResultId id)
const;
176 void set(ResultId id,
const data_management::NumericTablePtr &ptr);
186 virtual services::Status check(
const algorithms::Input *input,
const algorithms::Parameter *par,
int method)
const DAAL_C11_OVERRIDE;
190 template<
typename Archive,
bool onDeserialize>
191 services::Status serialImpl(Archive *arch)
193 return daal::algorithms::Result::serialImpl<Archive, onDeserialize>(arch);
196 typedef services::SharedPtr<Result> ResultPtr;
199 using interface1::Input;
200 using interface1::Result;
201 using interface1::ResultPtr;
daal::services::interface1::Status
Class that holds the results of API calls. In case of API routine failure it contains the list of err...
Definition: error_handling.h:491
daal
Definition: algorithm_base_common.h:57
daal::algorithms::cholesky::data
Definition: cholesky_types.h:86
daal::algorithms::cholesky::Method
Method
Definition: cholesky_types.h:75
daal::algorithms::interface1::Result
Base class to represent final results of the computation. Algorithm-specific final results are repres...
Definition: algorithm_types.h:331
daal::algorithms::cholesky::defaultDense
Definition: cholesky_types.h:77
daal::algorithms::cholesky::choleskyFactor
Definition: cholesky_types.h:96
daal::algorithms::cholesky::interface1::Result
Results obtained with the compute() method of the Cholesky algorithm in the batch processing mode...
Definition: cholesky_types.h:145
daal::algorithms::interface1::Parameter
Base class to represent computation parameters. Algorithm-specific parameters are represented as deri...
Definition: algorithm_types.h:86
daal::services::interface1::SharedPtr
Shared pointer that retains shared ownership of an object through a pointer. Several SharedPtr object...
Definition: daal_shared_ptr.h:187
daal::algorithms::cholesky::InputId
InputId
Definition: cholesky_types.h:84
daal::algorithms::cholesky::ResultId
ResultId
Definition: cholesky_types.h:94