Skip to content

Commit

Permalink
Remove the workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
hcho3 committed Jul 24, 2024
1 parent 5b4c68c commit f50dd64
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/common/quantile.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,6 @@ struct WQSummary {
<< "value: " << e.value;
return os;
}

XGBOOST_DEVICE inline bool operator==(Entry const& rhs) const {
return (rmin == rhs.rmin) && (rmax == rhs.rmax)
&& (wmin == rhs.wmin) && (value == rhs.value);
}
XGBOOST_DEVICE inline bool operator!=(Entry const& rhs) const {
return !operator==(rhs);
}
};
/*! \brief input data queue before entering the summary */
struct Queue {
Expand Down

0 comments on commit f50dd64

Please sign in to comment.