28ca7beadd linear readmeca4b20fadd linear readme1133628add linear readme6a11676update docsa607047Update build.sh2c1cfd8complete yarn4f28e32change formater2fbda81fix stdin input3258bcfcheckin yarn master67ebf81allow setup from env variables9b6bf57fix hdfs395d5c2add make system88ce767refactor io, initial hdfs file access need test19be870chgsa1bd3c6Merge branch 'master' of ssh://github.com/tqchen/rabit1a573f9introduce input split29476f1fix timer issue git-subtree-dir: subtree/rabit git-subtree-split:28ca7becbd
16 lines
362 B
Makefile
16 lines
362 B
Makefile
# specify tensor path
|
|
BIN = linear.rabit
|
|
MOCKBIN= linear.mock
|
|
MPIBIN =
|
|
# objectives that makes up rabit library
|
|
OBJ = linear.o
|
|
|
|
# common build script for programs
|
|
include ../make/config.mk
|
|
include ../make/common.mk
|
|
CFLAGS+=-fopenmp
|
|
linear.o: linear.cc ../../src/*.h linear.h ../solver/*.h
|
|
# dependenies here
|
|
linear.rabit: linear.o lib
|
|
linear.mock: linear.o lib
|