<?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 Function mkl_sdnscsr- urgent in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794939#M2584</link>
    <description>Looking forward for the reply!</description>
    <pubDate>Fri, 25 Feb 2011 17:33:44 GMT</pubDate>
    <dc:creator>atee1234</dc:creator>
    <dc:date>2011-02-25T17:33:44Z</dc:date>
    <item>
      <title>Function mkl_sdnscsr- urgent</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794936#M2581</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have got some basic questions.&lt;BR /&gt;&lt;BR /&gt;I'm trying to use the functions of Intel Math Kernel Library- for converting a matrix in dense representation into CSR format.&lt;BR /&gt;&lt;BR /&gt;There are the following possibilities as I see:&lt;BR /&gt;&lt;BR /&gt;1) The function &lt;STRONG&gt;mkl_sdnscsr&lt;/STRONG&gt; which has the following arguments;&lt;BR /&gt;&lt;BR /&gt;(job, m , n, adns, lda, acsr, ja, ia, info)&lt;BR /&gt;&lt;BR /&gt;Now:&lt;BR /&gt;&lt;BR /&gt;from the inputs required;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;acsr = array containing non zero elements of the matrix A. Its length is equal to the number of non zero elements of the matrix A.&lt;BR /&gt;&lt;BR /&gt;ja = array containing the column indices for each non zero element of the matrix A.&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;My question is;&lt;BR /&gt;&lt;BR /&gt;if in my routine, I do not have theindices of the non zero elements of my matrix available, then , how do I use this function?&lt;BR /&gt;&lt;BR /&gt;Because, I have a matrix (Say) 'K' which is in dense form,and I have not stored the indices of the non zero elements. How can I use this function in such a case?&lt;BR /&gt;&lt;BR /&gt;I just havea matrix of form:&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;3.14 0 0 20.04 0 0&lt;/P&gt;&lt;P&gt;0 27 0 0 -0.6 0&lt;/P&gt;&lt;P&gt;0 0 -0.01 0 0 0&lt;/P&gt;&lt;P&gt;-0.031 0 0 0.08 0 314 &lt;/P&gt;&lt;BR /&gt;That is all and I want to convert into CSR format.&lt;BR /&gt;&lt;BR /&gt;I just want to give this matrix as input and get the CSR format. Is it possible?&lt;BR /&gt;&lt;BR /&gt;Pleasehelp.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Feb 2011 16:35:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794936#M2581</guid>
      <dc:creator>atee1234</dc:creator>
      <dc:date>2011-02-24T16:35:45Z</dc:date>
    </item>
    <item>
      <title>Function mkl_sdnscsr- urgent</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794937#M2582</link>
      <description>Hi, I am not sure I understand completely your question: You don't need to store indices of the non zeroes elements of the dense matrixes at all.&lt;DIV&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;to convert from dense representation to CSR you need to do&lt;BR /&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;job[0] = 0;.....&lt;/DIV&gt;&lt;DIV&gt;m = 6;&lt;/DIV&gt;&lt;DIV&gt;n = 4;&lt;/DIV&gt;&lt;DIV&gt;float adns[24]; // your input dense&lt;/DIV&gt;&lt;DIV&gt;and make the call:&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;mkl_sdnscsr(job, &amp;amp;m, &amp;amp;n, adns,....);&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;--Gennady&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 25 Feb 2011 07:50:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794937#M2582</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2011-02-25T07:50:42Z</dc:date>
    </item>
    <item>
      <title>Function mkl_sdnscsr- urgent</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794938#M2583</link>
      <description>&lt;P&gt;Thanks a lot for your reply.&lt;BR /&gt;&lt;BR /&gt;My code is like this:&lt;/P&gt;&lt;P&gt;int job[50],m,n;&lt;/P&gt;&lt;P&gt;float adns[3][3];&lt;/P&gt;&lt;P&gt;int lda;&lt;/P&gt;&lt;P&gt;job[1]=0; job[2]=1; job[3]=1; job[4]=2;job[5]= 100;job[6]=1;&lt;/P&gt;&lt;P&gt;m=3;n=3;&lt;/P&gt;&lt;P&gt;adns[1][1]=1; adns[1][2]=0;adns[1][3]=0; adns[2][1]=0; adns[2][2]=3;adns[2][3]=4; adns[3][1]=0;adns[3][2]=4;adns[3][3]=5;&lt;/P&gt;&lt;P&gt;lda=3;&lt;/P&gt;&lt;P&gt;mkl_sdnscsr(job,&amp;amp;m,&amp;amp;n,adns,&amp;amp;lda)&lt;/P&gt;&lt;P&gt;return 0;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;I get an error identifier &lt;EM&gt;mkl_sdnscsr is not identified&lt;/EM&gt;. Please can anyone help? What is this due to?</description>
      <pubDate>Fri, 25 Feb 2011 16:34:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794938#M2583</guid>
      <dc:creator>atee1234</dc:creator>
      <dc:date>2011-02-25T16:34:35Z</dc:date>
    </item>
    <item>
      <title>Function mkl_sdnscsr- urgent</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794939#M2584</link>
      <description>Looking forward for the reply!</description>
      <pubDate>Fri, 25 Feb 2011 17:33:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794939#M2584</guid>
      <dc:creator>atee1234</dc:creator>
      <dc:date>2011-02-25T17:33:44Z</dc:date>
    </item>
    <item>
      <title>Function mkl_sdnscsr- urgent</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794940#M2585</link>
      <description>You need to include the appropriate header files, e.g.,&lt;BR /&gt;&lt;BR /&gt;   #include "mkl_spblas.h"&lt;BR /&gt;&lt;BR /&gt;in your source file(s) and link against the appropriate MKL libraries.&lt;BR /&gt;&lt;BR /&gt;Your MKL installation comes with at least one example source file (....\mkl\examples\spblas\source or ...\mkl\examples\spblasc\source\sconverters.c -- depending on the version of MKL that you have) that illustrates how to convert between different matrix storage formats.&lt;BR /&gt;</description>
      <pubDate>Sat, 26 Feb 2011 04:32:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794940#M2585</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2011-02-26T04:32:24Z</dc:date>
    </item>
    <item>
      <title>Function mkl_sdnscsr- urgent</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794941#M2586</link>
      <description>Thanks a lot but it is still not working.I just pasted the code from the example file as you mentioned- to make it easy to start:&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;// project9.cpp : Defines the entry point for the console application.&lt;/P&gt;&lt;P&gt;//&lt;/P&gt;&lt;P&gt;#include "stdafx.h"&lt;/P&gt;&lt;P&gt;#include "mkl_spblas.h"&lt;/P&gt;&lt;P&gt;#include "mkl_types.h"&lt;/P&gt;&lt;P&gt;int _tmain(int argc, _TCHAR* argv[])&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;/********************************************************************************&lt;/P&gt;&lt;P&gt;* Definition arrays for sparse matrix formats&lt;/P&gt;&lt;P&gt;********************************************************************************/&lt;/P&gt;&lt;P&gt;#define M 4&lt;/P&gt;&lt;P&gt;#define N 4&lt;/P&gt;&lt;P&gt;#define LDA 4&lt;/P&gt;&lt;P&gt;#define NZMAX 8&lt;/P&gt;&lt;P&gt;#define NNZ 8&lt;/P&gt;&lt;P&gt;#define MBLK 2&lt;/P&gt;&lt;P&gt;#define NN 2&lt;/P&gt;&lt;P&gt;#define INFO 0&lt;/P&gt;&lt;P&gt;#define MN 16&lt;/P&gt;&lt;P&gt;#define IBASE1 1&lt;/P&gt;&lt;P&gt;#define IBASE2 1&lt;/P&gt;&lt;P&gt;#define LOCAT 2&lt;/P&gt;&lt;P&gt;#define IDIAG 3&lt;/P&gt;&lt;P&gt;#define NDIAG 4&lt;/P&gt;&lt;P&gt;#define INDIA 12&lt;/P&gt;&lt;P&gt;MKL_INT m = M, n=N, lda=LDA, nzmax=NZMAX, nnz = NNZ, mblk=MBLK, nn=NN, info=INFO,mn=MN;&lt;/P&gt;&lt;P&gt;MKL_INT ibase1 = IBASE1,ibase2 = IBASE2, locat = LOCAT,idiag = IDIAG,ndiag = NDIAG;&lt;/P&gt;&lt;P&gt;float Adns[MN];&lt;/P&gt;&lt;P&gt;float Adns_standard[MN];&lt;/P&gt;&lt;P&gt;float Absr[NZMAX];&lt;/P&gt;&lt;P&gt;float Absr_standard[NZMAX] = {5.0, 9.0, 8.0, 2.0, 3.0, 1.0, 6.0, 4.0};&lt;/P&gt;&lt;P&gt;float Acsr[NZMAX];&lt;/P&gt;&lt;P&gt;float Acsr_standard[NZMAX] = {5.0, 8.0, 9.0, 2.0, 3.0, 6.0, 1.0, 4.0};&lt;/P&gt;&lt;P&gt;float Acsc[NZMAX];&lt;/P&gt;&lt;P&gt;float Acsc_standard[NZMAX] = {5.0, 9.0, 8.0, 2.0, 3.0,&lt;/P&gt;&lt;P&gt;1.0, 6.0, 4.0};&lt;/P&gt;&lt;P&gt;float Adia[INDIA];&lt;/P&gt;&lt;P&gt;float Adia_standard[INDIA] = {0.0, 9.0, 0.0, 1.0,&lt;/P&gt;&lt;P&gt;5.0, 2.0, 3.0, 4.0,&lt;/P&gt;&lt;P&gt;8.0, 0.0, 6.0, 0.0};&lt;/P&gt;&lt;P&gt;float Asky[6];&lt;/P&gt;&lt;P&gt;float Askyl_standard[6] = {5.0, 9.0, 2.0, 3.0, 1.0, 4.0};&lt;/P&gt;&lt;P&gt;float Acoo[NZMAX];&lt;/P&gt;&lt;P&gt;float Acoo_standard[NZMAX] = {5.0, 8.0, 9.0, 2.0, 3.0, 6.0, 1.0, 4.0};&lt;/P&gt;&lt;P&gt;MKL_INT AI[M+1];&lt;/P&gt;&lt;P&gt;MKL_INT AI1[M+1];&lt;/P&gt;&lt;P&gt;MKL_INT AI_standard[M+1] = {1, 3, 5, 7, 9};&lt;/P&gt;&lt;P&gt;MKL_INT AJ[NZMAX];&lt;/P&gt;&lt;P&gt;MKL_INT AJ1[NZMAX];&lt;/P&gt;&lt;P&gt;MKL_INT AJ_standard[NZMAX] = {1, 2, 1, 2, 3, 4, 3, 4};&lt;/P&gt;&lt;P&gt;MKL_INT AJB[NN];&lt;/P&gt;&lt;P&gt;MKL_INT AJB_standard[MBLK] = {1,2};&lt;/P&gt;&lt;P&gt;MKL_INT AIB[NN+1];&lt;/P&gt;&lt;P&gt;MKL_INT AIB_standard[MBLK+1] = {1, 2, 3};&lt;/P&gt;&lt;P&gt;MKL_INT ir[NZMAX];&lt;/P&gt;&lt;P&gt;MKL_INT ir_standard[NZMAX] = {1, 1, 2, 2, 3, 3, 4, 4};&lt;/P&gt;&lt;P&gt;MKL_INT jc[NZMAX];&lt;/P&gt;&lt;P&gt;MKL_INT jc_standard[NZMAX] = {1, 2, 1, 2, 3, 4, 3, 4};&lt;/P&gt;&lt;P&gt;MKL_INT pointers[M+1];&lt;/P&gt;&lt;P&gt;MKL_INT pointersl_standard[M+1] = {1, 2, 4, 5, 7};&lt;/P&gt;&lt;P&gt;MKL_INT distance[IDIAG];&lt;/P&gt;&lt;P&gt;MKL_INT distance_standard[IDIAG] = {-1, 0, 1};&lt;/P&gt;&lt;P&gt;MKL_INT AJL[6];&lt;/P&gt;&lt;P&gt;MKL_INT AJL_standard[6] = {1, 1, 2, 3, 3, 4};&lt;/P&gt;&lt;P&gt;//*************************************************************************************************&lt;/P&gt;&lt;P&gt;//* Declaration of local variables :&lt;/P&gt;&lt;P&gt;//*************************************************************************************************&lt;/P&gt;&lt;P&gt;MKL_INT job0=1;&lt;/P&gt;&lt;P&gt;MKL_INT ifail=1;&lt;/P&gt;&lt;P&gt;MKL_INT nr,ldAbsr;&lt;/P&gt;&lt;P&gt;MKL_INT i,j,ij;&lt;/P&gt;&lt;P&gt;float rfail=0.0;&lt;/P&gt;&lt;P&gt;MKL_INT job[8];&lt;/P&gt;&lt;P&gt;printf("\n EXAMPLE PROGRAM FOR CONVERTER FROM ONE\n");&lt;/P&gt;&lt;P&gt;printf("\n SPARSE FORMAT ROUTINES TO OTHER \n");&lt;/P&gt;&lt;P&gt;printf("\n REAL SINGLE PRECISION \n");&lt;/P&gt;&lt;P&gt;locat=2;&lt;/P&gt;&lt;P&gt;ibase1=1;&lt;/P&gt;&lt;P&gt;ibase2=1;&lt;/P&gt;&lt;P&gt;job[1]=ibase1;&lt;/P&gt;&lt;P&gt;job[2]=ibase2;&lt;/P&gt;&lt;P&gt;job[3]=locat;&lt;/P&gt;&lt;P&gt;job[4]=nzmax;&lt;/P&gt;&lt;P&gt;//***************************************************************************************************&lt;/P&gt;&lt;P&gt;//* TASK 1 Obtain compressed sparse row matrix from dense matrix&lt;/P&gt;&lt;P&gt;//**************************************************************************************************&lt;/P&gt;&lt;P&gt;for ( j=0; j&lt;N&gt;&lt;/N&gt;&lt;/P&gt;&lt;P&gt;for ( i=0; i&lt;M&gt;&lt;/M&gt;&lt;/P&gt;&lt;P&gt;Adns[i + lda*j]=0.0;&lt;/P&gt;&lt;P&gt;Adns[0]=5.0;&lt;/P&gt;&lt;P&gt;Adns[1]=9.0;&lt;/P&gt;&lt;P&gt;Adns[4]=8.0;&lt;/P&gt;&lt;P&gt;Adns[5]=2.0;&lt;/P&gt;&lt;P&gt;Adns[10]=3.0;&lt;/P&gt;&lt;P&gt;Adns[11]=1.0;&lt;/P&gt;&lt;P&gt;Adns[14]=6.0;&lt;/P&gt;&lt;P&gt;Adns[15]=4.0;&lt;/P&gt;&lt;P&gt;for ( j=0; j&lt;N&gt;&lt;/N&gt;&lt;/P&gt;&lt;P&gt;for ( i=0; i&lt;M&gt;&lt;/M&gt;&lt;/P&gt;&lt;P&gt;Adns_standard[i + lda*j]=Adns[i + lda*j];&lt;/P&gt;&lt;P&gt;job[0]=0;&lt;/P&gt;&lt;P&gt;job[5]=1;&lt;/P&gt;&lt;P&gt;mkl_sdnscsr(job,&amp;amp;m,&amp;amp;n,Adns,&amp;amp;lda,Acsr,AJ,AI,&amp;amp;info);&lt;/P&gt;&lt;P&gt;if (info!=0) goto FAILURE1;&lt;/P&gt;&lt;P&gt;for ( i=0; i&lt;N&gt;&lt;/N&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;ifail=AI&lt;I&gt;-AI_standard&lt;I&gt;;&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;if (ifail!=0) goto FAILURE1;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;for ( i=0; i&lt;NZMAX&gt;&lt;/NZMAX&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;ifail=AJ&lt;I&gt;-AJ_standard&lt;I&gt;;&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;if (ifail!=0) goto FAILURE1;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;for ( i=0; i&lt;NZMAX&gt;&lt;/NZMAX&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;rfail=Acsr&lt;I&gt;-Acsr_standard&lt;I&gt;;&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;if (rfail!=0) goto FAILURE1;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;FAILURE1: printf("\n Example FAILED to convert from dns to csr...\n");&lt;/P&gt;&lt;P&gt;return 1;&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;&lt;BR /&gt;When I build, i get error:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;1&amp;gt;project9.obj : error LNK2019: unresolved external symbol _mkl_sdnscsr referenced in function _wmain&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;Please help, urgent.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Feb 2011 00:00:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794941#M2586</guid>
      <dc:creator>atee1234</dc:creator>
      <dc:date>2011-02-28T00:00:59Z</dc:date>
    </item>
    <item>
      <title>Function mkl_sdnscsr- urgent</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794942#M2587</link>
      <description>You still miss libraries in your linking command. try to use &lt;A href="http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/"&gt;Link Advisor&lt;/A&gt; to get the correct one.&lt;BR /&gt;&lt;BR /&gt;A.</description>
      <pubDate>Mon, 28 Feb 2011 00:29:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794942#M2587</guid>
      <dc:creator>ArturGuzik</dc:creator>
      <dc:date>2011-02-28T00:29:57Z</dc:date>
    </item>
    <item>
      <title>Function mkl_sdnscsr- urgent</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794943#M2588</link>
      <description>I'm sorry to come again but tried various options in link adviser but get same error regarding 'fatal link error'.</description>
      <pubDate>Wed, 02 Mar 2011 09:47:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794943#M2588</guid>
      <dc:creator>atee1234</dc:creator>
      <dc:date>2011-03-02T09:47:21Z</dc:date>
    </item>
    <item>
      <title>Function mkl_sdnscsr- urgent</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794944#M2589</link>
      <description>&lt;DIV id="_mcePaste"&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;if Linker adviser didn't help then may be you will try to build these (&lt;/SPAN&gt;&lt;MKL_INSTALL_DIR&gt;\examples\spblas\source\&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;) examples and see how they are linking ...may be it would help you. if not, we will create the MVSC project and attach to this thread.... but please try to build the example first.&lt;/SPAN&gt;&lt;/MKL_INSTALL_DIR&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;--Gennady&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Mar 2011 10:15:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794944#M2589</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2011-03-02T10:15:52Z</dc:date>
    </item>
    <item>
      <title>Function mkl_sdnscsr- urgent</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794945#M2590</link>
      <description>Older versions of MKL may not provide the single-precision versions of functions, e.g., mkl_sdnscsr(). For example, the MKL that came with Intel C++ 11.1.065 did not. You can settle the question for your installation by running the command below in the MKL\LIB\IA32 directory:&lt;BR /&gt;&lt;PRE&gt;[bash]..mkllibia32&amp;gt; dumpbin /symbols mkl_core.lib | find "mkl_sdnscsr"&lt;BR /&gt;[/bash]&lt;/PRE&gt; If nothing is found, you conclude that only the double precision version is available, and you may consider obtaining a later version of MKL.&lt;BR /&gt;&lt;BR /&gt;Your code in #5 above has a bug; you need to add a "return 0;" statement before the FAILURE1: label. Otherwise, the code prints a "FAILED" message even after a correct run.&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Mar 2011 15:08:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Function-mkl-sdnscsr-urgent/m-p/794945#M2590</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2011-03-02T15:08:19Z</dc:date>
    </item>
  </channel>
</rss>

