<?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 Hi Markus, in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Missing-cblas-dzgemm/m-p/916778#M12655</link>
    <description>&lt;P&gt;Hi Markus,&lt;/P&gt;

&lt;P&gt;The request&amp;nbsp;was recorded in to DPD200331505&amp;nbsp; add a&amp;nbsp; c interface for dzgemm.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;As you know, our product definition review the request and decide if implement or not based on product develop plan. Not all of the request will be implemented. &amp;nbsp;&lt;/P&gt;

&lt;P&gt;I review the record.&amp;nbsp; As there is workaround&amp;nbsp; as chao mentioned ( call dzgemm (&amp;amp;n, &amp;amp;alphas, A .. etc), the C interface are not needed, we got only one request since that time,&amp;nbsp; so it is still open for stronger justification like more user asked.&amp;nbsp;&amp;nbsp;Do you still need the feature?&amp;nbsp;&amp;nbsp;&amp;nbsp;If yes, could you please share more info about your project and the feature impact. If it is related to private info, you can send us private message.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;Ying&lt;/P&gt;</description>
    <pubDate>Fri, 10 Jul 2015 07:55:00 GMT</pubDate>
    <dc:creator>Ying_H_Intel</dc:creator>
    <dc:date>2015-07-10T07:55:00Z</dc:date>
    <item>
      <title>Missing cblas_dzgemm</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Missing-cblas-dzgemm/m-p/916773#M12650</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;the documentation of the MKL Library contains the description of the method DZGEMM which is not part of the BLAS Level 3 standard. It seems that the MKL Library contains the Fortran implementation only, is there a reason why a corresponding 'cblas_dzgemm' function is not available?&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;Markus&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2013 21:47:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Missing-cblas-dzgemm/m-p/916773#M12650</guid>
      <dc:creator>Marcus_W_1</dc:creator>
      <dc:date>2013-04-01T21:47:54Z</dc:date>
    </item>
    <item>
      <title>Markus,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Missing-cblas-dzgemm/m-p/916774#M12651</link>
      <description>&lt;P&gt;Markus,&lt;/P&gt;
&lt;P&gt;Currently, only the Fortran implementation are supported. If the data is column major, it can also be called by the C code with the following function:&lt;/P&gt;
&lt;P&gt;void DZGEMM(const char *transa, const char *transb, const MKL_INT *m, const MKL_INT *n, const MKL_INT *k, const MKL_Complex16 *alpha, const double *a, const MKL_INT *lda, const MKL_Complex16 *b, const MKL_INT *ldb, const MKL_Complex16 *beta, MKL_Complex16 *c, const MKL_INT *ldc);&lt;/P&gt;
&lt;P&gt;do you want to add a feature request on cblas interface support on this function as well?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt;Chao&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2013 06:00:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Missing-cblas-dzgemm/m-p/916774#M12651</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2013-04-02T06:00:21Z</dc:date>
    </item>
    <item>
      <title>Is this different from cblas</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Missing-cblas-dzgemm/m-p/916775#M12652</link>
      <description>&lt;P&gt;Is this different from cblas_zgemm() ?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2013 19:50:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Missing-cblas-dzgemm/m-p/916775#M12652</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2013-04-02T19:50:55Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Missing-cblas-dzgemm/m-p/916776#M12653</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;dzgemm is similar to zgemm but not identically. Matrix A of the operation C := \alpha * op(A) * op(B) + \beta *C contains real numbers in dzgemm, for zgemm complex numbers are assumed. In theory zgemm is more general than dzgemm but one has to cast each element of matrix A to a complex number and to store the results in a working array before calling zgemm.&lt;/P&gt;
&lt;P&gt;dzgemm is not part of the BLAS standard, the MKL library supports the Fortran implementation only. It should be an easy task to add the C interface cblas_dzgemm as well. How can I add a feature request for cblas_dzgemm?&lt;/P&gt;
&lt;P&gt;Thanks for your reply and rapid response,&lt;/P&gt;
&lt;P&gt;Markus&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2013 22:09:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Missing-cblas-dzgemm/m-p/916776#M12653</guid>
      <dc:creator>Marcus_W_1</dc:creator>
      <dc:date>2013-04-02T22:09:29Z</dc:date>
    </item>
    <item>
      <title>Markus,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Missing-cblas-dzgemm/m-p/916777#M12654</link>
      <description>&lt;P&gt;Markus,&lt;/P&gt;
&lt;P&gt;I added one feature request into our internal database on this, so it will be reviewed during the future product planning. Thanks for the report.&lt;/P&gt;
&lt;P&gt;thanks,&lt;BR /&gt;chao&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2013 01:21:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Missing-cblas-dzgemm/m-p/916777#M12654</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2013-04-03T01:21:30Z</dc:date>
    </item>
    <item>
      <title>Hi Markus,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Missing-cblas-dzgemm/m-p/916778#M12655</link>
      <description>&lt;P&gt;Hi Markus,&lt;/P&gt;

&lt;P&gt;The request&amp;nbsp;was recorded in to DPD200331505&amp;nbsp; add a&amp;nbsp; c interface for dzgemm.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;As you know, our product definition review the request and decide if implement or not based on product develop plan. Not all of the request will be implemented. &amp;nbsp;&lt;/P&gt;

&lt;P&gt;I review the record.&amp;nbsp; As there is workaround&amp;nbsp; as chao mentioned ( call dzgemm (&amp;amp;n, &amp;amp;alphas, A .. etc), the C interface are not needed, we got only one request since that time,&amp;nbsp; so it is still open for stronger justification like more user asked.&amp;nbsp;&amp;nbsp;Do you still need the feature?&amp;nbsp;&amp;nbsp;&amp;nbsp;If yes, could you please share more info about your project and the feature impact. If it is related to private info, you can send us private message.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;Ying&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2015 07:55:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Missing-cblas-dzgemm/m-p/916778#M12655</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2015-07-10T07:55:00Z</dc:date>
    </item>
  </channel>
</rss>

