Visible to Intel only — GUID: GUID-6FFB783B-10B4-4F49-A893-496D901C376D
Visible to Intel only — GUID: GUID-6FFB783B-10B4-4F49-A893-496D901C376D
Computation
Input
The objective function accepts the input described below. Pass the Input ID as a parameter to the methods that provide input for your algorithm. For more details, see Algorithms.
Input ID |
Input |
argument |
A numeric table of size |
Parameters
The objective function has the following parameters:
Parameter |
Default value |
Description |
resultsToCompute |
gradient |
The 64-bit integer flag that specifies which characteristics of the objective function to compute. Provide one of the following values to request a single characteristic or use bitwise OR to request a combination of the characteristics:
NOTE:
On GPU, resultsToCompute only computes value, gradient, and hessian.
|
Output
The objective function calculates the result described below. Pass the Result ID as a parameter to the methods that access the results of your algorithm. For more details, see Algorithms.
Result ID |
Result |
valueIdx |
A numeric table of size |
nonSmoothTermValueIdx |
A numeric table of size |
gradientIdx |
A numeric table of size |
hessianIdx |
A numeric table of size |
proximalProjectionIdx |
A numeric table of size |
lipschitzConstantIdx |
A numeric table of size |
gradientOverCertainFeatureIdx |
A numeric table of size |
hessianOverCertainFeatureIdx |
A numeric table of size |
proximalProjectionOverCertainFeatureIdx |
A numeric table of size |
- If the function result is not requested through the resultsToCompute parameter, the respective element of the result contains a NULL pointer.
By default, each numeric table specified by the collection elements is an object of the HomogenNumericTable class, but you can define the result as an object of any class derived from NumericTable, except for PackedSymmetricMatrix, PackedTriangularMatrix, and CSRNumericTable.
Hessian matrix is computed for the objective function
. For the objective functions
with
the library will stop computations and report the status on non-availability of the computation of the Hessian.
If Lipschitz constant constantOfLipschitz is not estimated explicitly, pointer to result numeric table is required to be set to nullptr.