-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #167 from hcho3/xgb_210
Upgrade to XGBoost 2.1.0
- Loading branch information
Showing
22 changed files
with
276 additions
and
194 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 0 additions & 29 deletions
29
.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8.yaml
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,4 @@ os_version: | |
provider: | ||
linux_aarch64: default | ||
linux_ppc64le: default | ||
test: native_and_emulated | ||
test: native |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
mkdir "%SRC_DIR%"\build | ||
pushd "%SRC_DIR%"\build | ||
@echo on | ||
|
||
if NOT "%cuda_compiler_version%"=="None" ( | ||
mkdir %SRC_DIR%\build | ||
pushd %SRC_DIR%\build | ||
|
||
if not "%cuda_compiler_version%" == "None" ( | ||
set "CMAKE_ARGS=-DUSE_CUDA=ON %CMAKE_ARGS%" | ||
) | ||
|
||
cmake -G "Ninja" ^ | ||
%CMAKE_ARGS% ^ | ||
-DCMAKE_BUILD_TYPE:STRING="Release" ^ | ||
-DCMAKE_INSTALL_PREFIX="%LIBRARY_PREFIX%" ^ | ||
-DCMAKE_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^ | ||
-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON ^ | ||
-DR_LIB=OFF ^ | ||
-DR_LIB:BOOL=OFF ^ | ||
"%SRC_DIR%" | ||
if errorlevel 1 exit 1 | ||
|
||
cmake --build . --target install --config Release | ||
cmake --build . --target install --config Release -- -v | ||
if errorlevel 1 exit 1 | ||
|
||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
pushd ${SRC_DIR}/python-package | ||
${PYTHON} -m pip install . -vv --config-settings use_system_libxgboost=True | ||
${PYTHON} -m pip install . -vv --config-settings use_system_libxgboost=True | ||
popd |
Oops, something went wrong.