<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic The changes in the update are in Intel® Distribution for Python*</title>
    <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079276#M265</link>
    <description>&lt;P&gt;The changes in the update are not specific to any particular version of Python, or to the platform. Updates were posted for all platforms, and for both Python 2.7 and Python 3.5&lt;/P&gt;</description>
    <pubDate>Thu, 20 Apr 2017 19:00:35 GMT</pubDate>
    <dc:creator>Oleksandr_P_Intel</dc:creator>
    <dc:date>2017-04-20T19:00:35Z</dc:date>
    <item>
      <title>cumsum error on large float arrays</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079259#M248</link>
      <description>Hi,

We've run into some inconsistencies when calculating the cumulative sum for large float arrays with numpy.cumsum, which doesn't seem to happen with Anaconda's default (non-Intel) distribution.
When the array is longer than about 110,000 points, the result of the 3rd item in the list is already wrong. This doesn't happen with a vector that's only 100,000 points long. I'm pasting the code and some results comparing the intel distribution and default distribution. At first, I thought the problem could be resolved by pre-allocating the memory space and use the "out" argument, because the 3rd item in the list is still correctly calculated, but the end of the array is still wrong. We've also got some trouble with the numpy.unwrap function in the intel distribution, again on large arrays, but I'm still trying to get a consistent example.

Are there specific options in the intel distribution for setting precision that could influence this?

Below is some code with results in comments, showing the differences between the intel distribution and the anaconda distribution. Any help or suggestions here would be appreciated!

Regards

Michael

------

&lt;PRE class="brush:python"&gt;import numpy as np
xx=np.arange(1000000)*.1
yyy=np.cumsum(xx)
yyy
''' without intel distribution
array([  0.00000000e+00,   1.00000000e-01,   3.00000000e-01, ...,
         4.99997500e+10,   4.99998500e+10,   4.99999500e+10])
'''
''' with intel distribution
array([  0.00000000e+00,   1.00000000e-01,   2.00000000e-01, ...,
         1.99999300e+05,   9.99998000e+04,   9.99999000e+04])
'''


xx=np.arange(1000000)*.1
yy=xx
np.cumsum(xx,out=yy)
yy
''' without intel distribution
array([  0.00000000e+00,   1.00000000e-01,   3.00000000e-01, ...,
         4.99997500e+10,   4.99998500e+10,   4.99999500e+10])
'''
''' with intel distribution
array([  0.00000000e+00,   1.00000000e-01,   3.00000000e-01, ...,
         2.99998800e+05,   1.99999500e+05,   1.99999700e+05])
'''


xx=np.arange(100000)*.1
yy=xx
np.cumsum(xx,out=yy)
yy
''' with intel distribution
array([  0.00000000e+00,   1.00000000e-01,   3.00000000e-01, ...,
         4.99975000e+08,   4.99985000e+08,   4.99995000e+08])
'''
''' without intel distribution
array([  0.00000000e+00,   1.00000000e-01,   3.00000000e-01, ...,
         4.99975000e+08,   4.99985000e+08,   4.99995000e+08])
'''
&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Apr 2017 08:46:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079259#M248</guid>
      <dc:creator>Michael_R_1</dc:creator>
      <dc:date>2017-04-10T08:46:13Z</dc:date>
    </item>
    <item>
      <title>Hi Michael, </title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079260#M249</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Hi Michael,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;I've attempted this on two different systems, and have been unable to produce your issue. &amp;nbsp;Could you give us some more details on the conda, numpy, and python versions, in addition to the hardware configuration(s) you are on?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;David&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2017 19:00:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079260#M249</guid>
      <dc:creator>DavidLiu</dc:creator>
      <dc:date>2017-04-10T19:00:33Z</dc:date>
    </item>
    <item>
      <title>Hi David,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079261#M250</link>
      <description>&lt;P&gt;Hi David,&lt;/P&gt;

&lt;P&gt;Interesting. We're seeing the same error on three different computers: one surface pro 4, one desktop i7-7700, and one gigabyte laptop, i7-4710HQ, each with win10 Home-x64, and the following python packages: python 3.5.2, numpy 1.11.2, conda 4.3.14, intelpython 2017.0.2.&lt;/P&gt;

