UPD: Major update, changed interface of the module, Cython support added.

Although cython gives almost no speed-up.
This commit is contained in:
Alexander Grigorievskiy 2015-09-04 19:44:19 +03:00
parent b8e21057f5
commit 9c07bd167c
6 changed files with 28927 additions and 697 deletions

View file

@ -94,6 +94,10 @@ ext_mods = [Extension(name='GPy.kern.src.stationary_cython',
Extension(name='GPy.kern.src.coregionalize_cython',
sources=['GPy/kern/src/coregionalize_cython.c'],
include_dirs=[np.get_include(),'.'],
extra_compile_args=compile_flags),
Extension(name='GPy.models.state_space_cython',
sources=['GPy/models/state_space_cython.c'],
include_dirs=[np.get_include(),'.'],
extra_compile_args=compile_flags)]
setup(name = 'GPy',