<?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 updating a QR decomposition in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/updating-a-QR-decomposition/m-p/789228#M2062</link>
    <description>Hi Victor,&lt;BR /&gt;&lt;BR /&gt;Yes indeed that's what I need to do. The algorithm for this same idea is described in the paper below, section 2.3.1:&lt;BR /&gt;&lt;A href="http://eprints.ma.man.ac.uk/1192/01/covered/MIMS_ep2008_111.pdf" target="_blank"&gt;http://eprints.ma.man.ac.uk/1192/01/covered/MIMS_ep2008_111.pdf&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;It will definitely beat recomputing the full QR from scratch each time which is what I am doing now. Do you know of any third party implementation of this algorithm "Add one row" using givens rotations in C or Fortran? &lt;BR /&gt;&lt;BR /&gt;Many thanks in advance,&lt;BR /&gt;Best regards,&lt;BR /&gt;Giovanni</description>
    <pubDate>Tue, 27 Mar 2012 10:55:20 GMT</pubDate>
    <dc:creator>Azua_Garcia__Giovann</dc:creator>
    <dc:date>2012-03-27T10:55:20Z</dc:date>
    <item>
      <title>updating a QR decomposition</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/updating-a-QR-decomposition/m-p/789226#M2060</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I currently use the function LAPACKE_dgeqrf to compute the full QR decomposition of a matrix A, and this is done as part of an iterative algorithm that keeps appending new rows to A in every iteration. &lt;BR /&gt;&lt;BR /&gt;Is there a function (or combination of functions) in MKL that will allow me to update the previously computed QR factorization whenever I update A with a new row rather than building QR it from scratch each time?&lt;BR /&gt;&lt;BR /&gt;I could not figure out from the manual what the right function would be ... &lt;BR /&gt;&lt;BR /&gt;Many thanks in advance,&lt;BR /&gt;Best regards,&lt;BR /&gt;Giovanni&lt;BR /&gt;</description>
      <pubDate>Sun, 18 Mar 2012 21:02:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/updating-a-QR-decomposition/m-p/789226#M2060</guid>
      <dc:creator>Azua_Garcia__Giovann</dc:creator>
      <dc:date>2012-03-18T21:02:23Z</dc:date>
    </item>
    <item>
      <title>updating a QR decomposition</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/updating-a-QR-decomposition/m-p/789227#M2061</link>
      <description>Hi Giovanni,&lt;BR /&gt;&lt;BR /&gt;I try to guess what you need and below is my understanding.&lt;BR /&gt;So, you do&lt;BR /&gt;A=Q*R&lt;BR /&gt;&lt;BR /&gt;A1=(R )&lt;BR /&gt;(a1)&lt;BR /&gt;A1=Q1*R2&lt;BR /&gt;&lt;BR /&gt;A2=(R2)&lt;BR /&gt; (a2)&lt;BR /&gt;A2=Q2*R3&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;At each step the matrix is appened from below with one additional line. Applying QR factorization we get a new upper triangular matrix and repeat the process again and again.&lt;BR /&gt;I guess you are looking for the function to make a QR factorization of matrices that appear at each step - upper triangular matrices appended from below with one additional row, right?&lt;BR /&gt;&lt;BR /&gt;Unfortunately, there is no special functionality in MKL LAPACK to solve this task. &lt;BR /&gt;However, you canwrite the code based on rotations (combination of DROTMG and DROTM) that will get you the result. The idea is simple - elements of the last row should be anihilated one after each other.First, the element in the first column should be zeroed by applying rotations to the first row and the last row. Second, the element in the second column to be zeroed by applying rotation to the second and the last row, and so on.&lt;BR /&gt;I'm affraid the code won't be very fast, though.&lt;BR /&gt;&lt;BR /&gt;WBR&lt;BR /&gt;Victor&lt;BR /&gt;</description>
      <pubDate>Thu, 22 Mar 2012 07:51:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/updating-a-QR-decomposition/m-p/789227#M2061</guid>
      <dc:creator>Victor_K_Intel1</dc:creator>
      <dc:date>2012-03-22T07:51:52Z</dc:date>
    </item>
    <item>
      <title>updating a QR decomposition</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/updating-a-QR-decomposition/m-p/789228#M2062</link>
      <description>Hi Victor,&lt;BR /&gt;&lt;BR /&gt;Yes indeed that's what I need to do. The algorithm for this same idea is described in the paper below, section 2.3.1:&lt;BR /&gt;&lt;A href="http://eprints.ma.man.ac.uk/1192/01/covered/MIMS_ep2008_111.pdf" target="_blank"&gt;http://eprints.ma.man.ac.uk/1192/01/covered/MIMS_ep2008_111.pdf&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;It will definitely beat recomputing the full QR from scratch each time which is what I am doing now. Do you know of any third party implementation of this algorithm "Add one row" using givens rotations in C or Fortran? &lt;BR /&gt;&lt;BR /&gt;Many thanks in advance,&lt;BR /&gt;Best regards,&lt;BR /&gt;Giovanni</description>
      <pubDate>Tue, 27 Mar 2012 10:55:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/updating-a-QR-decomposition/m-p/789228#M2062</guid>
      <dc:creator>Azua_Garcia__Giovann</dc:creator>
      <dc:date>2012-03-27T10:55:20Z</dc:date>
    </item>
  </channel>
</rss>

