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:
authorAlekh Agarwal <alekh@starbuilt.newyork.corp.yahoo.com>2011-06-23 21:26:02 +0400
committerAlekh Agarwal <alekh@starbuilt.newyork.corp.yahoo.com>2011-06-23 21:26:02 +0400
commit540d2fe5d7626bdeddfe296fb90ccbcedd426765 (patch)
treefd96b574b1704d65010de8245cd2823e9026bbe4 /Makefile
parentbf9b9be470ad8bcb42ef22b89dc57f20b53c56d8 (diff)
minor changes and a README for cluster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6e6e2b0f..eb5df2f8 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ LIBS = -l boost_program_options -l pthread -l z
BOOST_INCLUDE = /usr/local/include
BOOST_LIBRARY = /usr/local/lib
-ARCH = -march=native
+ARCH = -march=nocona
OPTIM_FLAGS = -O3 -fomit-frame-pointer -ffast-math -fno-strict-aliasing
# for normal fast execution.
@@ -50,8 +50,8 @@ gd.o: parse_example.h
%.o: %.cc
$(COMPILER) $(FLAGS) -c $< -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 lda.o cg.o noop.o parser.o vw.o loss_functions.o sender.o main.o
- $(COMPILER) $(FLAGS) -L$(BOOST_LIBRARY) -o $@ $+ $(LIBS)
+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 noop.o parser.o vw.o loss_functions.o sender.o main.o
+ $(COMPILER) $(FLAGS) -L$(BOOST_LIBRARY) -static -o $@ $+ $(LIBS)
active_interactor: active_interactor.cc
$(COMPILER) $(FLAGS) -o $@ $+