/** * Copyright 2020-2023, XGBoost Contributors * \file global_config.h * \brief Global configuration for XGBoost * \author Hyunsu Cho */ #ifndef XGBOOST_GLOBAL_CONFIG_H_ #define XGBOOST_GLOBAL_CONFIG_H_ #include // for ThreadLocalStore #include // for XGBoostParameter #include // for int32_t namespace xgboost { struct GlobalConfiguration : public XGBoostParameter { std::int32_t verbosity{1}; bool use_rmm{false}; DMLC_DECLARE_PARAMETER(GlobalConfiguration) { DMLC_DECLARE_FIELD(verbosity) .set_range(0, 3) .set_default(1) // shows only warning .describe("Flag to print out detailed breakdown of runtime."); DMLC_DECLARE_FIELD(use_rmm).set_default(false).describe( "Whether to use RAPIDS Memory Manager to allocate GPU memory in XGBoost"); } }; using GlobalConfigThreadLocalStore = dmlc::ThreadLocalStore; } // namespace xgboost #endif // XGBOOST_GLOBAL_CONFIG_H_