diff options
author | Wu, Ke <wuke@cs.umd.edu> | 2014-10-07 18:44:05 -0400 |
---|---|---|
committer | Wu, Ke <wuke@cs.umd.edu> | 2014-10-07 18:44:05 -0400 |
commit | 9ba88cc8f776d85ef821a88c72413b14484e6457 (patch) | |
tree | 9a91a571568904d3a528e691e58f32aa6e68b13d /utils | |
parent | 0900cac418f7e46889336d137e6ba1bb84651544 (diff) |
Move synutils under utils
Diffstat (limited to 'utils')
-rw-r--r-- | utils/Makefile.am | 18 | ||||
-rw-r--r-- | utils/alignment.h (renamed from utils/synutils/alignment.h) | 2 | ||||
-rw-r--r-- | utils/argument_reorder_model.cc (renamed from utils/synutils/argument_reorder_model.cc) | 2 | ||||
-rw-r--r-- | utils/argument_reorder_model.h (renamed from utils/synutils/argument_reorder_model.h) | 0 | ||||
-rw-r--r-- | utils/constituent_reorder_model.cc (renamed from utils/synutils/constituent_reorder_model.cc) | 2 | ||||
-rw-r--r-- | utils/lbfgs.cpp (renamed from utils/synutils/maxent-3.0/lbfgs.cpp) | 0 | ||||
-rw-r--r-- | utils/lbfgs.h (renamed from utils/synutils/maxent-3.0/lbfgs.h) | 0 | ||||
-rw-r--r-- | utils/mathvec.h (renamed from utils/synutils/maxent-3.0/mathvec.h) | 0 | ||||
-rw-r--r-- | utils/maxent.cpp (renamed from utils/synutils/maxent-3.0/maxent.cpp) | 0 | ||||
-rw-r--r-- | utils/maxent.h (renamed from utils/synutils/maxent-3.0/maxent.h) | 0 | ||||
-rw-r--r-- | utils/owlqn.cpp (renamed from utils/synutils/maxent-3.0/owlqn.cpp) | 0 | ||||
-rw-r--r-- | utils/sgd.cpp (renamed from utils/synutils/maxent-3.0/sgd.cpp) | 0 | ||||
-rw-r--r-- | utils/srl_sentence.h (renamed from utils/synutils/srl_sentence.h) | 2 | ||||
-rw-r--r-- | utils/synutils.h (renamed from utils/synutils/utility.h) | 0 | ||||
-rw-r--r-- | utils/synutils/Makefile.am | 6 | ||||
-rw-r--r-- | utils/synutils/maxent-3.0/Makefile.am | 10 | ||||
-rw-r--r-- | utils/tree.h (renamed from utils/synutils/tree.h) | 0 | ||||
-rw-r--r-- | utils/tsuruoka_maxent.h (renamed from utils/synutils/tsuruoka_maxent.h) | 6 |
18 files changed, 23 insertions, 25 deletions
diff --git a/utils/Makefile.am b/utils/Makefile.am index 727fa8a5..0bd21b2b 100644 --- a/utils/Makefile.am +++ b/utils/Makefile.am @@ -1,4 +1,4 @@ -bin_PROGRAMS = reconstruct_weights atools +bin_PROGRAMS = reconstruct_weights atools const_reorder_model_trainer noinst_PROGRAMS = \ ts \ @@ -20,7 +20,9 @@ noinst_LIBRARIES = libutils.a libutils_a_SOURCES = \ test_data \ alias_sampler.h \ + alignment.h \ alignment_io.h \ + argument_reorder_model.h \ array2d.h \ b64tools.h \ batched_append.h \ @@ -38,13 +40,20 @@ libutils_a_SOURCES = \ have_64_bits.h \ indices_after.h \ kernel_string_subseq.h \ + lbfgs.h \ + lbfgs.cpp \ logval.h \ m.h \ + mathvec.h \ + maxent.h \ + maxent.cpp \ murmur_hash3.h \ murmur_hash3.cc \ named_enum.h \ null_deleter.h \ null_traits.h \ + owlqn.cpp \ + sgd.cpp \ perfect_hash.h \ prob.h \ sampler.h \ @@ -52,12 +61,15 @@ libutils_a_SOURCES = \ show.h \ small_vector.h \ sparse_vector.h \ + srl_sentence.h \ star.h \ static_utoa.h \ stringlib.h \ string_piece.hh \ tdict.h \ timing_stats.h \ + tree.h \ + tsuruoka_maxent.h \ utoa.h \ value_array.h \ verbose.h \ @@ -79,6 +91,7 @@ libutils_a_SOURCES = \ filelib.cc \ stringlib.cc \ string_piece.cc \ + synutils.h \ sparse_vector.cc \ timing_stats.cc \ verbose.cc \ @@ -93,6 +106,8 @@ reconstruct_weights_LDADD = libutils.a atools_SOURCES = atools.cc atools_LDADD = libutils.a atools_LDFLAGS = $(STATIC_FLAGS) +const_reorder_model_trainer_SOURCES = constituent_reorder_model.cc +const_reorder_model_trainer_LDADD = libutils.a phmt_SOURCES = phmt.cc phmt_LDADD = libutils.a $(BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) @@ -117,4 +132,3 @@ stringlib_test_LDADD = libutils.a $(BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS) $(BOOST_U # do NOT NOT NOT add any other -I includes NO NO NO NO NO ###### AM_CPPFLAGS = -DBOOST_TEST_DYN_LINK -W -Wall -I. -I$(top_srcdir) -DTEST_DATA=\"$(top_srcdir)/utils/test_data\" ################################################################ - diff --git a/utils/synutils/alignment.h b/utils/alignment.h index 6abd12bc..c0648aab 100644 --- a/utils/synutils/alignment.h +++ b/utils/alignment.h @@ -13,7 +13,7 @@ #include <stdio.h> #include <string.h> -#include "utils/stringlib.h" +#include "stringlib.h" using namespace std; diff --git a/utils/synutils/argument_reorder_model.cc b/utils/argument_reorder_model.cc index 2b6bcda1..58886251 100644 --- a/utils/synutils/argument_reorder_model.cc +++ b/utils/argument_reorder_model.cc @@ -9,7 +9,7 @@ #include <fstream> #include "argument_reorder_model.h" -#include "utility.h" +#include "synutils.h" #include "tsuruoka_maxent.h" inline void fnPreparingTrainingdata(const char* pszFName, int iCutoff, diff --git a/utils/synutils/argument_reorder_model.h b/utils/argument_reorder_model.h index 062b8841..062b8841 100644 --- a/utils/synutils/argument_reorder_model.h +++ b/utils/argument_reorder_model.h diff --git a/utils/synutils/constituent_reorder_model.cc b/utils/constituent_reorder_model.cc index 78d61b90..042c751b 100644 --- a/utils/synutils/constituent_reorder_model.cc +++ b/utils/constituent_reorder_model.cc @@ -9,7 +9,7 @@ #include "alignment.h" #include "tree.h" -#include "utility.h" +#include "synutils.h" #include "tsuruoka_maxent.h" #include <unordered_map> diff --git a/utils/synutils/maxent-3.0/lbfgs.cpp b/utils/lbfgs.cpp index bd26f048..bd26f048 100644 --- a/utils/synutils/maxent-3.0/lbfgs.cpp +++ b/utils/lbfgs.cpp diff --git a/utils/synutils/maxent-3.0/lbfgs.h b/utils/lbfgs.h index ed5cd944..ed5cd944 100644 --- a/utils/synutils/maxent-3.0/lbfgs.h +++ b/utils/lbfgs.h diff --git a/utils/synutils/maxent-3.0/mathvec.h b/utils/mathvec.h index f8c60e5d..f8c60e5d 100644 --- a/utils/synutils/maxent-3.0/mathvec.h +++ b/utils/mathvec.h diff --git a/utils/synutils/maxent-3.0/maxent.cpp b/utils/maxent.cpp index 8d00ac1d..8d00ac1d 100644 --- a/utils/synutils/maxent-3.0/maxent.cpp +++ b/utils/maxent.cpp diff --git a/utils/synutils/maxent-3.0/maxent.h b/utils/maxent.h index 88a04e25..88a04e25 100644 --- a/utils/synutils/maxent-3.0/maxent.h +++ b/utils/maxent.h diff --git a/utils/synutils/maxent-3.0/owlqn.cpp b/utils/owlqn.cpp index c3a0f0da..c3a0f0da 100644 --- a/utils/synutils/maxent-3.0/owlqn.cpp +++ b/utils/owlqn.cpp diff --git a/utils/synutils/maxent-3.0/sgd.cpp b/utils/sgd.cpp index 8613edca..8613edca 100644 --- a/utils/synutils/maxent-3.0/sgd.cpp +++ b/utils/sgd.cpp diff --git a/utils/synutils/srl_sentence.h b/utils/srl_sentence.h index 1afdec45..61532fb2 100644 --- a/utils/synutils/srl_sentence.h +++ b/utils/srl_sentence.h @@ -13,7 +13,7 @@ #include <vector> #include "tree.h" -#include "utils/stringlib.h" +#include "stringlib.h" using namespace std; diff --git a/utils/synutils/utility.h b/utils/synutils.h index ef7b78b7..ef7b78b7 100644 --- a/utils/synutils/utility.h +++ b/utils/synutils.h diff --git a/utils/synutils/Makefile.am b/utils/synutils/Makefile.am deleted file mode 100644 index ac76be40..00000000 --- a/utils/synutils/Makefile.am +++ /dev/null @@ -1,6 +0,0 @@ -bin_PROGRAMS = const_reorder_model_trainer - -const_reorder_model_trainer_SOURCES = constituent_reorder_model.cc -const_reorder_model_trainer_LDADD = maxent-3.0/libtsuruoka_maxent.a - -AM_CPPFLAGS = -W -Wall -I$(top_srcdir) diff --git a/utils/synutils/maxent-3.0/Makefile.am b/utils/synutils/maxent-3.0/Makefile.am deleted file mode 100644 index 64bb038c..00000000 --- a/utils/synutils/maxent-3.0/Makefile.am +++ /dev/null @@ -1,10 +0,0 @@ -noinst_LIBRARIES = libtsuruoka_maxent.a - -libtsuruoka_maxent_a_SOURCES = \ - lbfgs.cpp \ - maxent.cpp \ - owlqn.cpp \ - sgd.cpp - -AM_CPPFLAGS = -W -Wall - diff --git a/utils/synutils/tree.h b/utils/tree.h index 8070f828..8070f828 100644 --- a/utils/synutils/tree.h +++ b/utils/tree.h diff --git a/utils/synutils/tsuruoka_maxent.h b/utils/tsuruoka_maxent.h index 89b06b97..e6bef232 100644 --- a/utils/synutils/tsuruoka_maxent.h +++ b/utils/tsuruoka_maxent.h @@ -6,9 +6,9 @@ #ifndef TSURUOKA_MAXENT_H_ #define TSURUOKA_MAXENT_H_ -#include "utility.h" -#include "utils/stringlib.h" -#include "utils/synutils/maxent-3.0/maxent.h" +#include "synutils.h" +#include "stringlib.h" +#include "maxent.h" #include <assert.h> #include <vector> |