<?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 IMSL with Parallelization in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-with-Parallelization/m-p/835194#M54561</link>
    <description>Thank you.&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I turned off the parallelization by adding the command: &lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;KMP_AFFINITY=proclist=[0],explicit&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;at Project&amp;gt;Properties&amp;gt;Debuggind&amp;gt;Enviroment&lt;/DIV&gt;&lt;DIV&gt;This way the code only use the processor 0.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;To parallelize (4 cores processor) again it is necessary to change the comand to:&lt;/DIV&gt;&lt;DIV&gt;KMP_AFFINITY=proclist=[0,1,2,3],explicit&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Fri, 09 Sep 2011 03:05:17 GMT</pubDate>
    <dc:creator>eleteroboltz</dc:creator>
    <dc:date>2011-09-09T03:05:17Z</dc:date>
    <item>
      <title>IMSL with Parallelization</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-with-Parallelization/m-p/835190#M54557</link>
      <description>I'm using&lt;SPAN style="font-family: verdana, sans-serif;"&gt;Intel Visual Fortran 11.1 x64 and&lt;/SPAN&gt;&lt;SPAN style="font-family: verdana, sans-serif;"&gt;IMSL x64 v7.0 with&lt;/SPAN&gt;&lt;SPAN style="font-family: verdana, sans-serif;"&gt;Microsoft Visual Studio 2008.&lt;/SPAN&gt;&lt;DIV&gt;&lt;SPAN style="font-family: verdana, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: verdana, sans-serif;"&gt;I'm using the routine IVPAG from IMSL and I noticed that it is using automatically parallelism to solve the problem, since I see in task manager my 4 core processor running all at 100%.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: verdana, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;I'm doing some benchmark code and I would like the IMSL to &lt;B&gt;not&lt;/B&gt;use CPU parallelization.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;How do I disable parallel computing in my case???&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks in advance.&lt;/DIV&gt;</description>
      <pubDate>Tue, 06 Sep 2011 03:53:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-with-Parallelization/m-p/835190#M54557</guid>
      <dc:creator>eleteroboltz</dc:creator>
      <dc:date>2011-09-06T03:53:41Z</dc:date>
    </item>
    <item>
      <title>IMSL with Parallelization</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-with-Parallelization/m-p/835191#M54558</link>
      <description>You will have to ask Rogue Wave about whether it is possible to turn off threading in IMSL 7. Intel does not provide support for that version of IMSL.</description>
      <pubDate>Tue, 06 Sep 2011 13:43:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-with-Parallelization/m-p/835191#M54558</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-09-06T13:43:11Z</dc:date>
    </item>
    <item>
      <title>IMSL with Parallelization</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-with-Parallelization/m-p/835192#M54559</link>
      <description>Did you look into OMP_NUM_THREADS, or, if it is using MKL, at the corresponding MKL options, including linking mkl_sequential?</description>
      <pubDate>Tue, 06 Sep 2011 14:01:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-with-Parallelization/m-p/835192#M54559</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2011-09-06T14:01:53Z</dc:date>
    </item>
    <item>
      <title>IMSL with Parallelization</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-with-Parallelization/m-p/835193#M54560</link>
      <description>&lt;P&gt;Try placing a keyboard input routine ("Press any key to continue") into the front of the program (console input or message box).&lt;BR /&gt;Run, then when at prompt, launch task manager, locate your process (should be program name)&lt;BR /&gt;right click and do Properties. You should find check boxes for Affinity. Unselect all but one of the check boxes. Close Task Manager and click into your app window and press Enter.&lt;BR /&gt;You can also use WIN32 API to set Affinity restrictions. This has to be done before IMSL launches additional threads.&lt;BR /&gt;&lt;BR /&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2011 16:39:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-with-Parallelization/m-p/835193#M54560</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2011-09-06T16:39:43Z</dc:date>
    </item>
    <item>
      <title>IMSL with Parallelization</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-with-Parallelization/m-p/835194#M54561</link>
      <description>Thank you.&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I turned off the parallelization by adding the command: &lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;KMP_AFFINITY=proclist=[0],explicit&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;at Project&amp;gt;Properties&amp;gt;Debuggind&amp;gt;Enviroment&lt;/DIV&gt;&lt;DIV&gt;This way the code only use the processor 0.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;To parallelize (4 cores processor) again it is necessary to change the comand to:&lt;/DIV&gt;&lt;DIV&gt;KMP_AFFINITY=proclist=[0,1,2,3],explicit&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 09 Sep 2011 03:05:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-with-Parallelization/m-p/835194#M54561</guid>
      <dc:creator>eleteroboltz</dc:creator>
      <dc:date>2011-09-09T03:05:17Z</dc:date>
    </item>
  </channel>
</rss>

