diff options
author | Victor Chahuneau <vchahune@cs.cmu.edu> | 2013-08-26 20:12:32 -0400 |
---|---|---|
committer | Victor Chahuneau <vchahune@cs.cmu.edu> | 2013-08-26 20:12:32 -0400 |
commit | 03799a2d330c6dbbe12154d4bcea236210b4f6ed (patch) | |
tree | 7adb0bc8dd2987fa32ee1299d8821dd8b7b06706 /python/src/utils.pxd | |
parent | 8b491e57f8a011f4f8496e44bed7eb7a4360bc93 (diff) |
Improve the package structure of pycdec
This change should not break anything, but now you can run:
python setup.py build_ext --inplace
and use the cleaner:
PYTHONPATH=/path/to/cdec/python python -m ...
Diffstat (limited to 'python/src/utils.pxd')
-rw-r--r-- | python/src/utils.pxd | 97 |
1 files changed, 0 insertions, 97 deletions
diff --git a/python/src/utils.pxd b/python/src/utils.pxd deleted file mode 100644 index 687d3ac0..00000000 --- a/python/src/utils.pxd +++ /dev/null @@ -1,97 +0,0 @@ -from libcpp.string cimport string -from libcpp.vector cimport vector -from libcpp.pair cimport pair - -cdef extern from "<iostream>" namespace "std": - cdef cppclass istream: - pass - cdef cppclass ostream: - pass - cdef cppclass istringstream(istream): - istringstream(char*) - -cdef extern from "utils/weights.h": - ctypedef double weight_t - -cdef extern from "utils/logval.h": - cdef cppclass LogVal[T]: - double as_float() - - ctypedef LogVal[double] prob_t - - double log(prob_t&) - -cdef extern from "utils/wordid.h": - ctypedef int WordID - -cdef extern from "utils/small_vector.h": - cdef cppclass SmallVector[T]: - T& operator[](unsigned) - unsigned size() - -cdef extern from "utils/sparse_vector.h": - cdef cppclass FastSparseVector[T]: - cppclass const_iterator: - const_iterator(FastSparseVector[T]&, bint is_end) - pair[unsigned, T]* ptr "operator->" () - const_iterator& operator++() - bint operator!=(const_iterator&) - FastSparseVector() - FastSparseVector(FastSparseVector[T]&) - const_iterator begin() - const_iterator end() - void init_vector(vector[T]* vp) - T value(unsigned k) - void set_value(unsigned k, T& v) - size_t size() - bint nonzero(unsigned k) - bint operator==(FastSparseVector[T]&) - T dot(vector[weight_t]&) # cython bug when [T] - T dot(FastSparseVector[T]&) - void clear() - - FastSparseVector[weight_t] operator+(FastSparseVector[weight_t]&, FastSparseVector[weight_t]&) - FastSparseVector[weight_t] operator-(FastSparseVector[weight_t]&, FastSparseVector[weight_t]&) - FastSparseVector[weight_t] operator*(FastSparseVector[weight_t]&, double&) - FastSparseVector[weight_t] operator/(FastSparseVector[weight_t]&, double&) - ostream operator<<(ostream& out, FastSparseVector[weight_t]& v) - -cdef extern from "utils/weights.h" namespace "Weights": - void InitSparseVector(vector[weight_t]& dv, FastSparseVector[weight_t]* sv) - -cdef extern from "utils/tdict.h" namespace "TD": - string GetString(vector[WordID]& st) - unsigned NumWords() - WordID TDConvert "TD::Convert" (char*) - string& TDConvert "TD::Convert" (WordID) - void ConvertSentence(string& sent, vector[WordID]* ids) - -cdef extern from "utils/verbose.h": - void SetSilent(bint) - -cdef extern from "utils/fdict.h" namespace "FD": - WordID FDConvert "FD::Convert" (char*) - string& FDConvert "FD::Convert" (WordID) - -cdef extern from "utils/filelib.h": - cdef cppclass ReadFile: - ReadFile(string&) - istream* stream() - -cdef extern from "utils/sampler.h": - cdef cppclass MT19937: - pass - -cdef extern from "<boost/shared_ptr.hpp>" namespace "boost": - cdef cppclass shared_ptr[T]: - shared_ptr(T* ptr) - shared_ptr(shared_ptr& r) - T* get() - -cdef extern from "<boost/program_options.hpp>": - cdef cppclass variable_value "const boost::program_options::variable_value": - string as_str "as<std::string>" () - - cdef cppclass variables_map "const boost::program_options::variables_map": - unsigned count(char* name) - variable_value& operator[](char* name) |