b15f6cd rabit unifires with dmlc 5634ec3 ok 2dd6c2f Merge branch 'master' of ssh://github.com/dmlc/rabit 38d7f99 checkin wormhole spliter 8acb96a Merge pull request #10 from ryanzz/master 911a1f0 fixed a mistake 732d8c3 inteface changing 684ea0a inteface changing 8cb4c02 add dmlc support be2ff70 allow adapting wormhole git-subtree-dir: subtree/rabit git-subtree-split: b15f6cd2ac4ac0e530df2b0a207d26868515f2d5
25 lines
668 B
Makefile
25 lines
668 B
Makefile
#-----------------------------------------------------
|
|
# rabit-learn: the configuration compile script
|
|
#
|
|
# This is the default configuration setup for rabit-learn
|
|
# If you want to change configuration, do the following steps:
|
|
#
|
|
# - copy this file to the root of rabit-learn folder
|
|
# - modify the configuration you want
|
|
# - type make or make -j n on each of the folder
|
|
#----------------------------------------------------
|
|
|
|
# choice of compiler
|
|
export CC = gcc
|
|
export CXX = g++
|
|
export MPICXX = mpicxx
|
|
|
|
# whether use HDFS support during compile
|
|
USE_HDFS = 1
|
|
|
|
# whether use dmlc's io utils
|
|
USE_DMLC = 0
|
|
|
|
# path to libjvm.so
|
|
LIBJVM=$(JAVA_HOME)/jre/lib/amd64/server
|