mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-24 14:15:14 +02:00
fixed come path issues in sympykern
This commit is contained in:
parent
4aa68807bc
commit
ec4a896fdd
1 changed files with 3 additions and 3 deletions
|
|
@ -6,7 +6,7 @@ from scipy import weave
|
||||||
import re
|
import re
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
current_dir = os.path.dirname(os.path.abspath(os.path.dirname(__file__)))
|
current_dir = os.path.dirname(os.path.abspath(__file__))
|
||||||
import tempfile
|
import tempfile
|
||||||
import pdb
|
import pdb
|
||||||
import ast
|
import ast
|
||||||
|
|
@ -107,9 +107,9 @@ class spkern(Kernpart):
|
||||||
|
|
||||||
self.weave_kwargs = {
|
self.weave_kwargs = {
|
||||||
'support_code':self._function_code,
|
'support_code':self._function_code,
|
||||||
'include_dirs':[tempfile.gettempdir(), os.path.join(current_dir,'parts/')],
|
'include_dirs':[tempfile.gettempdir(), current_dir],
|
||||||
'headers':['"sympy_helpers.h"'],
|
'headers':['"sympy_helpers.h"'],
|
||||||
'sources':[os.path.join(current_dir,"parts/sympy_helpers.cpp")],
|
'sources':[os.path.join(current_dir,"sympy_helpers.cpp")],
|
||||||
'extra_compile_args':extra_compile_args,
|
'extra_compile_args':extra_compile_args,
|
||||||
'extra_link_args':[],
|
'extra_link_args':[],
|
||||||
'verbose':True}
|
'verbose':True}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue