[Numpy-tickets] [NumPy] #994: [PATCH] Support for better Core2 handling in numpy.distutils
NumPy
numpy-tickets@scipy....
Mon Feb 2 12:39:18 CST 2009
#994: [PATCH] Support for better Core2 handling in numpy.distutils
-----------------------------+----------------------------------------------
Reporter: faltet | Owner: cookedm
Type: defect | Status: new
Priority: normal | Milestone: 1.3.0
Component: numpy.distutils | Version: none
Severity: normal | Keywords:
-----------------------------+----------------------------------------------
I find that the next patch could be desirable in order to have a better
handling of the Core2 architecture:
{{{
--- numpy/distutils/system_info.py (revision 6337)
+++ numpy/distutils/system_info.py (working copy)
@@ -838,7 +838,7 @@
if cpu.is_Itanium():
plt = '64'
#l = 'mkl_ipf'
- elif cpu.is_Xeon():
+ elif cpu.is_Xeon() or cpu.is_Core2():
plt = 'em64t'
#l = 'mkl_em64t'
else:
}}}
Thanks
--
Ticket URL: <http://scipy.org/scipy/numpy/ticket/994>
NumPy <http://projects.scipy.org/scipy/numpy>
The fundamental package needed for scientific computing with Python.
More information about the Numpy-tickets
mailing list