28ca7be add linear readme ca4b20f add linear readme 1133628 add linear readme 6a11676 update docs a607047 Update build.sh 2c1cfd8 complete yarn 4f28e32 change formater 2fbda81 fix stdin input 3258bcf checkin yarn master 67ebf81 allow setup from env variables 9b6bf57 fix hdfs 395d5c2 add make system 88ce767 refactor io, initial hdfs file access need test 19be870 chgs a1bd3c6 Merge branch 'master' of ssh://github.com/tqchen/rabit 1a573f9 introduce input split 29476f1 fix timer issue git-subtree-dir: subtree/rabit git-subtree-split: 28ca7becbdf6503e6b1398588a969efb164c9701
22 lines
621 B
Makefile
22 lines
621 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 for parallel build
|
|
#----------------------------------------------------
|
|
|
|
# choice of compiler
|
|
export CC = gcc
|
|
export CXX = g++
|
|
export MPICXX = mpicxx
|
|
|
|
# whether use HDFS support during compile
|
|
USE_HDFS = 1
|
|
|
|
# path to libjvm.so
|
|
LIBJVM=$(JAVA_HOME)/jre/lib/amd64/server
|