mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-09 12:02: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):
|
||||
weave_options = {'headers' : ['<omp.h>'],
|
||||
'extra_compile_args': ['-fopenmp -march=native'],
|
||||
'extra_link_args' : ['-lgomp'],
|
||||
'compiler' : 'gcc'}
|
||||
'extra_compile_args': ['-fopenmp -O3'], #-march=native'],
|
||||
'extra_link_args' : ['-lgomp']}
|
||||
|
||||
N,Q = mu.shape
|
||||
M = Zhat.shape[0]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue