<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/distutils/intelccompiler.py, branch v1.12.0rc1</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>DEP: Fix escaped string characters deprecated in Python 3.6.</title>
<updated>2016-12-17T23:51:03+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-12-13T22:53:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=d156cafb3b9163d731869c18740a51f733c2c776'/>
<id>d156cafb3b9163d731869c18740a51f733c2c776</id>
<content type='text'>
In Python 3.6 a number of escape sequences that were previously accepted
-- for instance "\(" that was translated to "\\(" -- are deprecated. To
retain the previous behavior either raw strings must be used or the
backslash must be properly escaped itself.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In Python 3.6 a number of escape sequences that were previously accepted
-- for instance "\(" that was translated to "\\(" -- are deprecated. To
retain the previous behavior either raw strings must be used or the
backslash must be properly escaped itself.
</pre>
</div>
</content>
</entry>
<entry>
<title>BLD: Remove Intel compiler flag -xSSE4.2</title>
<updated>2016-05-22T15:48:22+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-05-22T02:13:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=d5e128c331a2ab404821e744f826da3f840733da'/>
<id>d5e128c331a2ab404821e744f826da3f840733da</id>
<content type='text'>
The consensus seems to be that hardcoding SSE4.2 results in poor code
for architectures lacking the feature.

Closes #7287.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The consensus seems to be that hardcoding SSE4.2 results in poor code
for architectures lacking the feature.

Closes #7287.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix Intel compiler flags for OS X build</title>
<updated>2015-10-15T19:09:24+00:00</updated>
<author>
<name>Chris Hogan</name>
<email>christopher.hogan@intel.com</email>
</author>
<published>2015-10-15T19:09:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=5c0cd1b23e1a6797cf3af04c5c3cfb41312f1750'/>
<id>5c0cd1b23e1a6797cf3af04c5c3cfb41312f1750</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BLD: do not build exclusively for SSE4.2 processors</title>
<updated>2015-10-09T23:42:07+00:00</updated>
<author>
<name>Christoph Gohlke</name>
<email>cgohlke@uci.edu</email>
</author>
<published>2015-10-09T23:42:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=14761c881934b0fbe1955c49a1d3afd73955d7fb'/>
<id>14761c881934b0fbe1955c49a1d3afd73955d7fb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Align with pep8</title>
<updated>2015-09-15T11:35:37+00:00</updated>
<author>
<name>Dmitry Zagorny</name>
<email>dmitry.zagorny@intel.com</email>
</author>
<published>2015-09-14T18:06:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=4287a60ca1a7449063aca75688325bc7f6a5cba4'/>
<id>4287a60ca1a7449063aca75688325bc7f6a5cba4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MSVCCompiler overwrite 'lib' and 'include' environment variables. This</title>
<updated>2015-09-15T11:34:43+00:00</updated>
<author>
<name>Dmitry Zagorny</name>
<email>dmitry.zagorny@intel.com</email>
</author>
<published>2015-09-14T18:03:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=72753bbdf8736a13f1cb60c25cf8683608f46e29'/>
<id>72753bbdf8736a13f1cb60c25cf8683608f46e29</id>
<content type='text'>
behavior affect at least python 3.5 and SciPy build and build failed.
During initialization &lt;python&gt;.distutils.MSVCCompiler replace Intel
environment('include' and 'lib' paths). This fix decorate 'initialize'
function in MSVCCompiler and extend 'lib' and 'include' environment
variables. Changed compilation keys: generate optimized code
specialized for Intel processors with SSE4.2 support.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
behavior affect at least python 3.5 and SciPy build and build failed.
During initialization &lt;python&gt;.distutils.MSVCCompiler replace Intel
environment('include' and 'lib' paths). This fix decorate 'initialize'
function in MSVCCompiler and extend 'lib' and 'include' environment
variables. Changed compilation keys: generate optimized code
specialized for Intel processors with SSE4.2 support.
</pre>
</div>
</content>
</entry>
<entry>
<title>BLD: fix compiler_cxx check failure</title>
<updated>2015-08-21T23:40:57+00:00</updated>
<author>
<name>yolanda15</name>
<email>yolanda15@users.noreply.github.com</email>
</author>
<published>2015-08-21T23:40:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=74bb22cf2de852252f1dc3625eb4a0489d4f4192'/>
<id>74bb22cf2de852252f1dc3625eb4a0489d4f4192</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>STY: fix for PEP8 online check</title>
<updated>2015-08-20T02:53:17+00:00</updated>
<author>
<name>yolanda15</name>
<email>yolanda15@users.noreply.github.com</email>
</author>
<published>2015-08-20T02:53:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e76eb2724f143fbba82dbbf251b1d9417376e6a2'/>
<id>e76eb2724f143fbba82dbbf251b1d9417376e6a2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BLD: add platform check to avoid intel compiler build failure on Linux when importing MSVC</title>
<updated>2015-08-19T01:14:18+00:00</updated>
<author>
<name>yolanda15</name>
<email>yolanda15@users.noreply.github.com</email>
</author>
<published>2015-08-19T01:14:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=facea220d2e31a8e8201f546ad636b754886a88c'/>
<id>facea220d2e31a8e8201f546ad636b754886a88c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix for linux build break with msvc</title>
<updated>2015-08-18T05:32:48+00:00</updated>
<author>
<name>yolanda15</name>
<email>yolanda15@users.noreply.github.com</email>
</author>
<published>2015-08-18T05:32:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=84e39ce41439df1c1f488f76c3b6d3580d858561'/>
<id>84e39ce41439df1c1f488f76c3b6d3580d858561</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
