<?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 Re: mkl_?imatcopy in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1519110#M35007</link>
    <description>&lt;P&gt;Hi John,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;A gentle reminder:&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Could you please get back to us with a working sample reproducer? We would like to reproduce it at our end and help you accordingly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Shanmukh.SS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Sep 2023 06:58:36 GMT</pubDate>
    <dc:creator>ShanmukhS_Intel</dc:creator>
    <dc:date>2023-09-01T06:58:36Z</dc:date>
    <item>
      <title>mkl_?imatcopy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1516139#M34974</link>
      <description>&lt;P&gt;I am testing the &lt;SPAN&gt;mkl_simatcopy function to do a simple transposition&amp;nbsp;for a square 3x3 matrix using this line:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;mkl_simatcopy('r', 't', 3, 3, 1, a, 3, 3);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;where a is a float array with size 9. But I keep getting this error&lt;/P&gt;&lt;P&gt;Exception thrown at 0x00007FFB16140C93 in testhost.net48.exe: 0xC0000005: Access violation reading location 0x00007FFC3F800000.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using mkl verison&amp;nbsp;2023.1.0.46356.&lt;/P&gt;&lt;P&gt;Any help appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 17:00:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1516139#M34974</guid>
      <dc:creator>JohnZhang</dc:creator>
      <dc:date>2023-08-21T17:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: mkl_?imatcopy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1516908#M34988</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for posting in Intel Communities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please get back to us with a working sample reproducer so that we can try recreating the issue at our end and help you accordingly?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Shanmukh.SS&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 06:59:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1516908#M34988</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-09-01T06:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: mkl_?imatcopy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1519110#M35007</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;A gentle reminder:&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Could you please get back to us with a working sample reproducer? We would like to reproduce it at our end and help you accordingly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Shanmukh.SS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 06:58:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1519110#M35007</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-09-01T06:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Re:mkl_?imatcopy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1519341#M35010</link>
      <description>&lt;P&gt;I have exposed the function "mkl_simatcopy" through a native C++ DLL for a C# project to call in Visual Studio. Here is the code snippet.&lt;/P&gt;&lt;P&gt;I tried to do a 2x3 matrix tranpose&lt;/P&gt;&lt;P&gt;float[] a = new float[6]&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; 1, 2, 3,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; 4, 5, 6,&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;fixed (float* pa = a)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;mkl_simatcopy('R', 'T', 2, 3, 1, pa, 3, 2);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the exception message:&lt;/P&gt;&lt;P&gt;Exception thrown at 0x00007FFCFC5D0C93 (Native.Mkl.dll) in testhost.net48.exe: 0xC0000005: Access violation reading location 0x000001733F800000.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2023 13:50:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1519341#M35010</guid>
      <dc:creator>JohnZhang</dc:creator>
      <dc:date>2023-08-31T13:50:38Z</dc:date>
    </item>
    <item>
      <title>Re:mkl_?imatcopy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1519679#M35020</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for sharing the code snippet. However, as you were using Visual Studio, we would like to request you share with us your project file zipped and share the steps to reproduce it(if any). We will reproduce the issue at our end and will help you accordingly.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Sep 2023 11:53:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1519679#M35020</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-09-01T11:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Re:mkl_?imatcopy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1520670#M35046</link>
      <description>&lt;P&gt;I have a VS solution folder which contains the lib packages (mkl and tbb) installed from nuget, about 2.3G. How do I send that to you?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 12:52:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1520670#M35046</guid>
      <dc:creator>JohnZhang</dc:creator>
      <dc:date>2023-09-05T12:52:34Z</dc:date>
    </item>
    <item>
      <title>Re:mkl_?imatcopy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1521177#M35057</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please let us know the size after compressing the project folder? In addition, if it's huge, you could try isolating the issue and send us a sample working reproducer. That too helps us to take up the issue further and help you accordingly.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Sep 2023 16:24:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1521177#M35057</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-09-06T16:24:59Z</dc:date>
    </item>
    <item>
      <title>Re:mkl_?imatcopy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1523322#M35113</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A gentle reminder:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Could you please try isolating the issue and send us a sample working reproducer and steps to reproduce it? It helps us in recreating the issue at our end and help you accordingly.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Sep 2023 12:32:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1523322#M35113</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-09-13T12:32:57Z</dc:date>
    </item>
    <item>
      <title>Re:mkl_?imatcopy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1525727#M35146</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A gentle reminder:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Could you please try isolating the issue and send us a sample working reproducer and steps to reproduce it? It helps us in recreating the issue at our end and help you accordingly.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Sep 2023 09:26:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-imatcopy/m-p/1525727#M35146</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-09-20T09:26:32Z</dc:date>
    </item>
  </channel>
</rss>

