/*! * Copyright 2020 by Contributors * \file global_config.h * \brief Global configuration for XGBoost * \author Hyunsu Cho */ #ifndef XGBOOST_GLOBAL_CONFIG_H_ #define XGBOOST_GLOBAL_CONFIG_H_ #include #include #include namespace xgboost { class Json; struct GlobalConfiguration : public XGBoostParameter { int 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_