Commit 8cbe375b authored by Stefan Behnel's avatar Stefan Behnel

enable 'inline_defnode_calls' optimisation for benchmarks (even though they...

enable 'inline_defnode_calls' optimisation for benchmarks (even though they don't benefit currently)
parent aee5548f
from distutils.core import setup
from Cython.Build import cythonize
directives = {
'optimize.inline_defnode_calls': True
}
setup(
name = 'benchmarks',
ext_modules = cythonize("*.py", language_level=3, annotate=True),
ext_modules = cythonize("*.py", language_level=3, annotate=True,
compiler_directives=directives),
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment