<?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 Petros, This is simply a note in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964356#M16121</link>
    <description>&lt;P&gt;Petros, This is simply a note: I don't have &lt;STRONG&gt;Boost&lt;/STRONG&gt; library on any computers around me. Sorry about this.&lt;/P&gt;</description>
    <pubDate>Thu, 23 May 2013 00:54:00 GMT</pubDate>
    <dc:creator>SergeyKostrov</dc:creator>
    <dc:date>2013-05-23T00:54:00Z</dc:date>
    <item>
      <title>non-linear optimization: jacobi_solve question</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964350#M16115</link>
      <description>&lt;P&gt;I have tried to use the same _JACOBIMATRIX_HANDLE_t to make evaluations of the jacobian at successive iteration points of the optimizer,&lt;/P&gt;
&lt;P&gt;but the output matrix (fjac) is not getting updated.&lt;/P&gt;
&lt;P&gt;I created an example, that isolates the issue and this does not seem to be possible. Am I correct ?&lt;/P&gt;
&lt;P&gt;If yes, is there something I could do to "reset" the handle ? It would seem to me that this would be the desirable behavior, so that repeated initializaions of the handle and buffers are avoided.&lt;/P&gt;
&lt;P&gt;TIA for your help,&lt;/P&gt;
&lt;P&gt;Petros&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;ps: I attach the file. It is a watered-down&amp;nbsp; version of a much bigger project.&lt;/P&gt;
&lt;P&gt;Some "tips" to make reading easier :&lt;/P&gt;
&lt;P&gt;function evaluator : a wrapper of a member class that delivers the function call. wraps the class object and the method name.&lt;/P&gt;
&lt;P&gt;extended_powell : the usual example in class dress.&lt;/P&gt;
&lt;P&gt;NumericalJacobian: the class that wraps the mkl functionality&lt;/P&gt;
&lt;P&gt;ublas::unbounded_array: similar to std::vector but with guaranteed contiguous memory layout.&lt;/P&gt;
&lt;P&gt;ublas::matrix: the obvious.&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2013 11:26:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964350#M16115</guid>
      <dc:creator>Petros_Mamales</dc:creator>
      <dc:date>2013-05-17T11:26:24Z</dc:date>
    </item>
    <item>
      <title>Hi Petros,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964351#M16116</link>
      <description>&lt;P&gt;Hi Petros,&lt;/P&gt;
&lt;P&gt;i try to run your code and get the result&lt;/P&gt;
&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;BR /&gt;0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.23607 -2.23607&lt;BR /&gt;0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;BR /&gt;12.6491 -0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -12.6491&lt;BR /&gt;0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;BR /&gt;0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;BR /&gt;0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;BR /&gt;0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;
&lt;P&gt;is that expected?&lt;/P&gt;
&lt;P&gt;Regarding the handle, generally, it is for keep parameter and internal buffer, user can't change it manually during iteration process. There is one function djacobix&amp;nbsp; Alternative interface for ?jacobi function for passing&lt;BR /&gt;additional data into the objective function., which can enables user to pass data to fcn.&amp;nbsp; is that usable?&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 06:18:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964351#M16116</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-05-22T06:18:11Z</dc:date>
    </item>
    <item>
      <title>By the way, I tried to</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964352#M16117</link>
      <description>By the way, I tried to compile your test case but it has two dependencies on a &lt;STRONG&gt;Boost&lt;/STRONG&gt; library:
...
// boost
#include "boost/numeric/ublas/storage.hpp"
#include "boost/numeric/ublas/matrix.hpp"
...</description>
      <pubDate>Wed, 22 May 2013 12:49:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964352#M16117</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-05-22T12:49:00Z</dc:date>
    </item>
    <item>
      <title>Sergey,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964353#M16118</link>
      <description>&lt;P&gt;Sergey,&lt;/P&gt;
