<?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 The solution is error by using pardiso solver while set mkl_thread_num=2 in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1360766#M32747</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I found some error while using pardiso for solve the linear question. The attachments are example source code and data files.&lt;/P&gt;
&lt;P&gt;The example program just do two things:&lt;/P&gt;
&lt;P&gt;1. solve a 4x4 sparse linear equations,&amp;nbsp; and calculate |Ax-b|, it should be zero theoretically,&lt;/P&gt;
&lt;P&gt;2. solve a large problem(1102x1102) read from data file,&amp;nbsp;and calculate |Ax-b|, it should be zero theoretically,&lt;/P&gt;
&lt;P&gt;The command line will be:&amp;nbsp; a.exe ***.dat n&lt;/P&gt;
&lt;P&gt;first argument is data filename, and the second argument is thread number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first step, run with thread number 1, output is :&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;$./qt-snippet matrix1.dat 1&lt;BR /&gt;MKL Version: 2018.0.3 Build 20180406_Intel(R) 64 architecture&lt;BR /&gt;mkl_max_threads:1&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------analysis-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------factsolve-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;BR /&gt;Solve linear equations difference: |Ax-b|=0&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;BR /&gt;read matrix rows:1102&lt;BR /&gt;read matrix cells:7641&lt;BR /&gt;read rhs size:1102&lt;BR /&gt;read data finished.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------analysis-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------factsolve-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;BR /&gt;Solve linear equations difference: |Ax-b|=2.25537e-15&lt;/P&gt;
&lt;P&gt;Two problems are all correct.&lt;/P&gt;
&lt;P&gt;The second step, run with thread number 2, the output is :&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;$ ./qt-snippet matrix1.dat 2&lt;BR /&gt;MKL Version: 2018.0.3 Build 20180406_Intel(R) 64 architecture&lt;BR /&gt;mkl_max_threads:2&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------analysis-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------factsolve-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;BR /&gt;Solve linear equations difference: |Ax-b|=0&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;BR /&gt;read matrix rows:1102&lt;BR /&gt;read matrix cells:7641&lt;BR /&gt;read rhs size:1102&lt;BR /&gt;read data finished.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------analysis-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;BR /&gt;OMP: Info #270: omp_get_nested routine deprecated, please use omp_get_max_active_levels instead.&lt;BR /&gt;OMP: Info #270: omp_set_nested routine deprecated, please use omp_set_max_active_levels instead.&lt;BR /&gt;OMP: Info #270: omp_set_nested routine deprecated, please use omp_set_max_active_levels instead.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------factsolve-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;BR /&gt;Solve linear equations difference: |Ax-b|=0.0028809&lt;BR /&gt;verify solution error.&lt;/P&gt;
&lt;P&gt;Now, the simple problem 4x4 is correct, but the solution of large problem has error. If I run the last step more times, the result of |Ax-b| will change to another value:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;BR /&gt;Solve linear equations difference: |Ax-b|=0.00179701&lt;BR /&gt;verify solution error.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;BR /&gt;Solve linear equations difference: |Ax-b|=0.00149793&lt;BR /&gt;verify solution error.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are there something error in my source? pardiso control parameters? or solve progress ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 16 Feb 2022 04:28:50 GMT</pubDate>
    <dc:creator>lutx</dc:creator>
    <dc:date>2022-02-16T04:28:50Z</dc:date>
    <item>
      <title>The solution is error by using pardiso solver while set mkl_thread_num=2</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1360766#M32747</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I found some error while using pardiso for solve the linear question. The attachments are example source code and data files.&lt;/P&gt;
