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:
authorHal Daume III <me@hal3.name>2014-05-02 01:03:03 +0400
committerHal Daume III <me@hal3.name>2014-05-02 01:03:03 +0400
commit31ca9fe2759513ed1c413ff432d05d30ba1165ad (patch)
tree363595416575ed831006e58f0b0066eae107ecb9 /Makefile
parentab38c2fedee0ba7ca86bd4cf4d145a27d4a6f5d5 (diff)
much better snapshotting (except for in beam search), gives >factor 2 speedup
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 680c9ebb..2d2048c3 100644
--- a/Makefile
+++ b/Makefile
@@ -48,8 +48,9 @@ endif
# for normal fast execution.
FLAGS = $(CFLAGS) $(LDFLAGS) $(ARCH) $(WARN_FLAGS) $(OPTIM_FLAGS) -D_FILE_OFFSET_BITS=64 -DNDEBUG -I $(BOOST_INCLUDE) #-DVW_LDA_NO_SSE
-# for profiling
-#FLAGS = $(CFLAGS) $(LDFLAGS) $(ARCH) $(WARN_FLAGS) -O2 -fno-strict-aliasing -ffast-math -D_FILE_OFFSET_BITS=64 -I $(BOOST_INCLUDE) -pg #-DVW_LDA_NO_SSE
+# for profiling -- note that it needs to be gcc
+#FLAGS = $(CFLAGS) $(LDFLAGS) $(ARCH) $(WARN_FLAGS) -O2 -fno-strict-aliasing -ffast-math -D_FILE_OFFSET_BITS=64 -I $(BOOST_INCLUDE) -pg #-DVW_LDA_NO_S
+#CXX = g++
# for valgrind / gdb debugging
#FLAGS = $(CFLAGS) $(LDFLAGS) $(ARCH) $(WARN_FLAGS) -ffast-math -D_FILE_OFFSET_BITS=64 -I $(BOOST_INCLUDE) -g -O0