<?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 Profiling code that uses MKL ( mkl_vml_kernel_sError ) in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Profiling-code-that-uses-MKL-mkl-vml-kernel-sError/m-p/765590#M209</link>
    <description>Is there a way to be notified or trap these errors to help us finding out from where it comes from? It doesn't seems to throw std::exceptions... I saw that there is an internal function called xerbla() that can be replaced to receive input values errors but currently it doesn't seems to work (my own implementation is never called), is there something special I should know on how to specify our own xerbla() function? &lt;BR /&gt;&lt;BR /&gt;Also, we're not getting any error message printed in the console from the internal MKL xerbla function, do we need to enable something to get the errors printed in the console from internal xerbla function ( environment variable or call to a specific MKL function) ?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Yanick</description>
    <pubDate>Fri, 26 Aug 2011 14:11:41 GMT</pubDate>
    <dc:creator>Yanick_Cote</dc:creator>
    <dc:date>2011-08-26T14:11:41Z</dc:date>
    <item>
      <title>Profiling code that uses MKL ( mkl_vml_kernel_sError )</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Profiling-code-that-uses-MKL-mkl-vml-kernel-sError/m-p/765587#M206</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;We are using MKL 10.3 in our application and we are currently performing performance analysis and we get one symbol in profiling reports from MKL that we can't explain : mkl_vml_kernel_sError.&lt;BR /&gt;&lt;BR /&gt;This symbol is the highest ranked CPU time consumer. We are unable to find any information about this function, can you please explain briefly what is this symbol/function and is it normal to see it highly ranked in profiling reports?&lt;BR /&gt;&lt;BR /&gt;Information about our configuration:&lt;BR /&gt;&lt;BR /&gt;Running on Linux 64-bits. Statically linked to MKL sequential implementation (we take care of threading).&lt;BR /&gt;&lt;BR /&gt;Thank you!&lt;BR /&gt;&lt;BR /&gt;Yanick</description>
      <pubDate>Thu, 25 Aug 2011 15:16:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Profiling-code-that-uses-MKL-mkl-vml-kernel-sError/m-p/765587#M206</guid>
      <dc:creator>Yanick_Cote</dc:creator>
      <dc:date>2011-08-25T15:16:12Z</dc:date>
    </item>
    <item>
      <title>Profiling code that uses MKL ( mkl_vml_kernel_sError )</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Profiling-code-that-uses-MKL-mkl-vml-kernel-sError/m-p/765588#M207</link>
      <description>Yanick,&lt;DIV&gt;that's pretty tricky to answer on your questions without the example of the code.&lt;/DIV&gt;&lt;DIV&gt;we belived that your testhas "bad" input array which generates
big number of special results and error codes (negative values for logarithm,
big numbers for exponential, etc., for example) because of&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;the mkl_vml_kernel_sError function is "error
handler". It is being called for input values which are out of function
working domain and they generate exceptions and error codes.&lt;/P&gt;&lt;P&gt;--Gennady&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 26 Aug 2011 07:26:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Profiling-code-that-uses-MKL-mkl-vml-kernel-sError/m-p/765588#M207</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2011-08-26T07:26:15Z</dc:date>
    </item>
    <item>
      <title>Profiling code that uses MKL ( mkl_vml_kernel_sError )</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Profiling-code-that-uses-MKL-mkl-vml-kernel-sError/m-p/765589#M208</link>
      <description>That already helps me a lot understanding what is happening, thank you!&lt;BR /&gt;&lt;BR /&gt;Currently, I cannot provide you a piece of code since I don't know yet from where this comes from, we are using MKL intensively so it may come from almost anywhere in the code... I only see this scoring very high in the performance profiling tool we are using, without knowing yet who is the caller. I'm going to investigate this right now.&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Yanick</description>
      <pubDate>Fri, 26 Aug 2011 12:53:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Profiling-code-that-uses-MKL-mkl-vml-kernel-sError/m-p/765589#M208</guid>
      <dc:creator>Yanick_Cote</dc:creator>
      <dc:date>2011-08-26T12:53:11Z</dc:date>
    </item>
    <item>
      <title>Profiling code that uses MKL ( mkl_vml_kernel_sError )</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Profiling-code-that-uses-MKL-mkl-vml-kernel-sError/m-p/765590#M209</link>
      <description>Is there a way to be notified or trap these errors to help us finding out from where it comes from? It doesn't seems to throw std::exceptions... I saw that there is an internal function called xerbla() that can be replaced to receive input values errors but currently it doesn't seems to work (my own implementation is never called), is there something special I should know on how to specify our own xerbla() function? &lt;BR /&gt;&lt;BR /&gt;Also, we're not getting any error message printed in the console from the internal MKL xerbla function, do we need to enable something to get the errors printed in the console from internal xerbla function ( environment variable or call to a specific MKL function) ?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Yanick</description>
      <pubDate>Fri, 26 Aug 2011 14:11:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Profiling-code-that-uses-MKL-mkl-vml-kernel-sError/m-p/765590#M209</guid>
      <dc:creator>Yanick_Cote</dc:creator>
      <dc:date>2011-08-26T14:11:41Z</dc:date>
    </item>
    <item>
      <title>Profiling code that uses MKL ( mkl_vml_kernel_sError )</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Profiling-code-that-uses-MKL-mkl-vml-kernel-sError/m-p/765591#M210</link>
      <description>I found the dynamic way to diagnose errors (without the need to rebuild MKL for xerbla) by using vmlSetMode and vmlSetErrorCallback.</description>
      <pubDate>Fri, 26 Aug 2011 15:05:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Profiling-code-that-uses-MKL-mkl-vml-kernel-sError/m-p/765591#M210</guid>
      <dc:creator>Yanick_Cote</dc:creator>
      <dc:date>2011-08-26T15:05:24Z</dc:date>
    </item>
  </channel>
</rss>