&lt;P&gt;The computers have different amounts of ram (16gb-64gb), and for each of them we followed the straightforward intel python distribution as described here (https://software.intel.com/en-us/articles/using-intel-distribution-for-python-with-anaconda), after installing anaconda.&lt;/P&gt;

&lt;P&gt;This is running in the IPython shell, via spyder, same error if I run on the Python console (the latter one starts up saying "Python 3.5.2 |Intel Corporation| (default, Feb &amp;nbsp;5 2017, 02:57:01) [MSC v.1900 64 bit (AMD64)] on win32...".&lt;/P&gt;

&lt;P&gt;Michael&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 02:12:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079261#M250</guid>
      <dc:creator>Michael_R_1</dc:creator>
      <dc:date>2017-04-11T02:12:52Z</dc:date>
    </item>
    <item>
      <title>Hi David and Michael,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079262#M251</link>
      <description>&lt;P&gt;Hi David and Michael,&lt;/P&gt;

&lt;P&gt;I was curious about this issue and I could&amp;nbsp;&lt;SPAN style="font-size: 1em;"&gt;reproduce the problem Michael reports on macOS El Capitan, on a MacBook Pro powered by the following Intel CPU: &lt;/SPAN&gt;&lt;SPAN style="font-size: 1em;"&gt;Intel® Core™ i5-4278U Processor. The results are different as Michel reports in his explanation.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 04:00:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079262#M251</guid>
      <dc:creator>gaston-hillar</dc:creator>
      <dc:date>2017-04-11T04:00:16Z</dc:date>
    </item>
    <item>
      <title>Hi David and Michael,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079263#M252</link>
      <description>&lt;P&gt;Hi David and Michael,&lt;/P&gt;

&lt;P&gt;I used the default Python version that comes installed with macOS El Capitan, which is Python 2.7.10.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 04:02:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079263#M252</guid>
      <dc:creator>gaston-hillar</dc:creator>
      <dc:date>2017-04-11T04:02:29Z</dc:date>
    </item>
    <item>
      <title>Hi David and Michael,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079264#M253</link>
      <description>&lt;P&gt;Hi David and Michael,&lt;/P&gt;

&lt;P&gt;Not sure whether it helps or not. However, I also executed the code on the following console provided by PythonAnywhere (&lt;A href="https://www.pythonanywhere.com/try-ipython/"&gt;https://www.pythonanywhere.com/try-ipython/&lt;/A&gt;), and you can see the output is the same one that Michael reports and it is different than the results generated by the Intel distribution.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 04:04:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079264#M253</guid>
      <dc:creator>gaston-hillar</dc:creator>
      <dc:date>2017-04-11T04:04:41Z</dc:date>
    </item>
    <item>
      <title>Hi David and Michael,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079265#M254</link>
      <description>&lt;P&gt;Hi David and Michael,&lt;/P&gt;

&lt;P&gt;I executed the first example Michael reported on&amp;nbsp;&lt;SPAN style="font-size: 1em;"&gt;a Windows 10 laptop powered by an Intel Core i7-6700HQ CPU. The results do not have the differences that Michael reported. So, Intel Distribution for Python produces a different result on macOS / Windows or on the different CPUs. Not sure which is the issue. In this case, the Intel Distribution for Python produces the same results than Python 3.5.2 (not Intel).&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Python 3.5.2 (64-bit), non Intel distribution produces the results that Michael has reported.&lt;/P&gt;

&lt;P&gt;Sample output:&lt;/P&gt;

&lt;PRE class="brush:plain;"&gt;Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
&amp;gt;&amp;gt;&amp;gt; import numpy as np
&amp;gt;&amp;gt;&amp;gt; xx=np.arange(1000000)*.1
&amp;gt;&amp;gt;&amp;gt; yyy=np.cumsum(xx)
&amp;gt;&amp;gt;&amp;gt; yyy
array([  0.00000000e+00,   1.00000000e-01,   3.00000000e-01, ...,
         4.99997500e+10,   4.99998500e+10,   4.99999500e+10])
&amp;gt;&amp;gt;&amp;gt;&lt;/PRE&gt;

&lt;P&gt;The same coded executed on Intel Distribution for Python produces the following output. No different from the previous output but different from the results reported by Michael.&lt;/P&gt;

&lt;PRE class="brush:plain;"&gt;Python 3.5.2 |Intel Corporation| (default, Feb  5 2017, 02:57:01) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
Intel(R) Distribution for Python is brought to you by Intel Corporation.
Please check out: &lt;A href="https://software.intel.com/en-us/python-distribution" target="_blank"&gt;https://software.intel.com/en-us/python-distribution&lt;/A&gt;
&amp;gt;&amp;gt;&amp;gt; import numpy as np
&amp;gt;&amp;gt;&amp;gt; xx=np.arange(1000000)*.1
&amp;gt;&amp;gt;&amp;gt; yyy=np.cumsum(xx)
&amp;gt;&amp;gt;&amp;gt; yyy
array([  0.00000000e+00,   1.00000000e-01,   3.00000000e-01, ...,
         4.99997500e+10,   4.99998500e+10,   4.99999500e+10])&lt;/PRE&gt;

&lt;P&gt;So, Michael, it would be great if you can share OS and hardware info.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 04:36:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079265#M254</guid>
      <dc:creator>gaston-hillar</dc:creator>
      <dc:date>2017-04-11T04:36:42Z</dc:date>
    </item>
    <item>
      <title>Michael,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079266#M255</link>
      <description>&lt;P&gt;Michael,&lt;/P&gt;

&lt;P&gt;I hadn't seen your message in which you described the hardware... So, forget about my last lines in which I was suggesting you to provide hardware info. :)&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 04:39:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079266#M255</guid>
      <dc:creator>gaston-hillar</dc:creator>
      <dc:date>2017-04-11T04:39:08Z</dc:date>
    </item>
    <item>
      <title>Hi Gaston,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079267#M256</link>
      <description>Hi Gaston,

Thanks for that. Very strange. I'm not seeing any pattern yet. How did you install the intel distribution for your last post? Simply Anaconda, then intel distribution followed possibly by updates? We followed that procedure for each of the three computers we're using here, all three with the same problem when using the intel distribution.

I've updated in the meantime to conda 4.3.16, same problem still.

Cheers,

Michael</description>
      <pubDate>Tue, 11 Apr 2017 06:04:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079267#M256</guid>
      <dc:creator>Michael_R_1</dc:creator>
      <dc:date>2017-04-11T06:04:00Z</dc:date>
    </item>
    <item>
      <title>Hello everybody,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079268#M257</link>
      <description>&lt;P&gt;Hello everybody,&lt;/P&gt;

&lt;P&gt;Intel engineers reproduced the error which appears to be related to how numpy computes cumulative sum. Our recent numpy optimizations did not take into account that. Interestingly internal tests did not reveal this issue during validation.&lt;/P&gt;

&lt;P&gt;Engineers will report soon whether they see&amp;nbsp;the workaround.&lt;/P&gt;

&lt;P&gt;Sorry about that,&lt;/P&gt;

&lt;P&gt;Sergey&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 12:35:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079268#M257</guid>
      <dc:creator>Sergey_M_Intel2</dc:creator>
      <dc:date>2017-04-11T12:35:21Z</dc:date>
    </item>
    <item>
      <title>Quote:Michael Roelens wrote:</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079269#M258</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Michael Roelens wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hi Gaston,&lt;/P&gt;

&lt;P&gt;Thanks for that. Very strange. I'm not seeing any pattern yet. How did you install the intel distribution for your last post? Simply Anaconda, then intel distribution followed possibly by updates? We followed that procedure for each of the three computers we're using here, all three with the same problem when using the intel distribution.&lt;/P&gt;

&lt;P&gt;I've updated in the meantime to conda 4.3.16, same problem still.&lt;/P&gt;

&lt;P&gt;Cheers,&lt;/P&gt;

&lt;P&gt;Michael&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Michael, I've used the installation provided by Intel for Windows to install Intel Distribution for Python on Windows 10.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 14:13:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079269#M258</guid>
      <dc:creator>gaston-hillar</dc:creator>
      <dc:date>2017-04-11T14:13:38Z</dc:date>
    </item>
    <item>
      <title>Dear Michael, </title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079270#M259</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Dear Michael,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thank you very much for taking the time to bring this to our attention. We reproduced the problem, and it affects universal functions applied to large arrays of doubles, floats, or corresponding complexes.&lt;/P&gt;

&lt;P&gt;`np.cumsum` is the chief mainstream operation affected, although non-standard uses of any universal functions can be affected.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Regrettably, there is no setting within numpy to work around the issue. Chunking the array using slices, and applying the function to these chunks comes to mind, but this is too much to ask.&lt;/P&gt;

&lt;P&gt;We are working to provide a hotfix.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;The `np.unwrap` is affected because it uses `np.cumsum` underneath.&lt;/P&gt;

&lt;P&gt;Our release process relies on community tests for validation, but evidently no test exercised the culprit optimization code we added.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I will announce the hotfix on this thread as soon as it becomes available.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thank you for your understanding,&lt;BR /&gt;
	Oleksandr&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 14:36:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079270#M259</guid>
      <dc:creator>Oleksandr_P_Intel</dc:creator>
      <dc:date>2017-04-11T14:36:18Z</dc:date>
    </item>
    <item>
      <title>Hi Oleksandr and Sergey,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079271#M260</link>
      <description>Hi Oleksandr and Sergey,

I'm very impressed by how quickly you responded and figured out what's going wrong. Thanks for confirming, and looking forward to the hotfix!

Kind regards,

Michael</description>
      <pubDate>Wed, 12 Apr 2017 02:35:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079271#M260</guid>
      <dc:creator>Michael_R_1</dc:creator>
      <dc:date>2017-04-12T02:35:40Z</dc:date>
    </item>
    <item>
      <title>Hi Michael, </title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079272#M261</link>
      <description>&lt;P&gt;Hi Michael,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I am happy to report that the fix for this issue has been posted. Please try updating NumPy in the distribution by running&lt;/P&gt;

&lt;PRE class="brush:;"&gt; conda update -c intel numpy&lt;/PRE&gt;

&lt;P&gt;This should fix the issue underlying the observed erroneous behavior.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2017 05:01:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079272#M261</guid>
      <dc:creator>Oleksandr_P_Intel</dc:creator>
      <dc:date>2017-04-20T05:01:03Z</dc:date>
    </item>
    <item>
      <title>Hi Oleksandr,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079273#M262</link>
      <description>&lt;P&gt;Hi Oleksandr,&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Thanks a lot for that. I had to uninstall intelpython3_core/full (2017.0.2) to be able to install the 1.11.3 version of numpy here though, because conda said the two weren't compatible at the moment. But the updated package does indeed fix the cumsum problem.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Kinda makes me wonder: what is the intelpython3_core or full package needed for? Is it some kind of wrapper that contains a bunch of packages?&lt;/P&gt;

&lt;P&gt;Thank again, for the quick fix!&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Michael&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2017 06:39:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079273#M262</guid>
      <dc:creator>Michael_R_1</dc:creator>
      <dc:date>2017-04-20T06:39:54Z</dc:date>
    </item>
    <item>
      <title>Michael,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079274#M263</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Michael,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;You are essentially correct. The intelpython3_core package is a "metapackage": it contains no files of its own, but rather collects a set of other packages into a named unit for ease of installation. When you install a particular version of "intelpython3_core" or "intelpython3_full", you will get all the packages we released.&lt;/P&gt;

&lt;P&gt;There should be no need for you to manually uninstall it. I will check the update logic to be certain it is working as expected.&lt;/P&gt;

&lt;P&gt;Todd&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2017 12:27:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079274#M263</guid>
      <dc:creator>Todd_T_Intel</dc:creator>
      <dc:date>2017-04-20T12:27:23Z</dc:date>
    </item>
    <item>
      <title>@Oleksandr,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079275#M264</link>
      <description>&lt;P&gt;@Oleksandr,&lt;/P&gt;

&lt;P&gt;Should I run this update on Intel Distribution for Python 3.5.2, too, or is it only necessary to run it for &lt;SPAN style="font-size: 13.008px;"&gt;Intel Distribution for&amp;nbsp;&lt;/SPAN&gt;Python 2.7? I'm working with both versions on Windows, macOS and Linux.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2017 17:02:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079275#M264</guid>
      <dc:creator>gaston-hillar</dc:creator>
      <dc:date>2017-04-20T17:02:44Z</dc:date>
    </item>
    <item>
      <title>The changes in the update are</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079276#M265</link>
      <description>&lt;P&gt;The changes in the update are not specific to any particular version of Python, or to the platform. Updates were posted for all platforms, and for both Python 2.7 and Python 3.5&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2017 19:00:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079276#M265</guid>
      <dc:creator>Oleksandr_P_Intel</dc:creator>
      <dc:date>2017-04-20T19:00:35Z</dc:date>
    </item>
    <item>
      <title>The problem with the</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079277#M266</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;The problem with the intelpython3_core &amp;nbsp;package saying there was a conflict when attempting to update to the repaired numpy should be fixed.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Sorry for the trouble.&lt;/P&gt;

&lt;P&gt;Todd&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2017 20:10:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079277#M266</guid>
      <dc:creator>Todd_T_Intel</dc:creator>
      <dc:date>2017-04-20T20:10:56Z</dc:date>
    </item>
    <item>
      <title>@Oleksandr,</title>
      <link>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079278#M267</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;@Oleksandr,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;Thanks for clarification. I've successfully updated all my versions.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 01:24:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-for-Python/cumsum-error-on-large-float-arrays/m-p/1079278#M267</guid>
      <dc:creator>gaston-hillar</dc:creator>
      <dc:date>2017-04-21T01:24:07Z</dc:date>
    </item>
  </channel>
</rss>

