<?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 Failed to call DGELSS from C# in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798585#M2875</link>
    <description>Guys,&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Can anyone help on this?&lt;/DIV&gt;&lt;DIV&gt;I fail to get correct results from DGELSS.&lt;/DIV&gt;&lt;DIV&gt;Zip file with sample problem (in C#) is attached to previous post.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks,&lt;BR /&gt;Roy.&lt;/DIV&gt;</description>
    <pubDate>Tue, 02 Nov 2010 06:05:07 GMT</pubDate>
    <dc:creator>Roy_Tal</dc:creator>
    <dc:date>2010-11-02T06:05:07Z</dc:date>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798580#M2870</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Trying to access &lt;STRONG&gt;clapack_dgelss&lt;/STRONG&gt; from C# and failing. I am using 10.3 Beta version.&lt;BR /&gt;&lt;BR /&gt;When I call this function  nothing happens. All output parameters remain at the same values they had before the call. Absolutely nothing. Perhaps I am not calling correctly into the MKL library? I don't know&lt;BR /&gt;&lt;BR /&gt;Attached is a Visual Studio (2005) solution with a very simple example. Note: the sample also calls &lt;STRONG&gt;cblas_dgemm&lt;/STRONG&gt; and it works ok. Please copy the redistributables of 10.3 Beta to Bin\\Debug prior to running.&lt;BR /&gt;&lt;BR /&gt;Please advise,&lt;BR /&gt;Thanks,&lt;BR /&gt;Roy.</description>
      <pubDate>Wed, 27 Oct 2010 18:54:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798580#M2870</guid>
      <dc:creator>Roy_Tal</dc:creator>
      <dc:date>2010-10-27T18:54:09Z</dc:date>
    </item>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798581#M2871</link>
      <description>&lt;P&gt;Hi Roy,&lt;/P&gt;&lt;P&gt;There are 4 errors in your code.&lt;/P&gt;&lt;P&gt;1.Skipped first argument: int matrix_order&lt;/P&gt;&lt;P&gt;2. Extra INFO argument: c-lapack interface justreturnsINFO as function value&lt;/P&gt;&lt;P&gt;3.If you use WORK array, use _work version of interface: clapack_dgelss_work&lt;/P&gt;&lt;P&gt;4. Use LWORK = -1 to calculate the optimal size of the array work&lt;/P&gt;&lt;P&gt;Below are minimal changes for successful work.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vladimir&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;$ diff Program.cs-orig Program.cs&lt;BR /&gt;226c226&lt;BR /&gt;&amp;lt; int LWORK = 1;&lt;BR /&gt;---&lt;BR /&gt;&amp;gt; int LWORK = -1;&lt;BR /&gt;233c233&lt;BR /&gt;&amp;lt; CMKL.dgelss(m_numRows, // M - The number of rows in the A matrix&lt;BR /&gt;---&lt;BR /&gt;&amp;gt; info = CMKL.dgelss(m_numRows, // M - The number of rows in the A matrix&lt;BR /&gt;244,245c244,245&lt;BR /&gt;&amp;lt; LWORK, // LWORK - The dimension of the array WORK&lt;BR /&gt;&amp;lt; info); // = 0: successful exit&lt;BR /&gt;---&lt;BR /&gt;&amp;gt; LWORK // LWORK - The dimension of the array WORK&lt;BR /&gt;&amp;gt; ); // = 0: successful exit&lt;BR /&gt;297c297&lt;BR /&gt;&amp;lt; public static void dgelss(int M, int N, int NRHS,&lt;BR /&gt;---&lt;BR /&gt;&amp;gt; public static int dgelss(int M, int N, int NRHS,&lt;BR /&gt;302c302&lt;BR /&gt;&amp;lt; int LWORK, [Out] int INFO)&lt;BR /&gt;---&lt;BR /&gt;&amp;gt; int LWORK)&lt;BR /&gt;304c304&lt;BR /&gt;&amp;lt; CMKLNative.clapack_dgelss(M, N, NRHS, A, lda, B, ldb, S, RCOND, iRANK, WORK, LWORK, INFO);&lt;BR /&gt;---&lt;BR /&gt;&amp;gt; return CMKLNative.clapack_dgelss_work(1,M, N, NRHS, A, lda, B, ldb, S, RCOND, iRANK, WORK, LWORK);&lt;BR /&gt;340c340&lt;BR /&gt;&amp;lt; internal static extern void clapack_dgelss(&lt;BR /&gt;---&lt;BR /&gt;&amp;gt; internal static extern int clapack_dgelss_work( int matrix_order,&lt;BR /&gt;352,353c352,353&lt;BR /&gt;&amp;lt; int LWORK, // The dimension of the array WORK&lt;BR /&gt;&amp;lt; [Out] int INFO); // = 0: successful exit&lt;BR /&gt;---&lt;BR /&gt;&amp;gt; int LWORK // The dimension of the array WORK&lt;BR /&gt;&amp;gt; ); // = 0: successful exit&lt;/P&gt;</description>
      <pubDate>Thu, 28 Oct 2010 08:55:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798581#M2871</guid>
      <dc:creator>Vladimir_Koldakov__I</dc:creator>
      <dc:date>2010-10-28T08:55:29Z</dc:date>
    </item>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798582#M2872</link>
      <description>Vladimir.&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thank ... we're progressing.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Nevertheless, even with your points applied, the return value I receive is always -1012.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Attached is the updated program ...appreciatevery much your advise.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks,&lt;BR /&gt;Roy.&lt;/DIV&gt;</description>
      <pubDate>Thu, 28 Oct 2010 13:09:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798582#M2872</guid>
      <dc:creator>Roy_Tal</dc:creator>
      <dc:date>2010-10-28T13:09:21Z</dc:date>
    </item>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798583#M2873</link>
      <description>&lt;P&gt;Roy,&lt;/P&gt;&lt;P&gt;The beta version has inconsistent C-LAPACK and CBLAS constants. You can find in the MKL/include/mkl_clapack.h header file following values:&lt;/P&gt;&lt;P&gt;#define CLAPACK_ROW_MAJOR 0&lt;BR /&gt;#define CLAPACK_COL_MAJOR 1&lt;BR /&gt;&lt;BR /&gt;#define CLAPACK_WORK_MEMORY_ERROR -1010&lt;BR /&gt;#define CLAPACK_TRANSPOSE_MEMORY_ERROR -1011&lt;BR /&gt;#define CLAPACK_ORDER_ERROR -1012&lt;BR /&gt;&lt;BR /&gt;So -1012 means wrong matrix_order value. Use please 0 instead of CMKL.ORDER.RowMajor.&lt;BR /&gt;Also use ref int iRANK for C-declared pointers to scalars: clapack_int* rank =&amp;gt; ref int rank.&lt;BR /&gt;Below are minimal changes for successful work.&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Vladimir&lt;/P&gt;&lt;P&gt;$ diff Program.cs Program.cs-orig&lt;/P&gt;&lt;P&gt;238c238&lt;BR /&gt;&amp;lt; 0, // The matrix order - whether the two-dimensional arrays are row-major (CLAPACK_ROW_MAJOR) or column-major (CLAPACK_COL_MAJOR).&lt;BR /&gt;---&lt;BR /&gt;&amp;gt; CMKL.ORDER.RowMajor, // The matrix order - whether the two-dimensional arrays are row-major (CLAPACK_ROW_MAJOR) or column-major (CLAPACK_COL_MAJOR).&lt;BR /&gt;302c302&lt;BR /&gt;&amp;lt; return CMKLNative.clapack_dgelss(matrix_order, M, N, NRHS, A, lda, B, ldb, S, RCOND, ref iRANK);&lt;BR /&gt;---&lt;BR /&gt;&amp;gt; return CMKLNative.clapack_dgelss(matrix_order, M, N, NRHS, A, lda, B, ldb, S, RCOND, iRANK);&lt;BR /&gt;356c356&lt;BR /&gt;&amp;lt; ref int iRANK); // The effective rank of A, i.e., the number of singular values which are greater than RCOND*S(1)&lt;BR /&gt;---&lt;BR /&gt;&amp;gt; [Out] int iRANK); // The effective rank of A, i.e., the number of singular values which are greater than RCOND*S(1)&lt;/P&gt;</description>
      <pubDate>Thu, 28 Oct 2010 16:11:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798583#M2873</guid>
      <dc:creator>Vladimir_Koldakov__I</dc:creator>
      <dc:date>2010-10-28T16:11:33Z</dc:date>
    </item>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798584#M2874</link>
      <description>Dear Vladimir,&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Almost there.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Although the function now returns info = 0, the results themselves are not correct yet.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Attached is a zip in which I try to solve the following equation:&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;  A     X      B&lt;/DIV&gt;&lt;DIV&gt; ------   ---     ---&lt;/DIV&gt;&lt;DIV&gt; 1 2 3    1      17&lt;/DIV&gt;&lt;DIV&gt; 4 5 6  * 2   =  38&lt;/DIV&gt;&lt;DIV&gt; 7 8 10   3      63 &lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;The results I actually get in X are --&amp;gt; (-8.78 E 275,  38,  63). Notice how the two last elements are actually remnantsof the old B vector.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Note: just out ofcuriosity, I did try to give the DGELSS a ColMajor option (although I believe I work in RowMajor). I did get "better" results.  X --&amp;gt;(26.333, -9.333, 4.00). Notice how the 4.00 is part of the correct answer, but the other 2 elements are not correct.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Please advise,&lt;/DIV&gt;&lt;DIV&gt;Thanks,&lt;/DIV&gt;&lt;DIV&gt;Roy.&lt;/DIV&gt;</description>
      <pubDate>Sun, 31 Oct 2010 09:20:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798584#M2874</guid>
      <dc:creator>Roy_Tal</dc:creator>
      <dc:date>2010-10-31T09:20:12Z</dc:date>
    </item>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798585#M2875</link>
      <description>Guys,&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Can anyone help on this?&lt;/DIV&gt;&lt;DIV&gt;I fail to get correct results from DGELSS.&lt;/DIV&gt;&lt;DIV&gt;Zip file with sample problem (in C#) is attached to previous post.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks,&lt;BR /&gt;Roy.&lt;/DIV&gt;</description>
      <pubDate>Tue, 02 Nov 2010 06:05:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798585#M2875</guid>
      <dc:creator>Roy_Tal</dc:creator>
      <dc:date>2010-11-02T06:05:07Z</dc:date>
    </item>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798586#M2876</link>
      <description>&lt;P&gt;Roy, your actual data are&lt;/P&gt;&lt;P&gt;A     X      B&lt;BR /&gt; ------   ---     ---&lt;BR /&gt; 1 2 3    1      17&lt;BR /&gt; 4 5 6  * 2   =  38&lt;BR /&gt; 7 8 10   &lt;STRONG&gt;4 &lt;/STRONG&gt;     63&lt;/P&gt;&lt;P&gt;As you use row-major order you should set ldb=1. just replace:&lt;/P&gt;&lt;P&gt;B.Length, // ldb - The leading dimension of the array B&lt;/P&gt;&lt;P&gt;with 1. After that I have:&lt;/P&gt;&lt;P&gt;0.99999999999998823&lt;BR /&gt;2.0000000000000044&lt;BR /&gt;4.0000000000000044&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Also lda should be m_numColumns.&lt;BR /&gt;&lt;BR /&gt;-Vladimir&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2010 06:35:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798586#M2876</guid>
      <dc:creator>Vladimir_Koldakov__I</dc:creator>
      <dc:date>2010-11-10T06:35:08Z</dc:date>
    </item>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798587#M2877</link>
      <description>Thankyou Vladimir.&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I know understand how to use DGELSS.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Please note that the documentation is misleading.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DL&gt;&lt;DT class="dlterm"&gt;&lt;/DT&gt;&lt;DT style="padding-left: 20pt;" class="dlterm"&gt;m  -&lt;SPAN style="line-height: 16px;"&gt;INTEGER. The number of rows of the matrix&lt;VAR class="varname"&gt;A&lt;/VAR&gt;(&lt;SAMP class="codeph"&gt;&lt;VAR class="varname"&gt;m&lt;/VAR&gt;0&lt;/SAMP&gt;).&lt;/SPAN&gt;&lt;/DT&gt;&lt;DT style="padding-left: 20pt;" class="dlterm"&gt;n   -&lt;SPAN style="line-height: 16px;"&gt;INTEGER. The number of columns of the matrix&lt;VAR class="varname"&gt;A&lt;/VAR&gt;&lt;/SPAN&gt;&lt;SPAN style="line-height: 16px;"&gt;(&lt;SAMP class="codeph"&gt;&lt;VAR class="varname"&gt;n&lt;/VAR&gt;0&lt;/SAMP&gt;).&lt;/SPAN&gt;&lt;/DT&gt;&lt;DT style="padding-left: 20pt;" class="dlterm"&gt;&lt;SPAN style="line-height: 16px;"&gt;&lt;/SPAN&gt;lda  -&lt;SPAN style="line-height: 16px;"&gt;INTEGER. The first dimension of&lt;VAR class="varname"&gt;a&lt;/VAR&gt;; at least max(1,&lt;VAR class="varname"&gt;m&lt;/VAR&gt;).&lt;/SPAN&gt;&lt;/DT&gt;&lt;DT style="padding-left: 20pt;" class="dlterm"&gt;ldb  -&lt;SPAN style="line-height: 16px;"&gt;INTEGER. The first dimension of&lt;VAR class="varname"&gt;b&lt;/VAR&gt;; must be at least max(1,&lt;VAR class="varname"&gt;m&lt;/VAR&gt;,&lt;VAR class="varname"&gt;n&lt;/VAR&gt;).&lt;/SPAN&gt;&lt;/DT&gt;&lt;DIV&gt;Thanks anyway,&lt;/DIV&gt;&lt;DIV&gt;Roy.&lt;/DIV&gt;&lt;/DL&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 10 Nov 2010 12:06:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798587#M2877</guid>
      <dc:creator>Roy_Tal</dc:creator>
      <dc:date>2010-11-10T12:06:18Z</dc:date>
    </item>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798588#M2878</link>
      <description>&lt;P&gt;Roy, thank you for the comments.&lt;/P&gt;&lt;P&gt;Please look at the announcement &lt;A href="http://software.intel.com/en-us/articles/c-interface-for-lapack/"&gt;http://software.intel.com/en-us/articles/c-interface-for-lapack/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You can find there more details in the C interface to LAPACK technical paper, in particular:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LAPACK routines use a stride corresponding to the FORTRAN leading dimension (LDA) with all 2D arrays. We must do the same. For RowMajor matrices, elements within a row are assumed to be contiguous and elements from one row to the next are assumed to be a stride/leading dimension apart.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;-Vladimir&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2010 18:06:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798588#M2878</guid>
      <dc:creator>Vladimir_Koldakov__I</dc:creator>
      <dc:date>2010-11-10T18:06:09Z</dc:date>
    </item>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798589#M2879</link>
      <description>Vladimir,&lt;BR /&gt;&lt;BR /&gt;Amazingly, we need to reopen this issue.&lt;BR /&gt;We are extremely frustrated!!!&lt;BR /&gt;&lt;BR /&gt;We have upgraded from 10.3 beta to the official 10.3 release version.&lt;BR /&gt;&lt;BR /&gt;Immediately thereafter, our application stopped working. Going back to the sample we sent you (Test_DGELSS.zip) we see an error "&lt;B&gt;Unable to find an entry point named 'clapack_dgelss' in DLL 'mkl_rt'&lt;/B&gt;." when we try to call clapack_dgelss.&lt;BR /&gt;&lt;BR /&gt;We also noticed on the 10.3 release notes that the C interface had changed (http://software.intel.com/en-us/articles/c-interface-for-lapack/). Is that related?&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt;Release 10.3 veresion (not working)&lt;/DIV&gt;&lt;DIV&gt;------------------------------------------&lt;/DIV&gt;&lt;DIV&gt;mkl_rt.dll&lt;SPAN style="white-space: pre;"&gt;		10.3.0.1&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="white-space: pre;"&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Beta 10.3 veresion (working)&lt;/DIV&gt;&lt;DIV&gt;----------------------------------&lt;/DIV&gt;&lt;DIV&gt;mkl_rt.dll     10.3.0.0&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;BR /&gt;Please Help ASAP.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Roy.&lt;/DIV&gt;</description>
      <pubDate>Sun, 14 Nov 2010 16:39:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798589#M2879</guid>
      <dc:creator>Roy_Tal</dc:creator>
      <dc:date>2010-11-14T16:39:03Z</dc:date>
    </item>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798590#M2880</link>
      <description>Roy,&lt;BR /&gt;Yes, interface names have been changed.&lt;BR /&gt;Please use 10.3 LAPACKE_dgelss instead of 10.3 beta clapack_dgelss.&lt;BR /&gt;Thanks,&lt;BR /&gt;Vladimir&lt;BR /&gt;</description>
      <pubDate>Mon, 15 Nov 2010 08:15:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798590#M2880</guid>
      <dc:creator>Vladimir_Koldakov__I</dc:creator>
      <dc:date>2010-11-15T08:15:56Z</dc:date>
    </item>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798591#M2881</link>
      <description>Vladimir,&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thank-you for the quick response.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;After changing the function name, my application does not show anymore the error it previously shown ("&lt;B&gt;Unable to find an entry point named 'clapack_dgelss' in DLL 'mkl_rt'&lt;/B&gt;.").&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Nevertheless, the return code I receive from the function is -1.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I have attached the entire solution so you could have a look.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Please check this so we can resolve this issue quickly ... unfortuatly, we are now 3 weeks trying to solve the same problem and frankly, somewhat fed up with it. We seriously consider ditching MKL and finding an alternative solution.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks,&lt;BR /&gt;Roy.&lt;/DIV&gt;</description>
      <pubDate>Mon, 15 Nov 2010 11:14:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798591#M2881</guid>
      <dc:creator>Roy_Tal</dc:creator>
      <dc:date>2010-11-15T11:14:11Z</dc:date>
    </item>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798592#M2882</link>
      <description>&lt;P&gt;Roy,&lt;/P&gt;&lt;P&gt;Sorry, forgot to say that matrix_order constants have been changed also to the more natural values.&lt;/P&gt;&lt;P&gt;Please replace CMKL.CLAPACK_ORDER.RowMajor with CMKL.ORDER.RowMajor.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vladimir&lt;/P&gt;</description>
      <pubDate>Mon, 15 Nov 2010 12:02:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798592#M2882</guid>
      <dc:creator>Vladimir_Koldakov__I</dc:creator>
      <dc:date>2010-11-15T12:02:36Z</dc:date>
    </item>
    <item>
      <title>Failed to call DGELSS from C#</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798593#M2883</link>
      <description>Vladimir,&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Yes ... I have just reached the same conclusion myself.&lt;/DIV&gt;&lt;DIV&gt;Now, my program is working again (and also the test program - TEST_DGELSS)&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks for your prompt response,&lt;/DIV&gt;&lt;DIV&gt;Roy.&lt;/DIV&gt;</description>
      <pubDate>Mon, 15 Nov 2010 12:07:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Failed-to-call-DGELSS-from-C/m-p/798593#M2883</guid>
      <dc:creator>Roy_Tal</dc:creator>
      <dc:date>2010-11-15T12:07:53Z</dc:date>
    </item>
  </channel>
</rss>