&lt;P&gt;Boost is very standard source of c++ libraries ( not standard as the stl is standard). O/wise, since C does not provide w/vector, matrix classes would have to write more (and more obscure) code. You can find it in &lt;A href="https://community.intel.com/www.boost.org" target="_blank"&gt;www.boost.org&lt;/A&gt;. This part of the library is c++ header files so you will not even need to compile/build it. It is in template form so you will need a good c++ compiler, but this should not be a problem for you.&lt;/P&gt;
&lt;P&gt;Ying,&lt;/P&gt;
&lt;P&gt;No this is not the expected behavior. The first part is correct but in the second, I obtain a zero matrix. What really happens there is I calculate the jacobian for certain x and then recalculate it for an x where only the 0th component has been displaced ( as would happen in a possible solver search) and then it produces a zero matrix.&lt;/P&gt;
&lt;P&gt;Hence, the question: can one use the same Jacobi handle multiple times ? or they need to reset it ?&lt;/P&gt;
&lt;P&gt;Thank you for your help,&lt;/P&gt;
&lt;P&gt;Petros&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 13:25:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964353#M16118</guid>
      <dc:creator>Petros_Mamales</dc:creator>
      <dc:date>2013-05-22T13:25:38Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;...Boost is very standard</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964354#M16119</link>
      <description>&amp;gt;&amp;gt;...Boost is very standard source of c++ libraries ( not standard as the stl is standard). O/wise, since C does not provide
&amp;gt;&amp;gt;w/vector, matrix classes would have to write more (and more obscure) code. You can find it in www.boost.org. This
&amp;gt;&amp;gt;part of the library is c++ header files so you will not even need to compile/build it...

Thanks and I know this. Unfortunately, I don't use the &lt;STRONG&gt;Boost&lt;/STRONG&gt; and &lt;STRONG&gt;STL&lt;/STRONG&gt; is used instead.</description>
      <pubDate>Wed, 22 May 2013 14:40:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964354#M16119</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-05-22T14:40:31Z</dc:date>
    </item>
    <item>
      <title>It is not "instead". A lot of</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964355#M16120</link>
      <description>&lt;P&gt;It is not "instead". A lot of things from boost became stl with time. But the numeric part has not. But as you say you know this.&lt;/P&gt;
&lt;P&gt;Then don't I understand something ? Ying seems to have run fine the code I sent.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Update : I understand now. You, probably, &amp;nbsp;say you are not set up for boost. In this case, thank you for trying to answer my question.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 15:28:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964355#M16120</guid>
      <dc:creator>Petros_Mamales</dc:creator>
      <dc:date>2013-05-22T15:28:00Z</dc:date>
    </item>
    <item>
      <title>Petros, This is simply a note</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964356#M16121</link>
      <description>&lt;P&gt;Petros, This is simply a note: I don't have &lt;STRONG&gt;Boost&lt;/STRONG&gt; library on any computers around me. Sorry about this.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2013 00:54:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964356#M16121</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-05-23T00:54:00Z</dc:date>
    </item>
    <item>
      <title>In the end of the day, I don</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964357#M16122</link>
      <description>&lt;P&gt;In the end of the day, I don't think that my basic question on the reusability of the jacobi handle has been addressed.&lt;/P&gt;
&lt;P&gt;Irrespectively of my specific example, in general, can one use the same handle for two consecutive calculations of Jacobi matrix ? ( assuming same dimensions ).&lt;/P&gt;
&lt;P&gt;Also, can you disclose if something&amp;nbsp;other than a simple finite difference is happenning in the mkl-provided functionality ? Is the eps the accuracy sought ( for example using automatic differentiation ), or is simply the displacement in the finite differences ?&lt;/P&gt;
&lt;P&gt;TIA for your help,&lt;/P&gt;
&lt;P&gt;Petros&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2013 13:48:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964357#M16122</guid>
      <dc:creator>Petros_Mamales</dc:creator>
      <dc:date>2013-05-24T13:48:28Z</dc:date>
    </item>
    <item>
      <title>Quote:Petros Mamales wrote:In</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964358#M16123</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Petros Mamales wrote:&lt;BR /&gt;In the end of the day, I don't think that my basic question on the reusability of the jacobi handle has been addressed.&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I am afraid that by tying your question to Boost you have created so high a barrier that the number of responses may well remain close to zero. Personally, I am a casual user of C++ and, regardless of how great and free Boost is, I am not going to struggle with downloading and installing a 100 MB source code library just to examine a rather simple issue. If you can rephrase the question in terms of C (or, with less enthusiasm from me, C++ with STL), I may be inclined to examine the problem.&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2013 16:22:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964358#M16123</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2013-05-24T16:22:57Z</dc:date>
    </item>
    <item>
      <title>Hi Mecej4,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964359#M16124</link>
      <description>&lt;P&gt;Hi Mecej4,&lt;/P&gt;
&lt;P&gt;Will do. However, my question expects a yes or no answer. It should not need the code.&lt;/P&gt;
&lt;P&gt;MKL&amp;nbsp; should be able to tell me what the intended&amp;nbsp;usage/behavior is. The code would be necessary, if this was challenged - I am not doing this.&lt;/P&gt;
&lt;P&gt;Thank you for your help, Petros&lt;/P&gt;
&lt;P&gt;ps: Please, be assured that a) it did take work one my part to strip things down from my project to provide with the example, and b) I would not subject you to a "struggle", if more was needed than download and untar aheader-only library (hence no installation needed).&lt;/P&gt;
&lt;P&gt;Unfortunately, neither C nor stl provide with structures for vectors and matrices and providing an example written using boost should have made things easier to read.&lt;/P&gt;
&lt;P&gt;Finally, I did ask about oher things ( what the eps mean? does it perform automatic differentiation ? ) for which lack of certain libraries should not prohibit some response ;-)).&lt;/P&gt;
&lt;P&gt;At this point it gets easier for me&amp;nbsp;to drop the jacobi capability altogether and suggest that in a future release of MKL you provide with the functionality, if the corresponding function pointer is NULL, that the jacobian is calculated internally ( it is not that&amp;nbsp;users are told&amp;nbsp;what is done, anyway ).&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2013 17:52:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964359#M16124</guid>
      <dc:creator>Petros_Mamales</dc:creator>
      <dc:date>2013-05-24T17:52:00Z</dc:date>
    </item>
    <item>
      <title>Hi Petros,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964360#M16125</link>
      <description>&lt;P&gt;Hi Petros,&lt;/P&gt;
&lt;P&gt;Regarding the question itself, the answer is no, you can't use same handle for different x. (even they are&amp;nbsp; successive iteration point).&lt;/P&gt;
&lt;P&gt;in your case, when the first interation complete, the handle have include success information,&amp;nbsp; then when the second start, it return sucess directly&amp;nbsp;without any operation. as a result, &amp;nbsp;you get 0 where you set pfjac=0. std::fill_n( pfjac_, n*m, _T1(0) ) ;&lt;/P&gt;
&lt;P&gt;some discussion,&lt;/P&gt;
&lt;P&gt;1. why you need keep the handle itself?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if your&amp;nbsp;target is to get fjac. and there is another functions djacobi which can give your&amp;nbsp;fjac with different x.&amp;nbsp; which don't need maitain handle and init and deleted.&lt;/P&gt;
&lt;P&gt;djocobi&amp;nbsp;can compute the fjac directly and&amp;nbsp;djacobi_solver compute the fjac with RCI&amp;nbsp;interface,&amp;nbsp;It computes some element of fjac result by&amp;nbsp;x+-esp and iteration&amp;nbsp;.&amp;nbsp;I guess, some elements of fjac&amp;nbsp;are same when x and x+esp.&amp;nbsp; so&amp;nbsp;you hope to save the steps, right?&amp;nbsp; If yes, there are still logical problem within the iteration.&lt;/P&gt;
&lt;P&gt;2.&amp;nbsp;djacobi_sover &amp;nbsp;require re-init, and you ask reset.&amp;nbsp;as i understand, the re-init and reset have same functions. why you hope a reset instead re-init?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just guess, as you are using C++, the init in construct function,&amp;nbsp; so reset may usable during computing, right?&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 May 2013 08:07:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964360#M16125</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-05-27T08:07:00Z</dc:date>
    </item>
    <item>
      <title>Hi Ying,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964361#M16126</link>
      <description>&lt;P&gt;Hi Ying,&lt;/P&gt;
