[CUDA] fix typo in error message (#6207)

This commit is contained in:
James Lamb 2023-11-22 14:15:11 -06:00 коммит произвёл GitHub
Родитель d9a4cf498c
Коммит bc6942226e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -155,7 +155,7 @@ class CUDASingleGPUTreeLearner: public SerialTreeLearner {
#pragma warning(disable : 4702)
explicit CUDASingleGPUTreeLearner(const Config* tree_config, const bool /*boosting_on_cuda*/) : SerialTreeLearner(tree_config) {
Log::Fatal("CUDA Tree Learner was not enabled in this build.\n"
"Please recompile with CMake option -DUSE_CUDAP=1");
"Please recompile with CMake option -DUSE_CUDA=1");
}
};