--march=native was causing problems on the stupid compiler on MacOS

This commit is contained in:
Nicolo Fusi 2013-04-12 13:31:45 +01:00
parent 338f3295b1
commit c7e8345c96

View file

@ -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]