mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-29 23:06:22 +02:00
Merge branch 'build_ext-source_pyx' into install_fixes
This commit is contained in:
commit
a1054e5106
1 changed files with 5 additions and 5 deletions
10
setup.py
10
setup.py
|
|
@ -84,28 +84,28 @@ try:
|
|||
import numpy as np
|
||||
|
||||
ext_mods = [Extension(name='GPy.kern.src.stationary_cython',
|
||||
sources=['GPy/kern/src/stationary_cython.c',
|
||||
sources=['GPy/kern/src/stationary_cython.pyx',
|
||||
'GPy/kern/src/stationary_utils.c'],
|
||||
include_dirs=[np.get_include(), '.'],
|
||||
extra_compile_args=compile_flags,
|
||||
extra_link_args=link_args),
|
||||
Extension(name='GPy.util.choleskies_cython',
|
||||
sources=['GPy/util/choleskies_cython.c'],
|
||||
sources=['GPy/util/choleskies_cython.pyx'],
|
||||
include_dirs=[np.get_include(), '.'],
|
||||
extra_link_args=link_args,
|
||||
extra_compile_args=compile_flags),
|
||||
Extension(name='GPy.util.linalg_cython',
|
||||
sources=['GPy/util/linalg_cython.c'],
|
||||
sources=['GPy/util/linalg_cython.pyx'],
|
||||
include_dirs=[np.get_include(), '.'],
|
||||
extra_compile_args=compile_flags,
|
||||
extra_link_args=link_args),
|
||||
Extension(name='GPy.kern.src.coregionalize_cython',
|
||||
sources=['GPy/kern/src/coregionalize_cython.c'],
|
||||
sources=['GPy/kern/src/coregionalize_cython.pyx'],
|
||||
include_dirs=[np.get_include(), '.'],
|
||||
extra_compile_args=compile_flags,
|
||||
extra_link_args=link_args),
|
||||
Extension(name='GPy.models.state_space_cython',
|
||||
sources=['GPy/models/state_space_cython.c'],
|
||||
sources=['GPy/models/state_space_cython.pyx'],
|
||||
include_dirs=[np.get_include(), '.'],
|
||||
extra_compile_args=compile_flags,
|
||||
extra_link_args=link_args)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue