<?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 factorization usage from another context in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821628#M4828</link>
    <description>That would be really helpful,&lt;BR /&gt;&lt;BR /&gt;My name is Umut Tabak, I am a Phd researcher at Delft University of Technology in the Netherlands. I conduct on research on model reduction for multiphysical problems. I am developing an in-house code to test industrial benchmark problems where Phillips is also interested in order to analyze their MRI scanner models with this code, not now but in the near future, hopefully, so Intel MKL will be tested on challenging engineering design problems.&lt;BR /&gt;&lt;BR /&gt;Is this information enough to be able to add this important but missing information/feature to PARDISO?&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Umut</description>
    <pubDate>Fri, 20 May 2011 13:03:47 GMT</pubDate>
    <dc:creator>utab</dc:creator>
    <dc:date>2011-05-20T13:03:47Z</dc:date>
    <item>
      <title>factorization usage from another context</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821620#M4820</link>
      <description>&lt;P&gt;Dear all,&lt;BR /&gt;&lt;BR /&gt;I would like to use the linear solver PARDISO as the linear solver in my custom Lanczos eigenvalue solver.This is certainly possible and then, I would like to use this factorized matrix in some other context. As an example scenario to keep things simple, say I have a LAnczos routine to solve the eigenvalue problem where I use A and B matrices, for the generalized eigenvalue problem, as inputs to the Lanczos solver, if I do a solve inside this routine by taking a reference to A, how may I use these factors outside the routine is there a way to accomplish this task? I would like to use the factorization information from these eigensolver in another context, but what would be the best stragety for this task?&lt;BR /&gt;&lt;BR /&gt;I appreciate comments.&lt;BR /&gt;Umut&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2011 16:45:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821620#M4820</guid>
      <dc:creator>utab</dc:creator>
      <dc:date>2011-05-16T16:45:46Z</dc:date>
    </item>
    <item>
      <title>factorization usage from another context</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821621#M4821</link>
      <description>&lt;P&gt;Dear Umit,&lt;/P&gt;&lt;P&gt;PARDISO doesnt provide LU or LDL^t factors. But you can solve system separately. To solve Ly=b you should use phase=331; to solve Ux=y please use phase=333. If you have symmetric positive indefinite system, i.e. LDL^tx=b, so you can solve Lz=b (phase=331), Dy=z (phase=332) and L^tx=z (phase=333). &lt;/P&gt;&lt;P&gt;What type of system do you have? (Symmetric or unsymmetric, positive definite or indefinite, real or complex). And what operations do you want to do with it? If you have symmetric indefinite system, is it enough to get the diagonal elements or just number of positive and negative elements? &lt;BR /&gt;&lt;BR /&gt;Sergey S.&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2011 04:56:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821621#M4821</guid>
      <dc:creator>Sergey_Solovev__Inte</dc:creator>
      <dc:date>2011-05-17T04:56:24Z</dc:date>
    </item>
    <item>
      <title>factorization usage from another context</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821622#M4822</link>
      <description>What I would like to do is to use the factors, L U, in a Conjugate Gradient context as my preconditioner so in MATLAB sense&lt;BR /&gt;&lt;BR /&gt;U \ ( L \ b) &lt;BR /&gt;&lt;BR /&gt;if you are familiar. I do not have to get them in factored for LU.&lt;BR /&gt;&lt;BR /&gt;In mathematical sense I would like to solve a linear system in another but the operator matrix is the same as the above and these factors might help.&lt;BR /&gt;&lt;BR /&gt;However as far as I could understand PARDISO does not give me the chance to use these factors outside of a solution process, are not there any options to keep the factors in memory for later use, this is what I am looking for?&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;Umut&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 17 May 2011 09:07:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821622#M4822</guid>
      <dc:creator>utab</dc:creator>
      <dc:date>2011-05-17T09:07:40Z</dc:date>
    </item>
    <item>
      <title>factorization usage from another context</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821623#M4823</link>
      <description>&lt;DL&gt;&lt;DD&gt;To factorize matrix M (M=LU), you can use PARDISO. LU factors and other info are stored in internal PARDISO structures. Pointers to these structures are stored in PARDISO handle h(1,,64). So, if you want to solve Ly=b or Ux=y in another routine, you should to use PARDISO with current handle inside this routine. Unfortunately, PARDISO doesnt have possibility of handle dumping to hard disc. So, you cannot stop the task and restart it with old handle (with old LU factors). Anyway, we have such feature request (store/restore PARDISO handle).&lt;BR /&gt;&lt;BR /&gt;Best regards, &lt;BR /&gt;Sergey S.&lt;/DD&gt;&lt;/DL&gt;</description>
      <pubDate>Wed, 18 May 2011 10:03:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821623#M4823</guid>
      <dc:creator>Sergey_Solovev__Inte</dc:creator>
      <dc:date>2011-05-18T10:03:33Z</dc:date>
    </item>
    <item>
      <title>factorization usage from another context</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821624#M4824</link>
      <description>Hi from your explanation&lt;BR /&gt;&lt;BR /&gt;++ To factorize matrix M (M=LU), you can use PARDISO. LU factors and
