Skip to content

Commit

Permalink
fixed check in dbg mode (#1718)
Browse files Browse the repository at this point in the history
  • Loading branch information
Artem Maklaev authored Jun 17, 2021
1 parent eaa800f commit 47df50d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ services::Status PredictKernelOneAPI<algorithmFPType, method>::predictByTreesWei
DAAL_ASSERT_UNIVERSAL_BUFFER(featureIndexList, int32_t, maxTreeSize * nTrees);
DAAL_ASSERT_UNIVERSAL_BUFFER(leftOrClassTypeList, int32_t, maxTreeSize * nTrees);
DAAL_ASSERT_UNIVERSAL_BUFFER(featureValueList, algorithmFPType, maxTreeSize * nTrees);
DAAL_ASSERT_UNIVERSAL_BUFFER(classProba, double, maxTreeSize * nTrees * _nClasses);
DAAL_ASSERT_UNIVERSAL_BUFFER(classProba, algorithmFPType, maxTreeSize * nTrees * _nClasses);
DAAL_ASSERT_UNIVERSAL_BUFFER(obsClassHist, algorithmFPType, nRows * _nClasses * _nTreeGroups);

for (size_t procTrees = 0; procTrees < nTrees; procTrees += _nTreeGroups)
Expand Down

0 comments on commit 47df50d

Please sign in to comment.