Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use 4gpu machine for kmeans #816

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/Jenkinsfile-ppc64le-cuda10
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def linuxwheel = "ppc64le-centos7-cuda10.whl"
def testtype = "dotest-single-gpu"
def testtype_multi_gpu = "dotest-multi-gpu"
def labelbuild = "ibm-power-gpu"
def labeltest_multi_gpu = "ibm-power-gpu && !mr-0xp2"
def labeltest_multi_gpu = "mr-0xp2"
def labeltest = "ibm-power-gpu && !mr-0xp2"
def labelruntime = "ibm-power-gpu"
def doingbenchmark = "0"
Expand Down
2 changes: 1 addition & 1 deletion ci/base/Jenkinsfile-ppc64le-cuda10.base
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def linuxwheel = "ppc64le-centos7-cuda10.whl"
def testtype = "dotest-single-gpu"
def testtype_multi_gpu = "dotest-multi-gpu"
def labelbuild = "ibm-power-gpu"
def labeltest_multi_gpu = "ibm-power-gpu && !mr-0xp2"
def labeltest_multi_gpu = "mr-0xp2"
def labeltest = "ibm-power-gpu && !mr-0xp2"
def labelruntime = "ibm-power-gpu"
def doingbenchmark = "0"
Expand Down
2 changes: 1 addition & 1 deletion tests/python/open_data/gbm/test_xgboost.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def test_xgboost_covtype_multi_gpu():
with LocalCUDACluster(n_workers=n_gpus, threads_per_worker=1) as cluster:
with Client(cluster) as client:
# Convert input data from numpy to XGBoost format
partition_size = 100000
partition_size = 10000

# remove when https://github.com/dmlc/xgboost/issues/4987 is fixed
dask_X_train = da.from_array(X_train, partition_size)
Expand Down