<?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 Ref for optimizing hyper threading cpu ? in Intel® Moderncode for Parallel Architectures</title>
    <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/Ref-for-optimizing-hyper-threading-cpu/m-p/768671#M91</link>
    <description>Dear Every One:&lt;BR /&gt;&lt;BR /&gt;I have search reference ( article, blog, doc ..etc) about optimize for hyper threading.&lt;BR /&gt;&lt;BR /&gt;it is seems hyper threading is as ordinary core by openmp.&lt;BR /&gt;&lt;BR /&gt;I do not know what tool I could use for optimzing using HT.&lt;BR /&gt;&lt;BR /&gt;Could everyone give me a start?&lt;BR /&gt;&lt;BR /&gt;thank you.&lt;BR /&gt; &lt;BR /&gt;</description>
    <pubDate>Wed, 06 Apr 2011 08:55:27 GMT</pubDate>
    <dc:creator>Gaiger_Chen</dc:creator>
    <dc:date>2011-04-06T08:55:27Z</dc:date>
    <item>
      <title>Ref for optimizing hyper threading cpu ?</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/Ref-for-optimizing-hyper-threading-cpu/m-p/768671#M91</link>
      <description>Dear Every One:&lt;BR /&gt;&lt;BR /&gt;I have search reference ( article, blog, doc ..etc) about optimize for hyper threading.&lt;BR /&gt;&lt;BR /&gt;it is seems hyper threading is as ordinary core by openmp.&lt;BR /&gt;&lt;BR /&gt;I do not know what tool I could use for optimzing using HT.&lt;BR /&gt;&lt;BR /&gt;Could everyone give me a start?&lt;BR /&gt;&lt;BR /&gt;thank you.&lt;BR /&gt; &lt;BR /&gt;</description>
      <pubDate>Wed, 06 Apr 2011 08:55:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/Ref-for-optimizing-hyper-threading-cpu/m-p/768671#M91</guid>
      <dc:creator>Gaiger_Chen</dc:creator>
      <dc:date>2011-04-06T08:55:27Z</dc:date>
    </item>
    <item>
      <title>Ref for optimizing hyper threading cpu ?</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/Ref-for-optimizing-hyper-threading-cpu/m-p/768672#M92</link>
      <description>Normally, it's most productive simply to treat HyperThreading as a level of multi-threading allowing a core to support more threads, similar to, but (in most cases) not as effectively, as more cores. I think this agrees with your comment.&lt;BR /&gt;For Intel OpenMP, if you set KMP_AFFINITY=verbose, along with any of the usual options, you will see that the logical threads on each core are treated as interchangeable. This is because they share cache to a greater extent even than pairs of cores on the same CPU do. This also implies that one of the conditions for HyperThreading to show an advantage is that the threads share data in cache, or at least don't have a combined footprint exceeding cache size.&lt;BR /&gt;During your searches, you should have seen the comments about how the hyperthreads on Xeon compete for several important resources, such as FPU. Then, in highly optimized code such as MKL, more effective use of FPU is achieved by making only 1 thread active per core.&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Apr 2011 15:04:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/Ref-for-optimizing-hyper-threading-cpu/m-p/768672#M92</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2011-04-06T15:04:30Z</dc:date>
    </item>
    <item>
      <title>Ref for optimizing hyper threading cpu ?</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/Ref-for-optimizing-hyper-threading-cpu/m-p/768673#M93</link>
      <description>I agree with the fact that sometimes it's best to make only 1 thread per core. Therefore I would like to know how to detect if hyperthreading is enabled. If I can't do it with omp, maybe I can use a call to another library. @TimP, do you know how I can achieve that?</description>
      <pubDate>Sat, 23 Apr 2011 09:40:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/Ref-for-optimizing-hyper-threading-cpu/m-p/768673#M93</guid>
      <dc:creator>tbastiani</dc:creator>
      <dc:date>2011-04-23T09:40:32Z</dc:date>
    </item>
    <item>
      <title>Ref for optimizing hyper threading cpu ?</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/Ref-for-optimizing-hyper-threading-cpu/m-p/768674#M94</link>
      <description>The documentation for several Intel software products, including MKL, OpenMP (KMP_AFFINITY), and MPI, deals with this, perhaps not in a fully satisfactory way. All of them rely on ability to do it under OpenMP (using functionality not specified in OpenMP standard), and on updated capabilities for each significant platform change.&lt;BR /&gt;Under linux (when the kernel is sufficiently up to date for the platform), you have facilities showing information about hyperthreading, as displayed e.g. in /proc/cpuinfo and by irqbalance -debug</description>
      <pubDate>Sat, 23 Apr 2011 14:19:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/Ref-for-optimizing-hyper-threading-cpu/m-p/768674#M94</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2011-04-23T14:19:33Z</dc:date>
    </item>
    <item>
      <title>Ref for optimizing hyper threading cpu ?</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/Ref-for-optimizing-hyper-threading-cpu/m-p/768675#M95</link>
      <description>Chen,&lt;BR /&gt;&lt;BR /&gt;Can you describe in greater detail the HT platforms you will be using, and the type of application?&lt;BR /&gt;&lt;BR /&gt;This is one such threading toolkit that directly addresses this issue. I wrote it, so this may be a shameless example of self promotion. A few examples of the capability are:&lt;BR /&gt;&lt;BR /&gt;Assume you have an integer-only parallel task (i.e. schedule all threads)&lt;BR /&gt;&lt;BR /&gt; parallel_for(foo, iBegin, iEnd, arg1, arg2, ... argn);&lt;BR /&gt;&lt;BR /&gt;Assume FP intensive task (i.e. you want one HT thread per core)&lt;BR /&gt;&lt;BR /&gt; parallel_for(OneEachL1$, foo, iBegin, iEnd, arg1, arg2, ... argn);&lt;BR /&gt;&lt;BR /&gt;Assume you have FP intensive task .AND. integer intensive task&lt;BR /&gt;&lt;BR /&gt; parallel_invoke(&lt;BR /&gt; L1$,&lt;BR /&gt; [&amp;amp;](){ parallel_for(OneEachL1$, fooFP, iBegin, iEnd, arg1, arg2, ... argn); },&lt;BR /&gt; [&amp;amp;](){ parallel_for(OneEachL1$, fooInteger, iBegin, iEnd, arg1, arg2, ... argn); });&lt;BR /&gt;&lt;BR /&gt;Jim Dempsey&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Apr 2011 15:42:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/Ref-for-optimizing-hyper-threading-cpu/m-p/768675#M95</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2011-04-25T15:42:54Z</dc:date>
    </item>
  </channel>
</rss>

