Skip to content

Commit

Permalink
[bug] Coverity fixes 2025.0 (#2890)
Browse files Browse the repository at this point in the history
* Update kdtree_knn_classification_train_dense_default_impl.i

* Update kdtree_knn_classification_train_dense_default_impl.i

* Update kdtree_knn_classification_train_dense_default_impl.i

* Update kdtree_knn_classification_train_dense_default_impl.i
  • Loading branch information
icfaust committed Sep 7, 2024
1 parent 8c4ba82 commit c56aef7
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ algorithmFpType KNNClassificationTrainBatchKernel<algorithmFpType, training::def
algorithmFpType * subSamples, size_t subSampleCapacity, Status & status)
{
algorithmFpType samples[__KDTREE_MEDIAN_RANDOM_SAMPLE_COUNT + 1];
const size_t sampleCount = sizeof(samples) / sizeof(samples[0]);
const size_t sampleCount = __KDTREE_MEDIAN_RANDOM_SAMPLE_COUNT + 1;

if (end - start <= sampleCount)
{
Expand Down Expand Up @@ -589,7 +589,11 @@ algorithmFpType KNNClassificationTrainBatchKernel<algorithmFpType, training::def

size_t sumMid = 0;
size_t i = 0;
for (; i < sampleCount; ++i)
// this iterates through the masterHist histogram and finds the median
// in almost all circumstances the break in the if statement will trigger
// unless masterHist does not contain sufficient data to exceed
// (end - start)/2 by the last bin.
for (; i < sampleCount - 1; ++i)
{
if (sumMid + masterHist[i] > (end - start) / 2)
{
Expand Down

0 comments on commit c56aef7

Please sign in to comment.