&lt;P&gt;Thank you very much for your reply. The real reason one wants to be able to re-use the same handle, is that one avoids allocation/deallocation of resources( memory) for every calculation of the Jacobian.IN TR search, for example, one needs to calculate the jacobian a number of times.It makes no sense to allocate/free auxiliary memory each time.&lt;/P&gt;
&lt;P&gt;Actually I cannot think of a good reason for the current usage model of the Jacobian handle but so be it. In the end of the day, a lot of effort was wasted to perform some finite differences!&lt;/P&gt;
&lt;P&gt;Again, thank you,&lt;/P&gt;
&lt;P&gt;Petros&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 May 2013 14:22:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964361#M16126</guid>
      <dc:creator>Petros_Mamales</dc:creator>
      <dc:date>2013-05-27T14:22:03Z</dc:date>
    </item>
    <item>
      <title>Hi Petros,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964362#M16127</link>
      <description>&lt;P&gt;Hi Petros,&lt;/P&gt;
&lt;P&gt;Thank you alot&amp;nbsp;for the feedback.&amp;nbsp;&amp;nbsp;right, It makes sense.&amp;nbsp; Do you like me to submit a feature request to mkl developer team about add one reset function for the memory reused purpose?&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Ying&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2013 02:08:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964362#M16127</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-06-03T02:08:00Z</dc:date>
    </item>
    <item>
      <title>Hi Ying,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964363#M16128</link>
      <description>&lt;P&gt;Hi Ying,&lt;/P&gt;
&lt;P&gt;As far as I am concerned, this is trhe way it should be.&lt;/P&gt;
&lt;P&gt;As I have decided to drop the functionality for my usage, I am, however, rather indifferent for its future.&lt;/P&gt;
&lt;P&gt;I would like to make the observation, though, that both the design and the documentation of some newer features of mkl leave quite some to be&amp;nbsp; desired. Litterally, the usage model of the jacobi handle, as it stands now,&amp;nbsp;requests from the user to turn off and re-turn on their&amp;nbsp;tv set every time they need to change chanel.&lt;/P&gt;
&lt;P&gt;All the Best,&lt;/P&gt;
&lt;P&gt;Petros&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2013 12:31:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964363#M16128</guid>
      <dc:creator>Petros_Mamales</dc:creator>
      <dc:date>2013-06-03T12:31:00Z</dc:date>
    </item>
    <item>
      <title>Hi Petros,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964364#M16129</link>
      <description>&lt;P&gt;Hi Petros,&lt;/P&gt;
&lt;P&gt;I create a request DPD200343482. we will track it.&amp;nbsp;&amp;nbsp;If&amp;nbsp;you have the explict F function,&amp;nbsp;&amp;nbsp;you can&amp;nbsp;use the djacobi() direclty.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The RCI Interface is designed for&amp;nbsp;who do not have an option to fit the calculations into the function with the fixed API. but it&amp;nbsp;missed&amp;nbsp;to &amp;nbsp;consider the situation of iteration.&amp;nbsp; Thank you again&amp;nbsp;for pointing out the problem.&lt;/P&gt;
&lt;P&gt;Best Regads,&lt;BR /&gt;Ying&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2013 08:46:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/non-linear-optimization-jacobi-solve-question/m-p/964364#M16129</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-06-09T08:46:36Z</dc:date>
    </item>
  </channel>
</rss>

