I assume this is a bottom post list, so my answers are below... -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of David Cournapeau Sent: Thursday, May 09, 2013 10:45 AM To: Discussion of Numerical Python Subject: Re: [Numpy-discussion] www.scipy.org down?
On Thu, May 9, 2013 at 3:25 PM, KACVINSKY Tom <[email protected]> wrote: >> Unfortunately, the Mac OS downloads won't work for us as they install into >> the system Python. >They actually install in a python installed from python.org, not system >> We have a custom built Python (2.7.3) so I compiled from source. I noticed >> a few things: >> >> 1. The modules compiled from C source have an extension of .so, not .dylib > .so is the usual extension for python extensions on mac os x OK, this is good to know. >> 2. I installed nose so I could run the numpy tests, but 0 tests ran. >How did you run nose ? Per the instructions in the README file. >> 3. I configured numpy to use MKL as per the instructions on Intel's site, >> but the build still used the Accelerate framework provided by Apple. >Setting up the MKL is a bit tedious, but essentially, you need to create a >site.cfg in the source tree that looks as follows: >[mkl] >library_dirs = "where the libraries are" >include_dirs = "where the headers are" >libpack_libs = mkl_lapack95 >mkl_libs = mkl_intel,mkl_intel_thread, mkl_core, mkl_p4m, mkl_p4p >and (that's the undocumented/buggy part), set ATLAS=1 to disable accelerate. This is what I have for my site.cfg file: [mkl] include_dirs = /u/users/tky/mklinc library_dirs = /u/users/tky/mkllib mkl_libs = mkl_sequential,mkl_intel_lp64,mkl_core lapack_libs = mkl_sequential,mkl_intel_lp64,mkl_core I am using MKL 11 update 3, which uses a different set of libraries for linking. Where do I set ATLAS=1? David _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion This email and any attachments are intended solely for the use of the individual or entity to whom it is addressed and may be confidential and/or privileged. If you are not one of the named recipients or have received this email in error, (i) you should not read, disclose, or copy it, (ii) please notify sender of your receipt by reply email and delete this email and all attachments, (iii) Dassault Systemes does not accept or assume any liability or responsibility for any use of or reliance on this email. For other languages, go to http://www.3ds.com/terms/email-disclaimer _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
