C++ API Reference for Intel® Data Analytics Acceleration Library 2018 Update 1

error_indexes.h
1 /* file: error_indexes.h */
2 /*******************************************************************************
3 * Copyright 2014-2017 Intel Corporation
4 * All Rights Reserved.
5 *
6 * If this software was obtained under the Intel Simplified Software License,
7 * the following terms apply:
8 *
9 * The source code, information and material ("Material") contained herein is
10 * owned by Intel Corporation or its suppliers or licensors, and title to such
11 * Material remains with Intel Corporation or its suppliers or licensors. The
12 * Material contains proprietary information of Intel or its suppliers and
13 * licensors. The Material is protected by worldwide copyright laws and treaty
14 * provisions. No part of the Material may be used, copied, reproduced,
15 * modified, published, uploaded, posted, transmitted, distributed or disclosed
16 * in any way without Intel's prior express written permission. No license under
17 * any patent, copyright or other intellectual property rights in the Material
18 * is granted to or conferred upon you, either expressly, by implication,
19 * inducement, estoppel or otherwise. Any license under such intellectual
20 * property rights must be express and approved by Intel in writing.
21 *
22 * Unless otherwise agreed by Intel in writing, you may not remove or alter this
23 * notice or any other notice embedded in Materials by Intel or Intel's
24 * suppliers or licensors in any way.
25 *
26 *
27 * If this software was obtained under the Apache License, Version 2.0 (the
28 * "License"), the following terms apply:
29 *
30 * You may not use this file except in compliance with the License. You may
31 * obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
32 *
33 *
34 * Unless required by applicable law or agreed to in writing, software
35 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
36 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
37 *
38 * See the License for the specific language governing permissions and
39 * limitations under the License.
40 *******************************************************************************/
41 
42 /*
43 //++
44 // Details of errors in Intel(R) DAAL.
45 //--
46 */
47 
48 #ifndef __ERROR_INDEXES__
49 #define __ERROR_INDEXES__
50 
51 namespace daal
52 {
53 namespace services
54 {
65 enum ErrorDetailID
66 {
67  NoErrorMessageDetailFound = 0,
68  Row = 1,
69  Column = 2,
70  Rank = 3,
71  StatisticsName = 4,
72  Method = 5,
73  Iteration = 6,
74  Component = 7,
75  Minor = 8,
76  ArgumentName = 9,
77  ElementInCollection = 10,
78  Dimension = 11,
79  ParameterName = 12,
80  OptionalInput = 13,
81  OptionalResult = 14,
82  Layer = 15,
83  SerializationTag = 16,
84  ExpectedValue = 17,
85  ActualValue = 18
86 };
87 
92 enum ErrorID
93 {
94  // Input errors: -1..-1999
95  ErrorMethodNotSupported = -1,
96  ErrorIncorrectNumberOfFeatures = -3,
97  ErrorIncorrectNumberOfObservations = -4,
98  ErrorIncorrectSizeOfArray = -7,
99  ErrorNullParameterNotSupported = -8,
100  ErrorIncorrectNumberOfArguments = -9,
101  ErrorIncorrectInputNumericTable = -10,
102  ErrorEmptyInputNumericTable = -11,
103  ErrorIncorrectDataRange = -12,
104  ErrorPrecomputedStatisticsIndexOutOfRange = -13,
105  ErrorIncorrectNumberOfInputNumericTables = -14,
106  ErrorIncorrectNumberOfOutputNumericTables = -15,
107  ErrorNullInputNumericTable = -16,
108  ErrorNullOutputNumericTable = -17,
109  ErrorNullModel = -18,
110  ErrorInconsistentNumberOfRows = -19,
111  ErrorIncorrectSizeOfInputNumericTable = -20,
112  ErrorIncorrectSizeOfOutputNumericTable = -21,
113  ErrorIncorrectNumberOfRowsInInputNumericTable = -24,
114  ErrorIncorrectNumberOfColumnsInInputNumericTable = -25,
115  ErrorIncorrectNumberOfRowsInOutputNumericTable = -26,
116  ErrorIncorrectNumberOfColumnsInOutputNumericTable = -27,
117  ErrorIncorrectTypeOfInputNumericTable = -28,
118  ErrorIncorrectTypeOfOutputNumericTable = -29,
119  ErrorIncorrectNumberOfElementsInInputCollection = -30,
120  ErrorIncorrectNumberOfElementsInResultCollection = -31,
121  ErrorNullInput = -32,
122  ErrorNullResult = -33,
123  ErrorIncorrectParameter = -34,
124  ErrorModelNotFullInitialized = -35,
125  ErrorInconsistentNumberOfColumns = -36,
126  ErrorIncorrectIndex = -37,
127  ErrorDataArchiveInternal = -38,
128  ErrorNullPartialModel = -39,
129  ErrorNullInputDataCollection = -40,
130  ErrorNullOutputDataCollection = -41,
131  ErrorNullPartialResult = -42,
132  ErrorIncorrectNumberOfInputNumericTensors = -43,
133  ErrorIncorrectNumberOfOutputNumericTensors = -44,
134  ErrorNullTensor = -45,
135  ErrorIncorrectNumberOfDimensionsInTensor = -46,
136  ErrorIncorrectSizeOfDimensionInTensor = -47,
137  ErrorNullLayerData = -48,
138  ErrorIncorrectSizeOfLayerData = -49,
139  ErrorNullNumericTable = -50,
140  ErrorIncorrectNumberOfColumns = -51,
141  ErrorIncorrectNumberOfRows = -52,
142  ErrorIncorrectTypeOfNumericTable = -53,
143  ErrorUnsupportedCSRIndexing = -54,
144  ErrorSignificanceLevel = -55,
145  ErrorAccuracyThreshold = -56,
146  ErrorIncorrectNumberOfBetas = -57,
147  ErrorIncorrectNumberOfBetasInReducedModel = -58,
148  ErrorNumericTableIsNotSquare = -59,
149  ErrorNullAuxiliaryAlgorithm = -60,
150  ErrorNullInitializationProcedure = -61,
151  ErrorNullAuxiliaryDataCollection = -62,
152  ErrorEmptyAuxiliaryDataCollection = -63,
153  ErrorIncorrectElementInCollection = -64,
154  ErrorNullPartialResultDataCollection = -65,
155  ErrorIncorrectElementInPartialResultCollection = -66,
156  ErrorIncorrectElementInNumericTableCollection = -67,
157  ErrorNullOptionalResult = -68,
158  ErrorIncorrectOptionalResult = -69,
159  ErrorIncorrectOptionalInput = -70,
160  ErrorIncorrectNumberOfPartialClusters = -71,
161  ErrorIncorrectTotalNumberOfPartialClusters = -72,
162  ErrorIncorrectDataCollectionSize = -73,
163  ErrorIncorrectValueInTheNumericTable = -74,
164  ErrorIncorrectItemInDataCollection = -75,
165  ErrorNullPtr = -76,
166  ErrorUndefinedFeature = -77,
168  // Environment errors: -2000..-2999
169  ErrorCpuNotSupported = -2000,
170  ErrorMemoryAllocationFailed = -2001,
171  ErrorEmptyDataBlock = -2004,
173  // Workflow errors: -3000..-3999
174  ErrorIncorrectCombinationOfComputationModeAndStep = -3002,
175  ErrorDictionaryAlreadyAvailable = -3003,
176  ErrorDictionaryNotAvailable = -3004,
177  ErrorNumericTableNotAvailable = -3005,
178  ErrorNumericTableAlreadyAllocated = -3006,
179  ErrorNumericTableNotAllocated = -3007,
180  ErrorPrecomputedSumNotAvailable = -3008,
181  ErrorPrecomputedMinNotAvailable = -3009,
182  ErrorPrecomputedMaxNotAvailable = -3010,
183  ErrorServiceMicroTableInternal = -3011,
184  ErrorEmptyCSRNumericTable = -3012,
185  ErrorEmptyHomogenNumericTable = -3013,
186  ErrorSourceDataNotAvailable = -3014,
187  ErrorEmptyDataSource = -3015,
188  ErrorIncorrectClassLabels = -3016,
189  ErrorIncorrectSizeOfModel = -3017,
190  ErrorIncorrectTypeOfModel = -3018,
191  ErrorIncorrectErrorcodeFromGenerator = -3019,
193  // Common computation errors: -4000...
194  ErrorInputSigmaMatrixHasNonPositiveMinor = -4001,
195  ErrorInputSigmaMatrixHasIllegalValue = -4002,
196  ErrorIncorrectInternalFunctionParameter = -4003,
198  /* Apriori algorithm errors -5000..-5199 */
199  ErrorAprioriIncorrectItemsetTableSize = -5000,
201  ErrorAprioriIncorrectSupportTableSize = -5001,
203  ErrorAprioriIncorrectLeftRuleTableSize = -5002,
205  ErrorAprioriIncorrectRightRuleTableSize = -5003,
207  ErrorAprioriIncorrectConfidenceTableSize = -5004,
209  ErrorAprioriIncorrectInputData = -5005,
211  // BrownBoost errors: -5200..-5399
212 
213  // Cholesky errors: -5400..-5599
214  ErrorCholeskyInternal = -5400,
215  ErrorInputMatrixHasNonPositiveMinor = -5401,
217  // Covariance errors: -5600..-5799
218  ErrorCovarianceInternal = -5600,
220  // Distance errors: -5800..-5999
221 
222  // EM errors: -6000..-6099
223  ErrorEMMatrixInverse = -6001,
224  ErrorEMIncorrectToleranceToConverge = -6002,
225  ErrorEMIllConditionedCovarianceMatrix = -6003,
226  ErrorEMIncorrectMaxNumberOfIterations = -6004,
227  ErrorEMNegativeDefinedCovarianceMartix = -6005,
228  ErrorEMEmptyComponent = -6006,
229  ErrorEMCovariance = -6007,
230  ErrorEMIncorrectNumberOfComponents = -6008,
232  // EM initialization errors: -6100..-6199
233  ErrorEMInitNoTrialConverges = -6100,
234  ErrorEMInitIncorrectToleranceToConverge = -6101,
235  ErrorEMInitIncorrectDepthNumberIterations = -6102,
236  ErrorEMInitIncorrectNumberOfTrials = -6103,
237  ErrorEMInitIncorrectNumberOfComponents = -6104,
238  ErrorEMInitInconsistentNumberOfComponents = -6105,
240  ErrorVarianceComputation = -6106,
242  // KernelFunction errors: -6200..-6399
243 
244  // KMeans errors: -6400..-6599
245 
246  // Linear Rergession errors: -6600..-6799
247  ErrorLinearRegressionInternal = -6600,
248  ErrorNormEqSystemSolutionFailed = -6601,
249  ErrorLinRegXtXInvFailed = -6602,
251  // LogitBoots errors: -6800..-6999
252 
253  // LowOrderMoments errors: -7000..-7199
254  ErrorLowOrderMomentsInternal = -7000,
256  // MultiClassClassifier errors: -7200..-7399
257  ErrorIncorrectNumberOfClasses = -7200,
258  ErrorMultiClassNullTwoClassTraining = -7201,
259  ErrorMultiClassFailedToTrainTwoClassClassifier = -7202,
260  ErrorMultiClassFailedToComputeTwoClassPrediction = -7203,
262  // NaiveBayes errors: -7400..-7599
263 
264  // OutlierDetection errors: -7600..-7799
265  ErrorOutlierDetectionInternal = -7600,
267  /* PCA errors: -7800..-7999 */
268  ErrorPCAFailedToComputeCorrelationEigenvalues = -7800,
269  ErrorPCACorrelationInputDataTypeSupportsOfflineModeOnly = -7801,
271  ErrorIncorrectCrossProductTableSize = -7802,
273  ErrorCrossProductTableIsNotSquare = -7803,
275  ErrorInputCorrelationNotSupportedInOnlineAndDistributed = -7804,
278  // QR errors: -8000..-8199
279  ErrorQRInternal = -8000,
280  ErrorQrIthParamIllegalValue = -8001,
281  ErrorQrXBDSQRDidNotConverge = -8002,
283  // Stump errors: -8200..-8299
284  ErrorStumpIncorrectSplitFeature = -8200,
285  ErrorStumpInvalidInputCategoricalData = -8201,
288  // SVD errors: -8300..-8399
289  ErrorSvdIthParamIllegalValue = -8300,
290  ErrorSvdXBDSQRDidNotConverge = -8301,
292  // LCN errors: -8400..-8599
293  ErrorLCNinnerConvolution = -8400,
295  // SVM errors: -8600..-8799
296  ErrorSVMPredictKernerFunctionCall = -8601,
298  // WeakLearner errors: -8800..-8999
299 
300  // Compression errors: -9000..-9199
301  ErrorCompressionNullInputStream = -9000,
302  ErrorCompressionNullOutputStream = -9001,
304  ErrorCompressionEmptyInputStream = -9002,
305  ErrorCompressionEmptyOutputStream = -9003,
307  ErrorZlibInternal = -9004,
308  ErrorZlibDataFormat = -9005,
310  ErrorZlibParameters = -9006,
311  ErrorZlibMemoryAllocationFailed = -9007,
312  ErrorZlibNeedDictionary = -9008,
315  ErrorBzip2Internal = -9009,
316  ErrorBzip2DataFormat = -9010,
318  ErrorBzip2Parameters = -9011,
319  ErrorBzip2MemoryAllocationFailed = -9012,
321  ErrorLzoInternal = -9013,
322  ErrorLzoOutputStreamSizeIsNotEnough = -9014,
323  ErrorLzoDataFormat = -9015,
324  ErrorLzoDataFormatLessThenHeader = -9016,
326  ErrorLzoDataFormatNotFullBlock = -9017,
329  ErrorRleInternal = -9018,
330  ErrorRleOutputStreamSizeIsNotEnough = -9019,
331  ErrorRleDataFormat = -9020,
332  ErrorRleDataFormatLessThenHeader = -9021,
334  ErrorRleDataFormatNotFullBlock = -9022,
336  // Min-max normalization errors: -9400..-9499
337  ErrorLowerBoundGreaterThanOrEqualToUpperBound = -9400,
339  // Quantile error: -10000..-11000
340  ErrorQuantileOrderValueIsInvalid = -10001,
341  ErrorQuantilesInternal = -10002,
343  // ALS errors: -11000..-12000
344  ErrorALSInternal = -11000,
345  ErrorALSInconsistentSparseDataBlocks = -11001,
347  // Sorting error: -12000..-13000
348  ErrorSorting = -12001,
350  // SGD error: -13000..-14000
351  ErrorNegativeLearningRate = -13000,
353  // Normalization errors: -14000..-15000
354  ErrorMeanAndStandardDeviationComputing = -14000,
355  ErrorNullVariance = -14001,
356  ErrorMinAndMaxComputing = -14002,
358  //Sum of functions error: -15000..-16000
359  ErrorZeroNumberOfTerms = -15000,
361  //Covolution layer error: -16000..-17000
362  ErrorConvolutionInternal = -16000,
363  ErrorIncorrectKernelSise1 = -16001,
364  ErrorIncorrectKernelSise2 = -16002,
366  // Ridge Regression errors: -17000..-17999
367  ErrorRidgeRegressionInternal = -17000,
368  ErrorRidgeRegressionNormEqSystemSolutionFailed = -17001,
369  ErrorRidgeRegressionInvertFailed = -17002,
371  // Neural Networks errors: -18000...18999
372  ErrorInconsistenceModelAndBatchSizeInParameter = -18000,
373  ErrorNeuralNetworkLayerCall = -18001,
374  ErrorSplitLayerBackward = -18002,
376  // Pivoted QR errors: -19000..-19199
377  ErrorPivotedQRInternal = -19000,
379  // Decision forest error: -20000..-20099
380  ErrorDFBootstrapVarImportanceIncompatible = -20000,
381  ErrorDFBootstrapOOBIncompatible = -20001,
383  // GBT error: -30000..-30099
384  ErrorGbtIncorrectNumberOfTrees = -30000,
385  ErrorGbtPredictIncorrectNumberOfIterations = -30001,
387  // Data management errors: -80001..
388  ErrorUserAllocatedMemory = -80001,
390  //Math errors: -90000..-100000
391  ErrorDataSourseNotAvailable = -90041,
392  ErrorHandlesSQL = -90042,
393  ErrorODBC = -90043,
394  ErrorSQLstmtHandle = -90044,
395  ErrorOnFileOpen = -90045,
396  ErrorOnFileRead = -90046,
398  ErrorKDBNoConnection = -90051,
399  ErrorKDBWrongCredentials = -90052,
400  ErrorKDBNetworkError = -90053,
401  ErrorKDBServerError = -90054,
402  ErrorKDBTypeUnsupported = -90055,
403  ErrorKDBWrongTypeOfOutput = -90056,
405  ErrorIncorrectEngineParameter = -90100,
407  // Quality metrics errors -90201..-90301
408  ErrorEmptyInputAlgorithmsCollection = -90201,
410  // Other errors: -100000..
411  ErrorObjectDoesNotSupportSerialization = -100000,
413  ErrorCouldntAttachCurrentThreadToJavaVM = -110001,
414  ErrorCouldntCreateGlobalReferenceToJavaObject = -110002,
415  ErrorCouldntFindJavaMethod = -110003,
416  ErrorCouldntFindClassForJavaObject = -110004,
417  ErrorCouldntDetachCurrentThreadFromJavaVM = -110005,
419  UnknownError = -1000000,
420  NoErrorMessageFound = -1000001
421 };
423 }
424 }
425 
426 #endif
daal::services::Component
Definition: error_indexes.h:74
daal::services::ErrorLzoDataFormat
Definition: error_indexes.h:323
daal::services::ErrorEMNegativeDefinedCovarianceMartix
Definition: error_indexes.h:227
daal::services::ErrorLCNinnerConvolution
Definition: error_indexes.h:293
daal::services::ErrorCpuNotSupported
Definition: error_indexes.h:169
daal::services::ErrorNullLayerData
Definition: error_indexes.h:137
daal::services::ErrorALSInternal
Definition: error_indexes.h:344
daal::services::NoErrorMessageFound
Definition: error_indexes.h:420
daal::services::ErrorAprioriIncorrectSupportTableSize
Definition: error_indexes.h:201
daal::services::ErrorIncorrectNumberOfDimensionsInTensor
Definition: error_indexes.h:135
daal::services::ErrorDictionaryAlreadyAvailable
Definition: error_indexes.h:175
daal::services::ErrorRidgeRegressionInternal
Definition: error_indexes.h:367
daal::services::ErrorNullInputNumericTable
Definition: error_indexes.h:107
daal
Definition: algorithm_base_common.h:57
daal::services::ErrorNullOutputDataCollection
Definition: error_indexes.h:130
daal::services::ErrorCompressionEmptyInputStream
Definition: error_indexes.h:304
daal::services::ErrorIncorrectCrossProductTableSize
Definition: error_indexes.h:271
daal::services::ErrorPCACorrelationInputDataTypeSupportsOfflineModeOnly
Definition: error_indexes.h:269
daal::services::ErrorIncorrectInputNumericTable
Definition: error_indexes.h:101
daal::services::ErrorQrXBDSQRDidNotConverge
Definition: error_indexes.h:281
daal::services::ErrorIncorrectTypeOfOutputNumericTable
Definition: error_indexes.h:118
daal::services::ErrorIncorrectNumberOfColumnsInInputNumericTable
Definition: error_indexes.h:114
daal::services::ErrorNullAuxiliaryDataCollection
Definition: error_indexes.h:151
daal::services::ErrorEMInitIncorrectToleranceToConverge
Definition: error_indexes.h:234
daal::services::ErrorNumericTableNotAllocated
Definition: error_indexes.h:179
daal::services::ErrorRidgeRegressionNormEqSystemSolutionFailed
Definition: error_indexes.h:368
daal::services::ErrorInconsistenceModelAndBatchSizeInParameter
Definition: error_indexes.h:372
daal::services::ErrorLinearRegressionInternal
Definition: error_indexes.h:247
daal::services::ErrorIncorrectParameter
Definition: error_indexes.h:123
daal::services::Method
Definition: error_indexes.h:72
daal::services::ErrorInputCorrelationNotSupportedInOnlineAndDistributed
Definition: error_indexes.h:275
daal::services::ErrorIncorrectNumberOfElementsInResultCollection
Definition: error_indexes.h:120
daal::services::ErrorRleDataFormat
Definition: error_indexes.h:331
daal::services::ErrorKDBWrongTypeOfOutput
Definition: error_indexes.h:403
daal::services::ErrorIncorrectNumberOfRowsInOutputNumericTable
Definition: error_indexes.h:115
daal::services::ErrorNullTensor
Definition: error_indexes.h:134
daal::services::ErrorObjectDoesNotSupportSerialization
Definition: error_indexes.h:411
daal::services::ErrorNullPartialResult
Definition: error_indexes.h:131
daal::services::ErrorIncorrectNumberOfColumns
Definition: error_indexes.h:140
daal::services::ErrorNullPartialModel
Definition: error_indexes.h:128
daal::services::ErrorIncorrectClassLabels
Definition: error_indexes.h:188
daal::services::ErrorNumericTableIsNotSquare
Definition: error_indexes.h:148
daal::services::ErrorEMMatrixInverse
Definition: error_indexes.h:223
daal::services::ErrorLzoOutputStreamSizeIsNotEnough
Definition: error_indexes.h:322
daal::services::ErrorLowOrderMomentsInternal
Definition: error_indexes.h:254
daal::services::ErrorMemoryAllocationFailed
Definition: error_indexes.h:170
daal::services::ErrorIncorrectCombinationOfComputationModeAndStep
Definition: error_indexes.h:174
daal::services::ErrorInputMatrixHasNonPositiveMinor
Definition: error_indexes.h:215
daal::services::ErrorOnFileOpen
Definition: error_indexes.h:395
daal::services::ErrorZlibDataFormat
Definition: error_indexes.h:308
daal::services::ErrorQRInternal
Definition: error_indexes.h:279
daal::services::ErrorNullInput
Definition: error_indexes.h:121
daal::services::ErrorALSInconsistentSparseDataBlocks
Definition: error_indexes.h:345
daal::services::ErrorIncorrectIndex
Definition: error_indexes.h:126
daal::services::ErrorIncorrectNumberOfBetasInReducedModel
Definition: error_indexes.h:147
daal::services::ErrorLzoDataFormatLessThenHeader
Definition: error_indexes.h:324
daal::services::ErrorCrossProductTableIsNotSquare
Definition: error_indexes.h:273
daal::services::ErrorIncorrectTypeOfModel
Definition: error_indexes.h:190
daal::services::ErrorIncorrectElementInCollection
Definition: error_indexes.h:153
daal::services::ErrorHandlesSQL
Definition: error_indexes.h:392
daal::services::ErrorIncorrectNumberOfFeatures
Definition: error_indexes.h:96
daal::services::SerializationTag
Definition: error_indexes.h:83
daal::services::ErrorNullInputDataCollection
Definition: error_indexes.h:129
daal::services::ErrorBzip2MemoryAllocationFailed
Definition: error_indexes.h:319
daal::services::ErrorNullPtr
Definition: error_indexes.h:165
daal::services::ErrorPrecomputedSumNotAvailable
Definition: error_indexes.h:180
daal::services::ErrorIncorrectTotalNumberOfPartialClusters
Definition: error_indexes.h:161
daal::services::ErrorIncorrectNumberOfPartialClusters
Definition: error_indexes.h:160
daal::services::ErrorKDBServerError
Definition: error_indexes.h:401
daal::services::ErrorIncorrectNumberOfColumnsInOutputNumericTable
Definition: error_indexes.h:116
daal::services::ErrorIncorrectTypeOfNumericTable
Definition: error_indexes.h:142
daal::services::ErrorLzoInternal
Definition: error_indexes.h:321
daal::services::ErrorEMInitIncorrectDepthNumberIterations
Definition: error_indexes.h:235
daal::services::ErrorIncorrectValueInTheNumericTable
Definition: error_indexes.h:163
daal::services::ErrorQuantilesInternal
Definition: error_indexes.h:341
daal::services::ErrorUserAllocatedMemory
Definition: error_indexes.h:388
daal::services::ErrorIncorrectElementInNumericTableCollection
Definition: error_indexes.h:156
daal::services::ActualValue
Definition: error_indexes.h:85
daal::services::ErrorKDBWrongCredentials
Definition: error_indexes.h:399
daal::services::ErrorEMIncorrectToleranceToConverge
Definition: error_indexes.h:224
daal::services::ErrorUnsupportedCSRIndexing
Definition: error_indexes.h:143
daal::services::ErrorIncorrectSizeOfInputNumericTable
Definition: error_indexes.h:111
daal::services::ErrorEMIllConditionedCovarianceMatrix
Definition: error_indexes.h:225
daal::services::ErrorEmptyDataSource
Definition: error_indexes.h:187
daal::services::StatisticsName
Definition: error_indexes.h:71
daal::services::ErrorEmptyInputNumericTable
Definition: error_indexes.h:102
daal::services::ErrorZeroNumberOfTerms
Definition: error_indexes.h:359
daal::services::ErrorPrecomputedMinNotAvailable
Definition: error_indexes.h:181
daal::services::ErrorLowerBoundGreaterThanOrEqualToUpperBound
Definition: error_indexes.h:337
daal::services::ErrorID
ErrorID
Definition: error_indexes.h:92
daal::services::ErrorIncorrectInternalFunctionParameter
Definition: error_indexes.h:196
daal::services::ErrorCholeskyInternal
Definition: error_indexes.h:214
daal::services::ErrorKDBNoConnection
Definition: error_indexes.h:398
daal::services::Rank
Definition: error_indexes.h:70
daal::services::Minor
Definition: error_indexes.h:75
daal::services::ErrorNullParameterNotSupported
Definition: error_indexes.h:99
daal::services::NoErrorMessageDetailFound
Definition: error_indexes.h:67
daal::services::ErrorNullOutputNumericTable
Definition: error_indexes.h:108
daal::services::Iteration
Definition: error_indexes.h:73
daal::services::ErrorEMInitInconsistentNumberOfComponents
Definition: error_indexes.h:238
daal::services::ErrorIncorrectNumberOfBetas
Definition: error_indexes.h:146
daal::services::ErrorIncorrectNumberOfRowsInInputNumericTable
Definition: error_indexes.h:113
daal::services::ErrorEMIncorrectNumberOfComponents
Definition: error_indexes.h:230
daal::services::ErrorAprioriIncorrectLeftRuleTableSize
Definition: error_indexes.h:203
daal::services::ErrorEMInitIncorrectNumberOfComponents
Definition: error_indexes.h:237
daal::services::ErrorInputSigmaMatrixHasIllegalValue
Definition: error_indexes.h:195
daal::services::ErrorIncorrectDataCollectionSize
Definition: error_indexes.h:162
daal::services::ErrorNullAuxiliaryAlgorithm
Definition: error_indexes.h:149
daal::services::ErrorSignificanceLevel
Definition: error_indexes.h:144
daal::services::ErrorEmptyAuxiliaryDataCollection
Definition: error_indexes.h:152
daal::services::ErrorEMInitIncorrectNumberOfTrials
Definition: error_indexes.h:236
daal::services::ErrorNullVariance
Definition: error_indexes.h:355
daal::services::ErrorIncorrectSizeOfArray
Definition: error_indexes.h:98
daal::services::ErrorNormEqSystemSolutionFailed
Definition: error_indexes.h:248
daal::services::ErrorMinAndMaxComputing
Definition: error_indexes.h:356
daal::services::ErrorKDBNetworkError
Definition: error_indexes.h:400
daal::services::ErrorIncorrectNumberOfOutputNumericTables
Definition: error_indexes.h:106
daal::services::ErrorSVMPredictKernerFunctionCall
Definition: error_indexes.h:296
daal::services::ErrorNumericTableAlreadyAllocated
Definition: error_indexes.h:178
daal::services::ErrorNullPartialResultDataCollection
Definition: error_indexes.h:154
daal::services::ErrorIncorrectNumberOfArguments
Definition: error_indexes.h:100
daal::services::ErrorKDBTypeUnsupported
Definition: error_indexes.h:402
daal::services::ErrorIncorrectSizeOfLayerData
Definition: error_indexes.h:138
daal::services::ErrorRleOutputStreamSizeIsNotEnough
Definition: error_indexes.h:330
daal::services::ErrorOnFileRead
Definition: error_indexes.h:396
daal::services::ErrorQuantileOrderValueIsInvalid
Definition: error_indexes.h:340
daal::services::OptionalInput
Definition: error_indexes.h:80
daal::services::ErrorIncorrectNumberOfInputNumericTables
Definition: error_indexes.h:105
daal::services::ErrorLzoDataFormatNotFullBlock
Definition: error_indexes.h:326
daal::services::ErrorDetailID
ErrorDetailID
Definition: error_indexes.h:65
daal::services::ErrorSQLstmtHandle
Definition: error_indexes.h:394
daal::services::ErrorIncorrectErrorcodeFromGenerator
Definition: error_indexes.h:191
daal::services::ErrorMultiClassFailedToTrainTwoClassClassifier
Definition: error_indexes.h:259
daal::services::ErrorIncorrectTypeOfInputNumericTable
Definition: error_indexes.h:117
daal::services::ErrorEmptyDataBlock
Definition: error_indexes.h:171
daal::services::ErrorNumericTableNotAvailable
Definition: error_indexes.h:177
daal::services::ErrorLinRegXtXInvFailed
Definition: error_indexes.h:249
daal::services::ErrorIncorrectItemInDataCollection
Definition: error_indexes.h:164
daal::services::ParameterName
Definition: error_indexes.h:79
daal::services::ErrorIncorrectKernelSise2
Definition: error_indexes.h:364
daal::services::ErrorPCAFailedToComputeCorrelationEigenvalues
Definition: error_indexes.h:268
daal::services::ErrorSvdIthParamIllegalValue
Definition: error_indexes.h:289
daal::services::ErrorGbtPredictIncorrectNumberOfIterations
Definition: error_indexes.h:385
daal::services::ErrorIncorrectDataRange
Definition: error_indexes.h:103
daal::services::ErrorIncorrectOptionalInput
Definition: error_indexes.h:159
daal::services::ErrorGbtIncorrectNumberOfTrees
Definition: error_indexes.h:384
daal::services::ErrorRleInternal
Definition: error_indexes.h:329
daal::services::ErrorMeanAndStandardDeviationComputing
Definition: error_indexes.h:354
daal::services::ErrorPrecomputedStatisticsIndexOutOfRange
Definition: error_indexes.h:104
daal::services::ErrorSplitLayerBackward
Definition: error_indexes.h:374
daal::services::ErrorIncorrectNumberOfOutputNumericTensors
Definition: error_indexes.h:133
daal::services::ErrorInconsistentNumberOfColumns
Definition: error_indexes.h:125
daal::services::OptionalResult
Definition: error_indexes.h:81
daal::services::ErrorDFBootstrapVarImportanceIncompatible
Definition: error_indexes.h:380
daal::services::ExpectedValue
Definition: error_indexes.h:84
daal::services::ErrorNullOptionalResult
Definition: error_indexes.h:157
daal::services::ErrorBzip2DataFormat
Definition: error_indexes.h:316
daal::services::ErrorNullModel
Definition: error_indexes.h:109
daal::services::ErrorNeuralNetworkLayerCall
Definition: error_indexes.h:373
daal::services::ErrorModelNotFullInitialized
Definition: error_indexes.h:124
daal::services::Column
Definition: error_indexes.h:69
daal::services::ErrorDataArchiveInternal
Definition: error_indexes.h:127
daal::services::ErrorCompressionEmptyOutputStream
Definition: error_indexes.h:305
daal::services::ErrorVarianceComputation
Definition: error_indexes.h:240
daal::services::ErrorIncorrectNumberOfRows
Definition: error_indexes.h:141
daal::services::ErrorCouldntAttachCurrentThreadToJavaVM
Definition: error_indexes.h:413
daal::services::ErrorDataSourseNotAvailable
Definition: error_indexes.h:391
daal::services::ErrorDictionaryNotAvailable
Definition: error_indexes.h:176
daal::services::ErrorIncorrectEngineParameter
Definition: error_indexes.h:405
daal::services::ErrorIncorrectNumberOfElementsInInputCollection
Definition: error_indexes.h:119
daal::services::ErrorIncorrectElementInPartialResultCollection
Definition: error_indexes.h:155
daal::services::ErrorRleDataFormatLessThenHeader
Definition: error_indexes.h:332
daal::services::ErrorRidgeRegressionInvertFailed
Definition: error_indexes.h:369
daal::services::ErrorCouldntCreateGlobalReferenceToJavaObject
Definition: error_indexes.h:414
daal::services::ErrorIncorrectNumberOfClasses
Definition: error_indexes.h:257
daal::services::ErrorStumpInvalidInputCategoricalData
Definition: error_indexes.h:285
daal::services::ErrorStumpIncorrectSplitFeature
Definition: error_indexes.h:284
daal::services::ErrorIncorrectNumberOfObservations
Definition: error_indexes.h:97
daal::services::ErrorNegativeLearningRate
Definition: error_indexes.h:351
daal::services::ErrorEmptyCSRNumericTable
Definition: error_indexes.h:184
daal::services::ErrorEMCovariance
Definition: error_indexes.h:229
daal::services::ErrorODBC
Definition: error_indexes.h:393
daal::services::ErrorIncorrectNumberOfInputNumericTensors
Definition: error_indexes.h:132
daal::services::ErrorMultiClassNullTwoClassTraining
Definition: error_indexes.h:258
daal::services::ErrorCovarianceInternal
Definition: error_indexes.h:218
daal::services::ErrorCouldntFindJavaMethod
Definition: error_indexes.h:415
daal::services::ErrorQrIthParamIllegalValue
Definition: error_indexes.h:280
daal::services::ErrorUndefinedFeature
Definition: error_indexes.h:166
daal::services::ErrorSvdXBDSQRDidNotConverge
Definition: error_indexes.h:290
daal::services::ErrorNullNumericTable
Definition: error_indexes.h:139
daal::services::ErrorZlibNeedDictionary
Definition: error_indexes.h:312
daal::services::ErrorSorting
Definition: error_indexes.h:348
daal::services::ErrorAprioriIncorrectInputData
Definition: error_indexes.h:209
daal::services::ErrorSourceDataNotAvailable
Definition: error_indexes.h:186
daal::services::ErrorAccuracyThreshold
Definition: error_indexes.h:145
daal::services::ErrorCouldntDetachCurrentThreadFromJavaVM
Definition: error_indexes.h:417
daal::services::ErrorAprioriIncorrectRightRuleTableSize
Definition: error_indexes.h:205
daal::services::ErrorCompressionNullInputStream
Definition: error_indexes.h:301
daal::services::ErrorConvolutionInternal
Definition: error_indexes.h:362
daal::services::ErrorBzip2Internal
Definition: error_indexes.h:315
daal::services::Layer
Definition: error_indexes.h:82
daal::services::ErrorInconsistentNumberOfRows
Definition: error_indexes.h:110
daal::services::ErrorInputSigmaMatrixHasNonPositiveMinor
Definition: error_indexes.h:194
daal::services::ErrorEMInitNoTrialConverges
Definition: error_indexes.h:233
daal::services::ErrorAprioriIncorrectConfidenceTableSize
Definition: error_indexes.h:207
daal::services::UnknownError
Definition: error_indexes.h:419
daal::services::ErrorRleDataFormatNotFullBlock
Definition: error_indexes.h:334
daal::services::ErrorIncorrectSizeOfOutputNumericTable
Definition: error_indexes.h:112
daal::services::Row
Definition: error_indexes.h:68
daal::services::ErrorEmptyInputAlgorithmsCollection
Definition: error_indexes.h:408
daal::services::ArgumentName
Definition: error_indexes.h:76
daal::services::ErrorPrecomputedMaxNotAvailable
Definition: error_indexes.h:182
daal::services::ErrorCompressionNullOutputStream
Definition: error_indexes.h:302
daal::services::ErrorZlibMemoryAllocationFailed
Definition: error_indexes.h:311
daal::services::ErrorCouldntFindClassForJavaObject
Definition: error_indexes.h:416
daal::services::ErrorServiceMicroTableInternal
Definition: error_indexes.h:183
daal::services::ErrorZlibInternal
Definition: error_indexes.h:307
daal::services::ErrorNullResult
Definition: error_indexes.h:122
daal::services::ErrorZlibParameters
Definition: error_indexes.h:310
daal::services::ErrorIncorrectKernelSise1
Definition: error_indexes.h:363
daal::services::ErrorEMEmptyComponent
Definition: error_indexes.h:228
daal::services::ElementInCollection
Definition: error_indexes.h:77
daal::services::ErrorIncorrectSizeOfModel
Definition: error_indexes.h:189
daal::services::ErrorEmptyHomogenNumericTable
Definition: error_indexes.h:185
daal::services::ErrorEMIncorrectMaxNumberOfIterations
Definition: error_indexes.h:226
daal::services::Dimension
Definition: error_indexes.h:78
daal::services::ErrorPivotedQRInternal
Definition: error_indexes.h:377
daal::services::ErrorAprioriIncorrectItemsetTableSize
Definition: error_indexes.h:199
daal::services::ErrorBzip2Parameters
Definition: error_indexes.h:318
daal::services::ErrorIncorrectOptionalResult
Definition: error_indexes.h:158
daal::services::ErrorMultiClassFailedToComputeTwoClassPrediction
Definition: error_indexes.h:260
daal::services::ErrorDFBootstrapOOBIncompatible
Definition: error_indexes.h:381
daal::services::ErrorMethodNotSupported
Definition: error_indexes.h:95
daal::services::ErrorOutlierDetectionInternal
Definition: error_indexes.h:265
daal::services::ErrorNullInitializationProcedure
Definition: error_indexes.h:150
daal::services::ErrorIncorrectSizeOfDimensionInTensor
Definition: error_indexes.h:136

For more complete information about compiler optimizations, see our Optimization Notice.