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 | ca9b58716214148eeaeaa3076e1a1dc8f8bb5892 (patch) | |
tree | bfa2fd84c86e0fdd499110e86fd464b391379df1 /python/src/sa/_sa.pyx | |
parent | 9d5071692ceab8d09c2bfdba24f6b927ec84b7f9 (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/sa/_sa.pyx')
-rw-r--r-- | python/src/sa/_sa.pyx | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/python/src/sa/_sa.pyx b/python/src/sa/_sa.pyx deleted file mode 100644 index 4716d174..00000000 --- a/python/src/sa/_sa.pyx +++ /dev/null @@ -1,30 +0,0 @@ -import logging -import resource -import gzip - -def monitor_cpu(): - return (resource.getrusage(resource.RUSAGE_SELF).ru_utime+ - resource.getrusage(resource.RUSAGE_SELF).ru_stime) - -def gzip_or_text(char* filename): - if filename.endswith('.gz'): - return gzip.GzipFile(filename) - else: - return open(filename) - -logger = logging.getLogger('cdec.sa') - -include "float_list.pxi" -include "int_list.pxi" -include "str_map.pxi" -include "data_array.pxi" -include "alignment.pxi" -include "bilex.pxi" -include "veb.pxi" -include "lcp.pxi" -include "sym.pxi" -include "rule.pxi" -include "precomputation.pxi" -include "suffix_array.pxi" -include "rulefactory.pxi" -include "features.pxi" |