&lt;P&gt;The example program just do two things:&lt;/P&gt;
&lt;P&gt;1. solve a 4x4 sparse linear equations,&amp;nbsp; and calculate |Ax-b|, it should be zero theoretically,&lt;/P&gt;
&lt;P&gt;2. solve a large problem(1102x1102) read from data file,&amp;nbsp;and calculate |Ax-b|, it should be zero theoretically,&lt;/P&gt;
&lt;P&gt;The command line will be:&amp;nbsp; a.exe ***.dat n&lt;/P&gt;
&lt;P&gt;first argument is data filename, and the second argument is thread number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first step, run with thread number 1, output is :&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;$./qt-snippet matrix1.dat 1&lt;BR /&gt;MKL Version: 2018.0.3 Build 20180406_Intel(R) 64 architecture&lt;BR /&gt;mkl_max_threads:1&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------analysis-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------factsolve-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;BR /&gt;Solve linear equations difference: |Ax-b|=0&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;BR /&gt;read matrix rows:1102&lt;BR /&gt;read matrix cells:7641&lt;BR /&gt;read rhs size:1102&lt;BR /&gt;read data finished.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------analysis-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------factsolve-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;BR /&gt;Solve linear equations difference: |Ax-b|=2.25537e-15&lt;/P&gt;
&lt;P&gt;Two problems are all correct.&lt;/P&gt;
&lt;P&gt;The second step, run with thread number 2, the output is :&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;$ ./qt-snippet matrix1.dat 2&lt;BR /&gt;MKL Version: 2018.0.3 Build 20180406_Intel(R) 64 architecture&lt;BR /&gt;mkl_max_threads:2&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------analysis-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------factsolve-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;BR /&gt;Solve linear equations difference: |Ax-b|=0&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;BR /&gt;read matrix rows:1102&lt;BR /&gt;read matrix cells:7641&lt;BR /&gt;read rhs size:1102&lt;BR /&gt;read data finished.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------analysis-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;BR /&gt;OMP: Info #270: omp_get_nested routine deprecated, please use omp_get_max_active_levels instead.&lt;BR /&gt;OMP: Info #270: omp_set_nested routine deprecated, please use omp_set_max_active_levels instead.&lt;BR /&gt;OMP: Info #270: omp_set_nested routine deprecated, please use omp_set_max_active_levels instead.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------factsolve-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;BR /&gt;Solve linear equations difference: |Ax-b|=0.0028809&lt;BR /&gt;verify solution error.&lt;/P&gt;
&lt;P&gt;Now, the simple problem 4x4 is correct, but the solution of large problem has error. If I run the last step more times, the result of |Ax-b| will change to another value:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;BR /&gt;Solve linear equations difference: |Ax-b|=0.00179701&lt;BR /&gt;verify solution error.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;BR /&gt;Solve linear equations difference: |Ax-b|=0.00149793&lt;BR /&gt;verify solution error.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are there something error in my source? pardiso control parameters? or solve progress ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Feb 2022 04:28:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1360766#M32747</guid>
      <dc:creator>lutx</dc:creator>
      <dc:date>2022-02-16T04:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: The solution is error by using pardiso solver while set mkl_thread_num=2</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1360848#M32749</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for posting on Intel Communities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for sharing the sample reproducer and steps. We are investigating the shared issue at our end with multiple threads as mentioned.&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>Tue, 08 Mar 2022 12:00:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1360848#M32749</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2022-03-08T12:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: The solution is error by using pardiso solver while set mkl_thread_num=2</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1363055#M32780</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have tried compiling and executing the code shared by you and we were able to get the results as mentioned. We'll get back to you soon on this after performing work arounds.&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>Thu, 24 Feb 2022 07:38:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1363055#M32780</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2022-02-24T07:38:36Z</dc:date>
    </item>
    <item>
      <title>Re:The solution is error by using pardiso solver while set mkl_thread_num=2</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1364788#M32843</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please export the environment variable MKL_CBWR with value "AUTO" and try running the code, as this turns on the CNR(Conditional Numerical&amp;nbsp;Reproducibility) mode.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;export MKL_CBWR="AUTO"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please refer the below link for setting the environment variable for CNR.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/onemkl-linux-developer-guide/top/obtaining-numerically-reproducible-results/set-env-var-for-cond-numerical-reproducibility.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/develop/documentation/onemkl-linux-developer-guide/top/obtaining-numerically-reproducible-results/set-env-var-for-cond-numerical-reproducibility.html&lt;/A&gt;&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;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Mar 2022 13:00:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1364788#M32843</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2022-03-01T13:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: The solution is error by using pardiso solver while set mkl_thread_num=2</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1365330#M32854</link>
      <description>&lt;P&gt;Hi Shanmukh,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your reply.&lt;/P&gt;
