* make the assignments of HostDeviceVector exception safe. * storing a dummy GPUDistribution instance in HDV for CPU based code. * change testxgboost binary location to build directory.
9 lines
201 B
Bash
Executable File
9 lines
201 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 mgpu) and (not slow)" tests/python-gpu
|
|
./build/testxgboost --gtest_filter=-*.MGPU_*
|