25 #ifndef __PIVOTED_QR_TYPES_H__
26 #define __PIVOTED_QR_TYPES_H__
28 #include "algorithms/algorithm.h"
29 #include "data_management/data/numeric_table.h"
30 #include "data_management/data/homogen_numeric_table.h"
31 #include "services/daal_defines.h"
74 lastResultId = permutationMatrix
86 struct DAAL_EXPORT Parameter :
public daal::algorithms::Parameter
88 Parameter(
const data_management::NumericTablePtr permutedColumns = data_management::NumericTablePtr());
90 data_management::NumericTablePtr permutedColumns;
102 class DAAL_EXPORT Input :
public daal::algorithms::Input
109 Input(
const Input& other);
119 data_management::NumericTablePtr
get(InputId id)
const;
126 void set(InputId
id,
const data_management::NumericTablePtr &value);
128 virtual services::Status check(
const daal::algorithms::Parameter *par,
int method)
const DAAL_C11_OVERRIDE;
135 class DAAL_EXPORT Result :
public daal::algorithms::Result
138 DECLARE_SERIALIZABLE_CAST(Result);
150 template <
typename algorithmFPType>
151 DAAL_EXPORT services::Status allocate(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *parameter,
const int method);
158 data_management::NumericTablePtr
get(ResultId id)
const;
165 void set(ResultId
id,
const data_management::NumericTablePtr &value);
173 virtual services::Status check(
const daal::algorithms::Input *in,
const daal::algorithms::Parameter *par,
int method)
const DAAL_C11_OVERRIDE;
177 template<
typename Archive,
bool onDeserialize>
178 services::Status serialImpl(Archive *arch)
180 return daal::algorithms::Result::serialImpl<Archive, onDeserialize>(arch);
183 typedef services::SharedPtr<Result> ResultPtr;
187 using interface1::Parameter;
188 using interface1::Input;
189 using interface1::Result;
190 using interface1::ResultPtr;
daal::algorithms::pivoted_qr::matrixR
Definition: pivoted_qr_types.h:72
daal::algorithms::pivoted_qr::interface1::Input
Input objects for the pivoted QR algorithm in the batch processing mode.
Definition: pivoted_qr_types.h:102
daal::algorithms::pivoted_qr::matrixQ
Definition: pivoted_qr_types.h:71
daal::algorithms::pivoted_qr::interface1::Input::~Input
virtual ~Input()
Definition: pivoted_qr_types.h:112
daal::algorithms::pivoted_qr::defaultDense
Definition: pivoted_qr_types.h:52
daal::algorithms::pivoted_qr::ResultId
ResultId
Definition: pivoted_qr_types.h:69
daal::algorithms::pivoted_qr::interface1::Result::~Result
virtual ~Result()
Definition: pivoted_qr_types.h:142
daal::algorithms::pivoted_qr::interface1::Result
Provides methods to access final results obtained with the compute() method of the pivoted QR algorit...
Definition: pivoted_qr_types.h:135
daal::algorithms::pivoted_qr::data
Definition: pivoted_qr_types.h:61
daal::algorithms::pivoted_qr::interface1::Parameter::permutedColumns
data_management::NumericTablePtr permutedColumns
Definition: pivoted_qr_types.h:90
daal::algorithms::pivoted_qr::interface1::Parameter
Parameter for the pivoted QR computation method.
Definition: pivoted_qr_types.h:86
daal::algorithms::pivoted_qr::Method
Method
Definition: pivoted_qr_types.h:50
daal::algorithms::math::abs::value
Definition: abs_types.h:88
daal::algorithms::pivoted_qr::InputId
InputId
Definition: pivoted_qr_types.h:59
daal::algorithms::pivoted_qr::permutationMatrix
Definition: pivoted_qr_types.h:73