other info are stored in internal PARDISO structures. Pointers to these
structures are stored in PARDISO handle h(1,,64).&lt;BR /&gt;&lt;BR /&gt;Is this possible to return these handles by reference in another context, if yes could you please point me to an example?&lt;BR /&gt;&lt;BR /&gt;And &lt;BR /&gt;&lt;BR /&gt;++So, if you want to solve Ly=b or Ux=y in another routine, you should to use PARDISO with current handle inside this routine.&lt;BR /&gt;&lt;BR /&gt;This sentence is not clear to me basically __ in another routine ___ and __ use PARDISO with current handle inside this routine __ what do you mean with these two, could you please make that more clear with an example perhaps, that would really help then, because I am stilll not clear on whether this is possible or not?&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Umut&lt;BR /&gt;</description>
      <pubDate>Wed, 18 May 2011 10:19:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821624#M4824</guid>
      <dc:creator>utab</dc:creator>
      <dc:date>2011-05-18T10:19:25Z</dc:date>
    </item>
    <item>
      <title>factorization usage from another context</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821625#M4825</link>
      <description>&lt;P&gt;Could you clarify, what do you mean when say another context?&lt;BR /&gt;I prepared the simple example. I hope it will help:&lt;BR /&gt;&lt;EM&gt;&lt;BR /&gt;programtest&lt;BR /&gt;INTEGER*8 pt(64)&lt;BR /&gt;&lt;BR /&gt;call routine_1(pt,.) ! reordering and factorizing in routine_1&lt;BR /&gt;&lt;BR /&gt;do =1,n ! some iterative process&lt;BR /&gt; ...&lt;BR /&gt; call routine_2(pt,.) ! solvingphasein routine_3&lt;BR /&gt;enddo&lt;BR /&gt;end&lt;BR /&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;subroutine routine_1(pt,.)&lt;BR /&gt;INTEGER*8 pt(*)&lt;BR /&gt;&lt;BR /&gt;phase=11&lt;BR /&gt;call pardiso(pt,)&lt;BR /&gt;&lt;BR /&gt;phase=22&lt;BR /&gt;call pardiso(pt,)&lt;BR /&gt;return&lt;BR /&gt;end&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;subroutine routine_2(pt,.)&lt;BR /&gt;INTEGER*8 pt(*)&lt;BR /&gt;&lt;BR /&gt;phase=33&lt;BR /&gt;call pardiso(pt,)&lt;BR /&gt;return&lt;BR /&gt;end&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;Best regards,&lt;BR /&gt;Sergey S&lt;/P&gt;</description>
      <pubDate>Thu, 19 May 2011 14:42:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821625#M4825</guid>
      <dc:creator>Sergey_Solovev__Inte</dc:creator>
      <dc:date>2011-05-19T14:42:44Z</dc:date>
    </item>
    <item>
      <title>factorization usage from another context</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821626#M4826</link>
      <description>Sure,&lt;BR /&gt;&lt;BR /&gt;Ax = b&lt;BR /&gt;&lt;BR /&gt;Solve for x in a routine and use the factrized A in another routine&lt;BR /&gt;&lt;BR /&gt;routine_1(A, b0, x, factorA)&lt;BR /&gt;solve for x&lt;BR /&gt;store factorA // this is my question&lt;BR /&gt;return the factor from the function&lt;BR /&gt;&lt;BR /&gt;use that in another function, as such&lt;BR /&gt;&lt;BR /&gt;routine_2(factorA, b1, x)&lt;BR /&gt;using the factorA from the first routine solve for x for a different right hand side&lt;BR /&gt;&lt;BR /&gt;I hope it is clear now.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 19 May 2011 18:54:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821626#M4826</guid>
      <dc:creator>utab</dc:creator>
      <dc:date>2011-05-19T18:54:35Z</dc:date>
    </item>
    <item>
      <title>factorization usage from another context</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821627#M4827</link>
      <description>&lt;P&gt;Ok, I see. I have an additional remark:&lt;/P&gt;&lt;P&gt;It is possible to use factorizing and solving in the same program (test1.exe):&lt;BR /&gt;&lt;EM&gt;Program test1&lt;BR /&gt;routine_1(A, b0, x, factorA) ! factorizing&lt;BR /&gt;routine_2(factorA, b1, x) ! solving&lt;BR /&gt;end program test1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;It isnt possible to use factorizing and solving in the different programs (test1.exe and test2.exe):&lt;BR /&gt;&lt;EM&gt;Program test1&lt;BR /&gt;routine_1(A, b0, x, factorA) ! factorizing&lt;BR /&gt;end program test1&lt;BR /&gt;Program test2&lt;BR /&gt;routine_2(factorA, b1, x) ! solving&lt;BR /&gt;end program test1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;It isnt possible because store factorA (to hard disk) isnt implemented yet. We have such feature request. If you provide us with info about you, weadd this info into our request. &lt;/P&gt;</description>
      <pubDate>Fri, 20 May 2011 07:15:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821627#M4827</guid>
      <dc:creator>Sergey_Solovev__Inte</dc:creator>
      <dc:date>2011-05-20T07:15:45Z</dc:date>
    </item>
    <item>
      <title>factorization usage from another context</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821628#M4828</link>
      <description>That would be really helpful,&lt;BR /&gt;&lt;BR /&gt;My name is Umut Tabak, I am a Phd researcher at Delft University of Technology in the Netherlands. I conduct on research on model reduction for multiphysical problems. I am developing an in-house code to test industrial benchmark problems where Phillips is also interested in order to analyze their MRI scanner models with this code, not now but in the near future, hopefully, so Intel MKL will be tested on challenging engineering design problems.&lt;BR /&gt;&lt;BR /&gt;Is this information enough to be able to add this important but missing information/feature to PARDISO?&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Umut</description>
      <pubDate>Fri, 20 May 2011 13:03:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821628#M4828</guid>
      <dc:creator>utab</dc:creator>
      <dc:date>2011-05-20T13:03:47Z</dc:date>
    </item>
    <item>
      <title>factorization usage from another context</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821629#M4829</link>
      <description>Ok, thank you,&lt;BR /&gt;&lt;P class="MsoNormal" style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN lang="EN-US" style="font-family: " verdana=""&gt;we have added your info into our request&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="mso-ansi-language: EN-US;"&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Sergey Solovev</description>
      <pubDate>Tue, 24 May 2011 07:31:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/factorization-usage-from-another-context/m-p/821629#M4829</guid>
      <dc:creator>Sergey_Solovev__Inte</dc:creator>
      <dc:date>2011-05-24T07:31:55Z</dc:date>
    </item>
  </channel>
</rss>

