<?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 Set Worker on Windows with Intel Core i3 in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Set-Worker-on-Windows-with-Intel-Core-i3/m-p/1046569#M48260</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I have used Cilk Plus to make my code computing parallel. But PC is installed Windows XP3, Intel Core i3, how many workers should I set to make the best performance for my code ?&lt;/P&gt;

&lt;P&gt;Thanks of all,&lt;/P&gt;

&lt;P&gt;Tam Nguyen&lt;/P&gt;</description>
    <pubDate>Mon, 23 Jun 2014 13:07:42 GMT</pubDate>
    <dc:creator>Tam_N_</dc:creator>
    <dc:date>2014-06-23T13:07:42Z</dc:date>
    <item>
      <title>Set Worker on Windows with Intel Core i3</title>
      <link>https://community.intel.com/t5/Software-Archive/Set-Worker-on-Windows-with-Intel-Core-i3/m-p/1046569#M48260</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I have used Cilk Plus to make my code computing parallel. But PC is installed Windows XP3, Intel Core i3, how many workers should I set to make the best performance for my code ?&lt;/P&gt;

&lt;P&gt;Thanks of all,&lt;/P&gt;

&lt;P&gt;Tam Nguyen&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2014 13:07:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Set-Worker-on-Windows-with-Intel-Core-i3/m-p/1046569#M48260</guid>
      <dc:creator>Tam_N_</dc:creator>
      <dc:date>2014-06-23T13:07:42Z</dc:date>
    </item>
    <item>
      <title>You're probably best off</title>
      <link>https://community.intel.com/t5/Software-Archive/Set-Worker-on-Windows-with-Intel-Core-i3/m-p/1046570#M48261</link>
      <description>&lt;P&gt;You're probably best off letting the Cilk runtime determine how many cores there are on the machine. By default it&amp;nbsp;will create a worker per core.&lt;/P&gt;
&lt;P&gt;Assuming that you've exposed enough parallelism, the workstealing scheduler should distribute the workload to the cores efficiently.&amp;nbsp;A rough estimate is that there should be approximately 10*C tasks, where "C" is the number of cores on your system. But don't spend too much time tuning that. You probably want to have some extra tasks, so if you move your workload into a system with more cores, there is enough parallelism to keep that system busy too.&lt;/P&gt;
&lt;P&gt;If you use a cilk_for loop, it will automatically break your range into approximately 8*C tasks, assuming your range is large enough.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; - Barry&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2014 13:57:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Set-Worker-on-Windows-with-Intel-Core-i3/m-p/1046570#M48261</guid>
      <dc:creator>Barry_T_Intel</dc:creator>
      <dc:date>2014-06-23T13:57:01Z</dc:date>
    </item>
    <item>
      <title>Hi Barry,</title>
      <link>https://community.intel.com/t5/Software-Archive/Set-Worker-on-Windows-with-Intel-Core-i3/m-p/1046571#M48262</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Barry,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I&amp;nbsp;control breaking my range by&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;using #pragma grainsize = expression to set&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;the grain size for one cilk_for loop, &amp;nbsp;but compiler throws &amp;nbsp;an error "&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;It is a # pragma that can not be identified: warning # 161". How can I resolve it ?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Thanks and Best Regards,&lt;BR /&gt;
	Tam Nguyen&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jul 2014 02:02:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Set-Worker-on-Windows-with-Intel-Core-i3/m-p/1046571#M48262</guid>
      <dc:creator>Tam_N_</dc:creator>
      <dc:date>2014-07-03T02:02:00Z</dc:date>
    </item>
    <item>
      <title>The pragma is</title>
      <link>https://community.intel.com/t5/Software-Archive/Set-Worker-on-Windows-with-Intel-Core-i3/m-p/1046572#M48263</link>
      <description>&lt;P&gt;The pragma is&lt;/P&gt;

&lt;P&gt;#pragma cilk grainsize = expression&lt;/P&gt;

&lt;P&gt;&lt;A href="https://software.intel.com/sites/products/documentation/doclib/stdxe/2013/composerxe/compiler/cpp-win/hh_goto.htm#GUID-8381DCC7-F629-4B56-9558-B1BEAF8890DF.htm" target="_blank"&gt;https://software.intel.com/sites/products/documentation/doclib/stdxe/2013/composerxe/compiler/cpp-win/hh_goto.htm#GUID-8381DCC7-F629-4B56-9558-B1BEAF8890DF.htm&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp;- Barry&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2014 13:36:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Set-Worker-on-Windows-with-Intel-Core-i3/m-p/1046572#M48263</guid>
      <dc:creator>Barry_T_Intel</dc:creator>
      <dc:date>2014-07-14T13:36:23Z</dc:date>
    </item>
  </channel>
</rss>

