<?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 Memory question. in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788733#M2026</link>
    <description>Thank you very much for your help.&lt;DIV&gt;At first, I put these functions into the DO statement, which may be a bad habit.&lt;/DIV&gt;&lt;DIV&gt;Now, I put dgetrf and dgetfs into a function and when I use them, I will load the function I write.&lt;/DIV&gt;&lt;DIV&gt;This method works well and the result is correct.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I use R software, which is famous in statistics computing, to test the result.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thank you.&lt;/DIV&gt;</description>
    <pubDate>Tue, 20 Mar 2012 01:37:41 GMT</pubDate>
    <dc:creator>shawnstat</dc:creator>
    <dc:date>2012-03-20T01:37:41Z</dc:date>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788725#M2018</link>
      <description>Hi everybody,&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I met a problem when used the Fortran with MKL to write a program. When the volume of data is small, the function dgetrf and dgetrs, which can get the inverse of matrix , runs well, but as the data become large, say about 12GB, these functions produce strange result.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I used -mcmodel=medium to compile the code and at first sloving inverse of matrix is not based on the data.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Does anybody encounter this problem?&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks&lt;/DIV&gt;</description>
      <pubDate>Mon, 19 Mar 2012 04:49:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788725#M2018</guid>
      <dc:creator>shawnstat</dc:creator>
      <dc:date>2012-03-19T04:49:33Z</dc:date>
    </item>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788726#M2019</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;For large data it's recommended to place them into allocatable buffers. Are they in allocatable memory?&lt;BR /&gt;Also, maybe you need to use ILP64 interfaceof MKL....</description>
      <pubDate>Mon, 19 Mar 2012 06:56:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788726#M2019</guid>
      <dc:creator>barragan_villanueva_</dc:creator>
      <dc:date>2012-03-19T06:56:25Z</dc:date>
    </item>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788727#M2020</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Can you describe the problem in detail? The result from detrf function wasn't correct or you got error message?&lt;BR /&gt;Do you pay attention to return INFO parameter? You can find the following informationfor INFO parameter for dgetrf function in documentation&lt;BR /&gt;&lt;BR /&gt;&lt;P style="padding-left: 40pt;"&gt;* INFO (output) INTEGER&lt;/P&gt;&lt;P style="padding-left: 40pt;"&gt;* = 0: successful exit&lt;/P&gt;&lt;P style="padding-left: 40pt;"&gt;* &amp;lt; 0: if INFO = -i, the i-th argument had an illegal value&lt;/P&gt;&lt;P style="padding-left: 40pt;"&gt;* &amp;gt; 0: if INFO = i, U(i,i) is exactly zero. The factorization&lt;/P&gt;&lt;P style="padding-left: 40pt;"&gt;* has been completed, but the factor U is exactly&lt;/P&gt;&lt;P style="padding-left: 40pt;"&gt;* singular, and division by zero will occur if it is used&lt;/P&gt;&lt;P style="padding-left: 40pt;"&gt;* to solve a system of equations.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2012 07:52:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788727#M2020</guid>
      <dc:creator>Nadezhda_M_Intel</dc:creator>
      <dc:date>2012-03-19T07:52:23Z</dc:date>
    </item>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788728#M2021</link>
      <description>&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;At first, supposing the max of i = 50, I use dgetrf and dgetrs to solve a matrix, dimension 8*8, in a do stetement and return a right result. But when the max of i equals to 7000000, the result is not right.&lt;/DIV&gt;&lt;DIV&gt;However,both dgetrf and dgetrs's INFO are equal to 0.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;For example:&lt;/DIV&gt;&lt;DIV&gt;do i = 1,50&lt;/DIV&gt;&lt;DIV&gt;call dgetrf( n, n, v, n,ipiv,info1)&lt;/DIV&gt;&lt;DIV&gt;call dgetrs( trans,n, n, v, n, ipiv,tt,n,info2)&lt;/DIV&gt;&lt;DIV&gt;end do&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 19 Mar 2012 12:44:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788728#M2021</guid>
      <dc:creator>shawnstat</dc:creator>
      <dc:date>2012-03-19T12:44:14Z</dc:date>
    </item>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788729#M2022</link>
      <description>I used ILP64 interface but it did not work. The result is also wrong.&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;This is my link and compile code:&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV id="_mcePaste"&gt;ifort -i8 -I${MKL_HOME}/include/intel64/ilp64 -I${MKL_HOME}/include -mcmodel=medium -shared-intel Mixfun.f90 MIX.f90 -c&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;ifort -o MIX.out Mixfun.o MIX.o -L${MKL_HOME}/lib/intel64 ${MKL_HOME}/lib/intel64/libmkl_lapack95_ilp64.a -lmkl_intel_ilp64 -lmkl_intel_thread -lmkl_core -openmp -lpthread -mcmodel=medium -shared-intel -lm&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks&lt;/DIV&gt;</description>
      <pubDate>Mon, 19 Mar 2012 12:47:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788729#M2022</guid>
      <dc:creator>shawnstat</dc:creator>
      <dc:date>2012-03-19T12:47:42Z</dc:date>
    </item>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788730#M2023</link>
      <description>How to place the data into allocatable buffers? &lt;DIV&gt;You mean like this:&lt;/DIV&gt;&lt;DIV&gt;real, allocatable :: DataName(:,:,:).&lt;/DIV&gt;&lt;DIV&gt;and read the data.&lt;/DIV&gt;</description>
      <pubDate>Mon, 19 Mar 2012 12:57:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788730#M2023</guid>
      <dc:creator>shawnstat</dc:creator>
      <dc:date>2012-03-19T12:57:04Z</dc:date>
    </item>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788731#M2024</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Could you please share with usyour testcase (MIX.f90 or some small reproducer) to analyze your problem?</description>
      <pubDate>Mon, 19 Mar 2012 13:04:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788731#M2024</guid>
      <dc:creator>barragan_villanueva_</dc:creator>
      <dc:date>2012-03-19T13:04:21Z</dc:date>
    </item>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788732#M2025</link>
      <description>It is not clear from the example where i is used? Probably, there is a typo. Or you ment solving the same sytem 50 times?&lt;BR /&gt;And one more question - how do you know the result is not correct?</description>
      <pubDate>Mon, 19 Mar 2012 13:08:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788732#M2025</guid>
      <dc:creator>Victor_K_Intel1</dc:creator>
      <dc:date>2012-03-19T13:08:32Z</dc:date>
    </item>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788733#M2026</link>
      <description>Thank you very much for your help.&lt;DIV&gt;At first, I put these functions into the DO statement, which may be a bad habit.&lt;/DIV&gt;&lt;DIV&gt;Now, I put dgetrf and dgetfs into a function and when I use them, I will load the function I write.&lt;/DIV&gt;&lt;DIV&gt;This method works well and the result is correct.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I use R software, which is famous in statistics computing, to test the result.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thank you.&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Mar 2012 01:37:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788733#M2026</guid>
      <dc:creator>shawnstat</dc:creator>
      <dc:date>2012-03-20T01:37:41Z</dc:date>
    </item>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788734#M2027</link>
      <description>PS: the ILP interface works well.&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thank you very much.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Shawn&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Mar 2012 01:39:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788734#M2027</guid>
      <dc:creator>shawnstat</dc:creator>
      <dc:date>2012-03-20T01:39:46Z</dc:date>
    </item>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788735#M2028</link>
      <description>Shawn, does that mean there are no problems with big input data you originally indicated?</description>
      <pubDate>Tue, 20 Mar 2012 02:56:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788735#M2028</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2012-03-20T02:56:52Z</dc:date>
    </item>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788736#M2029</link>
      <description>If I don't use the ILP interface, there are some problems about the output,such as nagetive value of a variable which is positive as it is the variance of a sample.But it is OK after using the ILP interface.&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thank you for your help.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Shawn&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 22 Mar 2012 05:14:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788736#M2029</guid>
      <dc:creator>shawnstat</dc:creator>
      <dc:date>2012-03-22T05:14:59Z</dc:date>
    </item>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788737#M2030</link>
      <description>Shawn, I don't know methods how we can check the problem based on this description. as already Victor suggested - would you please give us the testcase for investigation the problem on our side?&lt;DIV&gt;--Gennady&lt;/DIV&gt;</description>
      <pubDate>Thu, 22 Mar 2012 05:27:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788737#M2030</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2012-03-22T05:27:05Z</dc:date>
    </item>
    <item>
      <title>Memory question.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788738#M2031</link>
      <description>Hi,Gennady,&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I will give a description briefly.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;At first ,I need to calculate the inverse of a matrix in DO statements just like below:&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV id="_mcePaste"&gt;do k=1,km&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  do j=1,jm&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt; mtemp0 = tsigma&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  ivm1 = i8&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  call dgetrf( 8, 8, mtemp0, 8,ipiv1,info1)&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  call dgetrs( trans,8,8, mtemp0, 8, ipiv1,ivm1,8,info2)&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  if(info1 /= 0 .OR. info2 /= 0) then&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;   write(*,*) "Sigular Matrix in IVM1."&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  end if&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  mtemp1 = sigma + ivm1&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  ivm2 = i8&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  call dgetrf( 8, 8, mtemp1, 8,ipiv2,info3)&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  call dgetrs( trans,8,8, mtemp1, 8, ipiv2,ivm2,8,info4)&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  if(info3 /= 0 .OR. info4 /= 0) then&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;   write(*,*) "Sigular Matrix in IVM2."&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  end if&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;   do i=1,im &lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  &lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;! some statements in it&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;   end do&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;      &lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  end do&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt; end do&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;########################################&lt;/DIV&gt;&lt;DIV&gt;I used ILP interface to compile and link the code, however, it got some error results.&lt;/DIV&gt;&lt;DIV&gt;Then I modified the code, putting dgetrf and dgetrs into a function.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;The function code list below(I put the function into a module):&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;#######################################&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;function inv(n,m)&lt;/DIV&gt;&lt;DIV&gt;integer n,ipiv(n),info1,info2&lt;/DIV&gt;&lt;DIV&gt;real(kind = 8) :: m(n,n),temp(n,n),inv(n,n)&lt;/DIV&gt;&lt;DIV&gt;call dgetrf( n, n, m, n,ipiv,info1)&lt;/DIV&gt;&lt;DIV&gt;temp = i8&lt;/DIV&gt;&lt;DIV&gt;call dgetrs(trans, n, n, m,n, ipiv,temp,n,info2)&lt;/DIV&gt;&lt;DIV&gt;if(info1 /= 0 .AND. info2 /=0) then&lt;/DIV&gt;&lt;DIV&gt;write(*,*) "Sigular matrix in sigma!!"&lt;/DIV&gt;&lt;DIV&gt;end if&lt;/DIV&gt;&lt;DIV&gt;inv = temp&lt;/DIV&gt;&lt;DIV&gt;end function inv&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;########################################&lt;/DIV&gt;&lt;DIV&gt;PS: i8 is an&lt;SPAN style="color: #333333; font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 21px;"&gt;identity matrix of dimension 8*8&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333; font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 21px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333; font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 21px;"&gt;At last I changed the code in the DO statments:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333; font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 21px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333; font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 21px;"&gt;##################################################&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV id="_mcePaste"&gt;do k=1,km&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  do j=1,jm&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;ivm1 = inv(8,tsigma)&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;mtemp1 = sigma + ivm1 &lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;vb = inv(8,mtemp1)&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt; ....&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt; ....&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;   do i=1,im &lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  &lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;! some statements in it&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;   end do&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;      &lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;  end do&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt; end do&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333; font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 21px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: Arial, Helvetica, sans-serif; color: #333333;"&gt;&lt;SPAN style="font-size: 14px; line-height: 21px;"&gt;###############################&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt;&lt;SPAN style="font-size: 14px; line-height: 21px;"&gt;My compile and link statements are on the #4&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt;&lt;SPAN style="font-size: 14px; line-height: 21px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 26 Mar 2012 04:45:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-question/m-p/788738#M2031</guid>
      <dc:creator>shawnstat</dc:creator>
      <dc:date>2012-03-26T04:45:36Z</dc:date>
    </item>
  </channel>
</rss>

