mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-09 20:12:38 +02:00
--march=native was causing problems on the stupid compiler on MacOS
This commit is contained in:
parent
338f3295b1
commit
c7e8345c96
1 changed files with 2 additions and 3 deletions
|
|
@ -228,9 +228,8 @@ class rbf(kernpart):
|
||||||
|
|
||||||
def weave_psi2(self,mu,Zhat):
|
def weave_psi2(self,mu,Zhat):
|
||||||
weave_options = {'headers' : ['<omp.h>'],
|
weave_options = {'headers' : ['<omp.h>'],
|
||||||
'extra_compile_args': ['-fopenmp -march=native'],
|
'extra_compile_args': ['-fopenmp -O3'], #-march=native'],
|
||||||
'extra_link_args' : ['-lgomp'],
|
'extra_link_args' : ['-lgomp']}
|
||||||
'compiler' : 'gcc'}
|
|
||||||
|
|
||||||
N,Q = mu.shape
|
N,Q = mu.shape
|
||||||
M = Zhat.shape[0]
|
M = Zhat.shape[0]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue