Test categorical features with column-split gpu quantile (#9595)

This commit is contained in:
Rong Ou
2023-09-22 18:55:09 -07:00
committed by GitHub
parent a90d204942
commit def77870f3
3 changed files with 70 additions and 17 deletions

View File

@@ -35,13 +35,13 @@ struct WQSummary {
/*! \brief an entry in the sketch summary */
struct Entry {
/*! \brief minimum rank */
RType rmin;
RType rmin{};
/*! \brief maximum rank */
RType rmax;
RType rmax{};
/*! \brief maximum weight */
RType wmin;
RType wmin{};
/*! \brief the value of data */
DType value;
DType value{};
// constructor
XGBOOST_DEVICE Entry() {} // NOLINT
// constructor