<?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 There are several technical in Intel® Moderncode for Parallel Architectures</title>
    <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/A-few-practical-questions-about-the-hyper-threading-technology/m-p/986621#M5855</link>
    <description>There are several technical articles on Intel® Developer Zone about Intel® Hyper-Threading Technology: &lt;BR /&gt;
&lt;A href="http://software.intel.com/en-us/articles/performance-insights-to-intel-hyper-threading-technology/"&gt;Performance Insights to Intel® Hyper-Threading Technology&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://software.intel.com/en-us/articles/intel-hyper-threading-technology-analysis-of-the-ht-effects-on-a-server-transactional-workload"&gt;Intel® Hyper-Threading Technology: Analysis of the HT Effects on a Server Transactional Workload&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://software.intel.com/en-us/articles/hyper-threading-be-sure-you-know-how-to-correctly-measure-your-servers-end-user-response-time-1"&gt;Hyper-Threading: Be Sure You Know How to Correctly Measure Your Server’s End-User Response Time&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 20 Sep 2012 12:38:45 GMT</pubDate>
    <dc:creator>Roman_D_Intel</dc:creator>
    <dc:date>2012-09-20T12:38:45Z</dc:date>
    <item>
      <title>A few practical questions about the hyper-threading technology</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/A-few-practical-questions-about-the-hyper-threading-technology/m-p/986616#M5850</link>
      <description>How do you do,&lt;BR /&gt;&lt;BR /&gt;I have a few questions regarding the hyper-threading technology. I'm quite experienced in multithreaded computations in general, but have virtually no experience with HT.&lt;BR /&gt;&lt;BR /&gt;(i) AFAIK, the very essence of HT is that when the currenlty running thread does not use some resources of the processor/core, another one can use them. Does it mean that the potential performance is better for threads running completely different tasks (e.g., one thread does the floating-point computations and the other one does not)? Because the other way they may compete for the same resources. Other words: does task parallelizm perform better with HT than data parallelizm?&lt;BR /&gt;&lt;BR /&gt;(ii) I'm particularly interested in computations, requiring directed rounding (interval computations). Does setting the rounding mode affect *both* threads running on a core, using HT? This would be very unpleasent...&lt;BR /&gt;&lt;BR /&gt;(iii) According to the Wikipedia article about Hyper-threading, practical performance boosts are about 10-20%. What are your experiences?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for all answers or hints&lt;BR /&gt;Best regards&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Bartlomiej&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Aug 2012 13:12:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/A-few-practical-questions-about-the-hyper-threading-technology/m-p/986616#M5850</guid>
      <dc:creator>Bartlomiej</dc:creator>
      <dc:date>2012-08-24T13:12:42Z</dc:date>
    </item>
    <item>
      <title>A few practical questions about the hyper-threading technology</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/A-few-practical-questions-about-the-hyper-threading-technology/m-p/986617#M5851</link>
      <description>(i) There are a few examples of effectiveness of HT for threads working on the same task but using different CPU resources, such as one thread performing floating point calculations and the other managing MPI communication. Of course, the case which is used to justify the expenditure on HT is resolution of frequent data page misses, as in certain data base applications.&amp;nbsp; Another case where I see HT producing throughput improvement of more than 15% is where an application spends a majority of its time in floating point divide.&amp;nbsp; The Core i7 update 3 architecture should cut down these delays significantly, consequently cutting the advantage seen with HT.&lt;BR /&gt;You could hardly generalize this to saying task parallelism is expected to work.&lt;BR /&gt;&lt;BR /&gt;(ii) Some of the CPU settings which become important in applications which benefit from HT are controlled by MSR settings (typically set on the BIOS option screen), which apply to all jobs running on the CPU.&amp;nbsp; Rounding modes set at user level by the application would apply to individual threads.&amp;nbsp; If you had floating point applications where neither thread ties up 50% of the floating point unit resources or cache and hardware buffers, this shouldn't stop you from using HT.&lt;BR /&gt;&lt;BR /&gt;(iii) Assuming you're considering Intel64 CPUs, a 10% boost by using HT is better than average.&amp;nbsp; The numbers you mention were set way back in the days of single core HT CPUs; more effort is involved when attempting to take advantage of HT on a CPU with 4 or more physical cores (8 or more threads supported by HT).</description>
      <pubDate>Sat, 25 Aug 2012 12:03:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/A-few-practical-questions-about-the-hyper-threading-technology/m-p/986617#M5851</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2012-08-25T12:03:08Z</dc:date>
    </item>
    <item>
      <title>A few practical questions about the hyper-threading technology</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/A-few-practical-questions-about-the-hyper-threading-technology/m-p/986618#M5852</link>
      <description>Thanks a lot for your in-depth answer.&lt;BR /&gt;Well, the HT technology is interesting as a gadget, but it does not seem very promising. Well, at least for my needs, fo course!&lt;BR /&gt;Many thanks and best regards&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Aug 2012 16:06:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/A-few-practical-questions-about-the-hyper-threading-technology/m-p/986618#M5852</guid>
      <dc:creator>Bartlomiej</dc:creator>
      <dc:date>2012-08-28T16:06:53Z</dc:date>
    </item>
    <item>
      <title>You would probably need to</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/A-few-practical-questions-about-the-hyper-threading-technology/m-p/986619#M5853</link>
      <description>You would probably need to post an actual example, preferably using a support forum specific to the compiler you have in mind.</description>
      <pubDate>Sat, 08 Sep 2012 11:45:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/A-few-practical-questions-about-the-hyper-threading-technology/m-p/986619#M5853</guid>
      <dc:creator>sureshgupta22</dc:creator>
      <dc:date>2012-09-08T11:45:52Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;Well, the HT technology is</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/A-few-practical-questions-about-the-hyper-threading-technology/m-p/986620#M5854</link>
      <description>&amp;gt;&amp;gt;Well, the HT technology is interesting as a gadget, but it does not seem very promising. Well, at least for my needs, fo course!

