diff --git a/GPy/kern/rbf.py b/GPy/kern/rbf.py index a26bb79c..ff5d6ff3 100644 --- a/GPy/kern/rbf.py +++ b/GPy/kern/rbf.py @@ -228,9 +228,8 @@ class rbf(kernpart): def weave_psi2(self,mu,Zhat): weave_options = {'headers' : [''], - '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]