Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Langford <jl@hunch.net>2011-07-20 08:37:58 +0400
committerJohn Langford <jl@hunch.net>2011-07-20 08:37:58 +0400
commitc67734c2ecff9bcc4598ea8fb17e3729403dd811 (patch)
tree0fec2e1113d6ae7e70619b799d39dc304d1354b9 /Makefile
parentd9ed065e70a59ff3b0ac3d9fb49588b1b6a79fe6 (diff)
parent1931d2ff352ec4333e816c381a84d5a6822a2206 (diff)
check in matrix facorization code from Jake
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1853796f..953b2e89 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,5 @@
COMPILER = g++
LIBS = -l boost_program_options -l pthread -l z
-#LIBS = -l boost_program_options-gcc34 -l pthread -l z
BOOST_INCLUDE = /usr/local/include
BOOST_LIBRARY = /usr/local/lib
@@ -45,6 +44,8 @@ sparse_dense.o: parse_example.h
gd.o: parse_example.h
+gd_mf.o: gd.h
+
%.o: %.cc %.h
$(COMPILER) $(FLAGS) -c $< -o $@
@@ -54,7 +55,7 @@ gd.o: parse_example.h
allreduce_master: allreduce_master.o
$(COMPILER) $(FLAGS) -o $@ $+
-vw: hash.o global_data.o delay_ring.o message_relay.o io.o parse_regressor.o parse_primitives.o unique_sort.o cache.o simple_label.o parse_example.o multisource.o sparse_dense.o network.o parse_args.o gd.o allreduce.o cg.o bfgs.o noop.o parser.o vw.o loss_functions.o sender.o main.o
+vw: hash.o global_data.o delay_ring.o message_relay.o io.o parse_regressor.o parse_primitives.o unique_sort.o cache.o simple_label.o parse_example.o multisource.o sparse_dense.o network.o parse_args.o gd.o gd_mf.o allreduce.o cg.o bfgs.o noop.o parser.o vw.o loss_functions.o sender.o main.o
$(COMPILER) $(FLAGS) -L$(BOOST_LIBRARY) -o $@ $+ $(LIBS)
lda: hash.o global_data.o delay_ring.o message_relay.o io.o parse_regressor.o parse_primitives.o unique_sort.o cache.o simple_label.o parse_example.o multisource.o sparse_dense.o network.o parse_args.o gd.o lda_core.o noop.o parser.o loss_functions.o sender.o lda.o