&lt;P&gt;Yes, result is correct after set environment.&amp;nbsp; and :&lt;/P&gt;
&lt;P&gt;1. is it the final solution ?&lt;/P&gt;
&lt;P&gt;2. Will this setting affect other aspects, such as performance, speed, etc.&lt;/P&gt;
&lt;P&gt;3. How to choose appropriate value for this setting?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;lu@lu:~$ export MKL_CBWR="AUTO"&lt;BR /&gt;lu@lu:~$ ./qt-snippet matrix1.dat 2&lt;BR /&gt;MKL Ver0sion: 2018.0.3 Build 20180406_Intel(R) 64 architecture&lt;BR /&gt;mkl_max_threads:2&lt;BR /&gt;----------------------analysis-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;BR /&gt;----------------------factsolve-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;BR /&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 4, non-zero cells 10&lt;BR /&gt;Solve linear equations difference: |Ax-b|=0&lt;BR /&gt;read matrix rows:1102&lt;BR /&gt;read matrix cells:7641&lt;BR /&gt;read rhs size:1102&lt;BR /&gt;read data finished. &lt;BR /&gt;----------------------analysis-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;BR /&gt;----------------------factsolve-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;BR /&gt;----------------------release-------------------------&lt;BR /&gt;Rows of Matrix: 1102, non-zero cells 7641&lt;BR /&gt;Solve linear equations difference: |Ax-b|=2.33677e-15&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2022 01:53:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1365330#M32854</guid>
      <dc:creator>lutx</dc:creator>
      <dc:date>2022-03-03T01:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: The solution is error by using pardiso solver while set mkl_thread_num=2</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1365812#M32865</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;1. is it the final solution ?&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Conditional numerical reproducibility (CNR) is a functionality that enables you to obtain reproducible results from oneMKL routines.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;When CNR mode gets enabled,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;-&amp;gt; It allows you choose a specific code branch of Intel® oneAPI Math Kernel Library that corresponds to the instruction set architecture (ISA) that you target. You can specify the code branch and other CNR options using the MKL_CBWR environment variable.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;-&amp;gt; It uses the standard ISA-based dispatching model while ensuring fixed cache sizes, deterministic reductions, and static scheduling&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;For more information regarding CNR mode, you could refer to below link&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A style="font-size: 11pt;" href="https://www.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top/support-functions/conditional-numerical-reproducibility-control.html" target="_blank" rel="noopener noreferrer"&gt;https://www.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top/support-functions/conditional-numerical-reproducibility-control.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;2. Will this setting affect other aspects, such as performance, speed, etc.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;Since it runs a CPU check to return a CNR branch that is optimized for the processor where the program is currently running it might not affect performance related parameters.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;3. How to choose appropriate value for this setting?&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please refer the below link regarding appropriate values, specifying the code branches.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A style="font-size: 11pt;" href="https://www.intel.com/content/www/us/en/develop/documentation/onemkl-linux-developer-guide/top/obtaining-numerically-reproducible-results/specifying-code-branches.html" target="_blank" rel="noopener noreferrer"&gt;https://www.intel.com/content/www/us/en/develop/documentation/onemkl-linux-developer-guide/top/obtaining-numerically-reproducible-results/specifying-code-branches.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Shanmukh.SS&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 13:49:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1365812#M32865</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-08-07T13:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: Re:The solution is error by using pardiso solver while set mkl_thread_num=2</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1366247#M32872</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I found the CNR mode is not effective for every cases I meet.&lt;/P&gt;
&lt;P&gt;Finally, I got the fundamental cause of my error is : iparam[12] should be set to 1 because the matrix is unsymmetrical , and some diagonal item may be too small. All solutions are correct after set the iparam[12]. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Tianxiong Lu&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 05:30:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1366247#M32872</guid>
      <dc:creator>lutx</dc:creator>
      <dc:date>2022-03-07T05:30:38Z</dc:date>
    </item>
    <item>
      <title>Re:The solution is error by using pardiso solver while set mkl_thread_num=2</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1366377#M32875</link>
      <description>&lt;P&gt;Hi Lutx,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Glad to know that your issue is resolved. If you need any additional information, please post a new question as this thread will no longer be monitored by Intel.&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;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Mar 2022 15:31:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/The-solution-is-error-by-using-pardiso-solver-while-set-mkl/m-p/1366377#M32875</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2022-03-07T15:31:38Z</dc:date>
    </item>
  </channel>
</rss>

