* Improved multi-node multi-GPU random forests. - removed rabit::Broadcast() from each invocation of column sampling - instead, syncing the PRNG seed when a ColumnSampler() object is constructed - this makes non-trivial column sampling significantly faster in the distributed case - refactored distributed GPU tests - added distributed random forests tests
12 lines
228 B
Bash
Executable File
12 lines
228 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cd python-package
|
|
python setup.py install --user
|
|
cd ..
|
|
pytest -v -s --fulltrace -m "(not slow) and mgpu" tests/python-gpu
|
|
./testxgboost --gtest_filter=*.MGPU_*
|
|
|
|
cd tests/distributed
|
|
./runtests-gpu.sh
|