The system you run your application on is likely performing other functions useful to your application. Examples: display managment, file I/O management and buffering, networking, etc... A processor with say 4 cores, each with HT, has ample capacity to run these other non-FP functions with little impact on your application (assuming you restricted your application to 1 thread of each core).

Jim Dempsey</description>
      <pubDate>Sat, 08 Sep 2012 13:00:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/A-few-practical-questions-about-the-hyper-threading-technology/m-p/986620#M5854</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2012-09-08T13:00:53Z</dc:date>
    </item>
    <item>
      <title>There are several technical</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/A-few-practical-questions-about-the-hyper-threading-technology/m-p/986621#M5855</link>
      <description>There are several technical articles on Intel® Developer Zone about Intel® Hyper-Threading Technology: &lt;BR /&gt;
&lt;A href="http://software.intel.com/en-us/articles/performance-insights-to-intel-hyper-threading-technology/"&gt;Performance Insights to Intel® Hyper-Threading Technology&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://software.intel.com/en-us/articles/intel-hyper-threading-technology-analysis-of-the-ht-effects-on-a-server-transactional-workload"&gt;Intel® Hyper-Threading Technology: Analysis of the HT Effects on a Server Transactional Workload&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://software.intel.com/en-us/articles/hyper-threading-be-sure-you-know-how-to-correctly-measure-your-servers-end-user-response-time-1"&gt;Hyper-Threading: Be Sure You Know How to Correctly Measure Your Server’s End-User Response Time&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Sep 2012 12:38:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/A-few-practical-questions-about-the-hyper-threading-technology/m-p/986621#M5855</guid>
      <dc:creator>Roman_D_Intel</dc:creator>
      <dc:date>2012-09-20T12:38:45Z</dc:date>
    </item>
  </channel>
</rss>

