Deprecate gpu_exact, bump required cuda version in docs (#4527)

This commit is contained in:
Rory Mitchell
2019-06-03 09:49:05 +12:00
committed by GitHub
parent c2a3902ba3
commit 399fabed49
3 changed files with 38 additions and 35 deletions

View File

@@ -830,7 +830,11 @@ class GPUMaker : public TreeUpdater {
XGBOOST_REGISTER_TREE_UPDATER(GPUMaker, "grow_gpu")
.describe("Grow tree with GPU.")
.set_body([]() { return new GPUMaker(); });
.set_body([]() {
LOG(WARNING) << "The gpu_exact tree method is deprecated and may be "
"removed in a future version.";
return new GPUMaker();
});
} // namespace tree
} // namespace xgboost