Re: [Numpy-discussion] Intel MKL on Core2 system

2009-03-12 Thread Ryan May
On Thu, Mar 12, 2009 at 10:11 AM, Francesc Alted wrote: > A Thursday 12 March 2009, Ryan May escrigué: > > I can get it working now with either the [mkl] section like your > > config or the following config: > > > > [DEFAULT] > > include_dirs = /opt/intel/mkl/10.0.2.018/include/ > > library_dirs =

Re: [Numpy-discussion] Intel MKL on Core2 system

2009-03-12 Thread Francesc Alted
A Thursday 12 March 2009, Ryan May escrigué: > I can get it working now with either the [mkl] section like your > config or the following config: > > [DEFAULT] > include_dirs = /opt/intel/mkl/10.0.2.018/include/ > library_dirs = /opt/intel/mkl/10.0.2.018/lib/em64t/:/usr/lib

Re: [Numpy-discussion] Intel MKL on Core2 system

2009-03-12 Thread Ryan May
On Thu, Mar 12, 2009 at 8:30 AM, David Cournapeau < da...@ar.media.kyoto-u.ac.jp> wrote: > Ryan May wrote: > > > > [DEFAULT] > > include_dirs = /opt/intel/mkl/10.0.2.018/include/ > > > > library_dirs = /opt/intel/mkl/10.0.2.018/lib/em64t/:/usr/lib > >

Re: [Numpy-discussion] Intel MKL on Core2 system

2009-03-12 Thread David Cournapeau
Ryan May wrote: > > [DEFAULT] > include_dirs = /opt/intel/mkl/10.0.2.018/include/ > > library_dirs = /opt/intel/mkl/10.0.2.018/lib/em64t/:/usr/lib > > > [blas] > libraries = mkl_gf_lp64, mkl_gnu_thread, mkl_core, iomp5 > > [lapack

Re: [Numpy-discussion] Intel MKL on Core2 system

2009-03-12 Thread Ryan May
On Thu, Mar 12, 2009 at 3:05 AM, Francesc Alted wrote: > A Wednesday 11 March 2009, Ryan May escrigué: > > Thanks. That's actually pretty close to what I had. I was actually > > thinking that you were using only blas_opt and lapack_opt, since > > supposedly the [mkl] style section is deprecated

Re: [Numpy-discussion] Intel MKL on Core2 system

2009-03-12 Thread Francesc Alted
A Wednesday 11 March 2009, Ryan May escrigué: > Thanks. That's actually pretty close to what I had. I was actually > thinking that you were using only blas_opt and lapack_opt, since > supposedly the [mkl] style section is deprecated. Thus far, I cannot > get these to work with MKL. Well, my con

Re: [Numpy-discussion] Intel MKL on Core2 system

2009-03-11 Thread Ryan May
On Wed, Mar 11, 2009 at 2:20 PM, Francesc Alted wrote: > A Wednesday 11 March 2009, Ryan May escrigué: > > You know, I knew this sounded familiar. If you regularly build > > against MKL, can you send me your site.cfg. I've had a lot more > > success getting the build to work using the autodetec

Re: [Numpy-discussion] Intel MKL on Core2 system

2009-03-11 Thread Francesc Alted
A Wednesday 11 March 2009, Ryan May escrigué: > You know, I knew this sounded familiar. If you regularly build > against MKL, can you send me your site.cfg. I've had a lot more > success getting the build to work using the autodetection than the > blas_opt and lapack_opt sections. Since the aut

Re: [Numpy-discussion] Intel MKL on Core2 system

2009-03-11 Thread Ryan May
On Wed, Mar 11, 2009 at 1:34 PM, Francesc Alted wrote: > A Wednesday 11 March 2009, Ryan May escrigué: > > Hi, > > > > I noticed the following in numpy/distutils/system_info.py while > > trying to get numpy to build against MKL: > > > > if cpu.is_Itanium(): > > plt = '

Re: [Numpy-discussion] Intel MKL on Core2 system

2009-03-11 Thread Ryan May
On Wed, Mar 11, 2009 at 1:41 PM, David Cournapeau wrote: > On Thu, Mar 12, 2009 at 3:15 AM, Ryan May wrote: > > Hi, > > > > I noticed the following in numpy/distutils/system_info.py while trying to > > get numpy to build against MKL: > > > > if cpu.is_Itanium(): > > pl

Re: [Numpy-discussion] Intel MKL on Core2 system

2009-03-11 Thread David Cournapeau
On Thu, Mar 12, 2009 at 3:15 AM, Ryan May wrote: > Hi, > > I noticed the following in numpy/distutils/system_info.py while trying to > get numpy to build against MKL: > >     if cpu.is_Itanium(): >     plt = '64' >     #l = 'mkl_ipf' >     elif cpu.is_Xeon()

Re: [Numpy-discussion] Intel MKL on Core2 system

2009-03-11 Thread Francesc Alted
A Wednesday 11 March 2009, Ryan May escrigué: > Hi, > > I noticed the following in numpy/distutils/system_info.py while > trying to get numpy to build against MKL: > > if cpu.is_Itanium(): > plt = '64' > #l = 'mkl_ipf' > elif cpu.is_Xeon(): >

[Numpy-discussion] Intel MKL on Core2 system

2009-03-11 Thread Ryan May
Hi, I noticed the following in numpy/distutils/system_info.py while trying to get numpy to build against MKL: if cpu.is_Itanium(): plt = '64' #l = 'mkl_ipf' elif cpu.is_Xeon(): plt = 'em64t' #l = 'mkl_em64t'