Skip to content

Commit

Permalink
cythonized most time consuming operator
Browse files Browse the repository at this point in the history
  • Loading branch information
SoluMilken committed Feb 13, 2019
1 parent 0d7aa88 commit 66b5cea
Show file tree
Hide file tree
Showing 9 changed files with 17,406 additions and 44 deletions.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
Extension('uttut.pipeline.edit.validation', ['uttut/pipeline/edit/validation.pyx']),
Extension('uttut.pipeline.edit.label_propagation',
['uttut/pipeline/edit/label_propagation.pyx']),
Extension('uttut.pipeline.ops.base', ['uttut/pipeline/ops/base.pyx']),
Extension('uttut.pipeline.ops.token_to_index', ['uttut/pipeline/ops/token_to_index.pyx']),
]
ext_modules = cythonize(
ext_modules,
Expand All @@ -59,6 +61,8 @@
Extension('uttut.pipeline.edit.validation', ['uttut/pipeline/edit/validation.c']),
Extension('uttut.pipeline.edit.label_propagation',
['uttut/pipeline/edit/label_propagation.c']),
Extension('uttut.pipeline.ops.base', ['uttut/pipeline/ops/base.c']),
Extension('uttut.pipeline.ops.token_to_index', ['uttut/pipeline/ops/token_to_index.c']),
]


Expand Down
Loading

0 comments on commit 66b5cea

Please sign in to comment.