<?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 Great link PONRAM. in Software Tuning, Performance Optimization &amp; Platform Monitoring</title>
    <link>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935907#M1719</link>
    <description>&lt;P&gt;Great link PONRAM.&lt;/P&gt;
&lt;P&gt;My conclusion for the original question is that Patrick's method using cpuid is the only viable option, and I have implemented that in my code. Thank you all for your responses.&lt;/P&gt;</description>
    <pubDate>Tue, 23 Apr 2013 21:33:36 GMT</pubDate>
    <dc:creator>Samuel_M_1</dc:creator>
    <dc:date>2013-04-23T21:33:36Z</dc:date>
    <item>
      <title>Read Base Clock Frequency</title>
      <link>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935899#M1711</link>
      <description>&lt;P&gt;I understand that the frequency of the base clock varies between the nehalem and the sandy/ivy bridge architectures (133.33 MHz vs 100 MHz). Is there a way to read this number from an MSR or some other source?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2013 18:43:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935899#M1711</guid>
      <dc:creator>Samuel_M_1</dc:creator>
      <dc:date>2013-04-18T18:43:23Z</dc:date>
    </item>
    <item>
      <title>If there is another way, I</title>
      <link>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935900#M1712</link>
      <description>&lt;P&gt;If there is another way, I have not seen it.&lt;/P&gt;
&lt;P&gt;In my tools I have to check the cpuid family and model to see on which cpu I'm running and then use the appropriate 100 or 133 MHz speed.&lt;/P&gt;
&lt;P&gt;Sorry,&lt;/P&gt;
&lt;P&gt;Pat&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2013 19:53:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935900#M1712</guid>
      <dc:creator>Patrick_F_Intel1</dc:creator>
      <dc:date>2013-04-18T19:53:12Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;...In my tools I have to</title>
      <link>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935901#M1713</link>
      <description>&amp;gt;&amp;gt;...In my tools I have to check the cpuid family and model to see on which cpu I'm running and then use the appropriate 100 or
&amp;gt;&amp;gt;133 MHz speed.

Patrick, Could you be more specific, please?</description>
      <pubDate>Fri, 19 Apr 2013 01:40:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935901#M1713</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-04-19T01:40:51Z</dc:date>
    </item>
    <item>
      <title>IIRC I saw in the</title>
      <link>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935902#M1714</link>
      <description>&lt;P&gt;IIRC I saw in the documentation that one of the MSR registers 0xCE reports base frequency.I need to check ISDM to verify this.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2013 09:26:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935902#M1714</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2013-04-19T09:26:00Z</dc:date>
    </item>
    <item>
      <title>Hello Sergey,</title>
      <link>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935903#M1715</link>
      <description>&lt;P&gt;Hello Sergey,&lt;/P&gt;
&lt;P&gt;It is just the standard, pain-in-the-rear code like:&lt;/P&gt;
&lt;P&gt;if (&amp;nbsp;family == 0x6 &amp;amp;&amp;amp; xmodel == 0x3e ) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; bclock == 100 ; &amp;nbsp; // so cpu model is ivybridge, bclock is 100 MHz&lt;/P&gt;
&lt;P&gt;} else if ( family == 0x6 &amp;amp;&amp;amp; xmodel ==&amp;nbsp;0x2a ) { // sandybridge...&lt;/P&gt;
&lt;P&gt;the family and xmodel (extended model) is based on the CPUID app note &lt;A href="http://www.intel.com/content/www/us/en/processors/processor-identification-cpuid-instruction-note.html"&gt;http://www.intel.com/content/www/us/en/processors/processor-identification-cpuid-instruction-note.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;There is a discussion of using cpuid to ID cpu type at &lt;A href="http://software.intel.com/en-us/articles/intel-architecture-and-processor-identification-with-cpuid-model-and-family-numbers"&gt;http://software.intel.com/en-us/articles/intel-architecture-and-processor-identification-with-cpuid-model-and-family-numbers&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Pat&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2013 14:51:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935903#M1715</guid>
      <dc:creator>Patrick_F_Intel1</dc:creator>
      <dc:date>2013-04-19T14:51:10Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;...the family and xmodel</title>
      <link>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935904#M1716</link>
      <description>&amp;gt;&amp;gt;...the family and xmodel (extended model) is based on the CPUID app note...

Thanks for the note, Patrick. I didn't see &lt;STRONG&gt;processor-identification-cpuid-instruction-note.pdf&lt;/STRONG&gt; document before.</description>
      <pubDate>Fri, 19 Apr 2013 15:05:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935904#M1716</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-04-19T15:05:36Z</dc:date>
    </item>
    <item>
      <title>hope you may interested in</title>
      <link>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935905#M1717</link>
      <description>&lt;P&gt;hope you may interested in the following link&lt;/P&gt;
&lt;P&gt;software.intel.com/en-us/platform-monitoring&lt;/P&gt;</description>
      <pubDate>Sat, 20 Apr 2013 15:31:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935905#M1717</guid>
      <dc:creator>PONRAM</dc:creator>
      <dc:date>2013-04-20T15:31:06Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;hope you may interested in</title>
      <link>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935906#M1718</link>
      <description>&amp;gt;&amp;gt;hope you may interested in the following link
&amp;gt;&amp;gt;
&amp;gt;&amp;gt;&lt;STRONG&gt;software.intel.com/en-us/platform-monitoring&lt;/STRONG&gt;

Thanks for the link.</description>
      <pubDate>Sat, 20 Apr 2013 15:40:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935906#M1718</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-04-20T15:40:13Z</dc:date>
    </item>
    <item>
      <title>Great link PONRAM.</title>
      <link>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935907#M1719</link>
      <description>&lt;P&gt;Great link PONRAM.&lt;/P&gt;
&lt;P&gt;My conclusion for the original question is that Patrick's method using cpuid is the only viable option, and I have implemented that in my code. Thank you all for your responses.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2013 21:33:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935907#M1719</guid>
      <dc:creator>Samuel_M_1</dc:creator>
      <dc:date>2013-04-23T21:33:36Z</dc:date>
    </item>
    <item>
      <title>Thank you PONRAM for the link</title>
      <link>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935908#M1720</link>
      <description>&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thank you PONRAM for the link.It contains a great amount of information.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2013 08:20:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Tuning-Performance/Read-Base-Clock-Frequency/m-p/935908#M1720</guid>
      <dc:creator>Bernard</dc:creator>
      <dc:date>2013-04-25T08:20:30Z</dc:date>
    </item>
  </channel>
</rss>

