* Integrating a faster version of grow_gpu plugin 1. Removed the older files to reduce duplication 2. Moved all of the grow_gpu files under 'exact' folder 3. All of them are inside 'exact' namespace to avoid any conflicts 4. Fixed a bug in benchmark.py while running only 'grow_gpu' plugin 5. Added cub and googletest submodules to ease integration and unit-testing 6. Updates to CMakeLists.txt to directly build cuda objects into libxgboost * Added support for building gpu plugins through make flow 1. updated makefile and config.mk to add right targets 2. added unit-tests for gpu exact plugin code * 1. Added support for building gpu plugin using 'make' flow as well 2. Updated instructions for building and testing gpu plugin * Fix travis-ci errors for PR#2360 1. lint errors on unit-tests 2. removed googletest, instead depended upon dmlc-core provide gtest cache * Some more fixes to travis-ci lint failures PR#2360 * Added Rory's copyrights to the files containing code from both. * updated copyright statement as per Rory's request * moved the static datasets into a script to generate them at runtime * 1. memory usage print when silent=0 2. tests/ and test/ folder organization 3. removal of the dependency of googletest for just building xgboost 4. coding style updates for .cuh as well * Fixes for compilation warnings * add cuda object files as well when JVM_BINDINGS=ON
74 lines
2.1 KiB
Makefile
74 lines
2.1 KiB
Makefile
#-----------------------------------------------------
|
|
# xgboost: the configuration compile script
|
|
#
|
|
# If you want to change the configuration, please use the following
|
|
# steps. Assume you are on the root directory of xgboost.
|
|
# First copy this file so that any local changes will be ignored by git
|
|
#
|
|
# $ cp make/config.mk .
|
|
#
|
|
# Next modify the according entries in the copied file and then compile by
|
|
#
|
|
# $ make
|
|
#
|
|
# or build in parallel with 8 threads
|
|
#
|
|
# $ make -j8
|
|
#----------------------------------------------------
|
|
|
|
# choice of compiler, by default use system preference.
|
|
# export CC = gcc
|
|
# export CXX = g++
|
|
# export MPICXX = mpicxx
|
|
|
|
# the additional link flags you want to add
|
|
ADD_LDFLAGS =
|
|
|
|
# the additional compile flags you want to add
|
|
ADD_CFLAGS =
|
|
|
|
# Whether enable openmp support, needed for multi-threading.
|
|
USE_OPENMP = 1
|
|
|
|
# whether use HDFS support during compile
|
|
USE_HDFS = 0
|
|
|
|
# whether use AWS S3 support during compile
|
|
USE_S3 = 0
|
|
|
|
# whether use Azure blob support during compile
|
|
USE_AZURE = 0
|
|
|
|
# Rabit library version,
|
|
# - librabit.a Normal distributed version.
|
|
# - librabit_empty.a Non distributed mock version,
|
|
LIB_RABIT = librabit.a
|
|
|
|
# path to libjvm.so
|
|
LIBJVM=$(JAVA_HOME)/jre/lib/amd64/server
|
|
|
|
# whether to test with coverage measurement or not. (only used for `make cover`)
|
|
# measured with gcov and html report generated with lcov if it is installed.
|
|
# this disables optimization to ensure coverage information is correct
|
|
TEST_COVER = 0
|
|
|
|
# path to gtest library (only used when $BUILD_TEST=1)
|
|
# there should be an include path in $GTEST_PATH/include and library in $GTEST_PATH/lib
|
|
GTEST_PATH ?=
|
|
|
|
# path to cub library (only used when $CUDA_ENABLED=1)
|
|
# this should point to the cub project root folder
|
|
CUB_PATH ?= cub
|
|
|
|
# List of additional plugins, checkout plugin folder.
|
|
# uncomment the following lines to include these plugins
|
|
# you can also add your own plugin like this
|
|
#
|
|
# XGB_PLUGINS += plugin/example/plugin.mk
|
|
|
|
# plugin to build tree on GPUs using CUDA
|
|
PLUGIN_UPDATER_GPU ?= OFF
|
|
ifeq ($(PLUGIN_UPDATER_GPU),ON)
|
|
XGB_PLUGINS += plugin/updater_gpu/plugin.mk
|
|
endif
|