<?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 Detecting AVX in Intel® ISA Extensions</title>
    <link>https://community.intel.com/t5/Intel-ISA-Extensions/Detecting-AVX/m-p/765901#M14</link>
    <description>That CPU does not support AVX, just AES.&lt;BR /&gt;&lt;A target="_blank" href="http://ark.intel.com/products/43560"&gt;http://ark.intel.com/products/43560&lt;/A&gt;&lt;BR /&gt;</description>
    <pubDate>Sun, 09 Oct 2011 13:56:12 GMT</pubDate>
    <dc:creator>levicki</dc:creator>
    <dc:date>2011-10-09T13:56:12Z</dc:date>
    <item>
      <title>Detecting AVX</title>
      <link>https://community.intel.com/t5/Intel-ISA-Extensions/Detecting-AVX/m-p/765897#M10</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;I have a processor with the next brand string: "Intel Core i7 CPU    M 620 @ 2.67GHz"&lt;BR /&gt;&lt;BR /&gt;I have read that i7 CPU-s supports AVX technology. I wrote a program that detects cpu features by cpuid instructon. The program says that this processor DOESN'T supports AVX. When I check the result of cat /proc/cpuinfo in linux, avx is missing from the flags. What is the problem?&lt;BR /&gt;&lt;BR /&gt;Thank You for Your help!</description>
      <pubDate>Wed, 24 Aug 2011 23:32:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-ISA-Extensions/Detecting-AVX/m-p/765897#M10</guid>
      <dc:creator>smidla</dc:creator>
      <dc:date>2011-08-24T23:32:39Z</dc:date>
    </item>
    <item>
      <title>Detecting AVX</title>
      <link>https://community.intel.com/t5/Intel-ISA-Extensions/Detecting-AVX/m-p/765898#M11</link>
      <description>I beleive this is a generation before Sandy Bridge. It does not support AVX. Processor with AVX support are mainly launched in 2011.&lt;BR /&gt;&lt;A href="http://ark.intel.com/products/family/59143" target="_blank"&gt;http://ark.intel.com/products/family/59143&lt;/A&gt;</description>
      <pubDate>Wed, 24 Aug 2011 23:49:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-ISA-Extensions/Detecting-AVX/m-p/765898#M11</guid>
      <dc:creator>Brijender_B_Intel</dc:creator>
      <dc:date>2011-08-24T23:49:40Z</dc:date>
    </item>
    <item>
      <title>Detecting AVX</title>
      <link>https://community.intel.com/t5/Intel-ISA-Extensions/Detecting-AVX/m-p/765899#M12</link>
      <description>I see. I browsed the list of "2nd Generation Core i7 Processors", but i didn't find processors with avx. Or in 2nd generation the avx is a default feature?</description>
      <pubDate>Thu, 25 Aug 2011 00:16:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-ISA-Extensions/Detecting-AVX/m-p/765899#M12</guid>
      <dc:creator>smidla</dc:creator>
      <dc:date>2011-08-25T00:16:44Z</dc:date>
    </item>
    <item>
      <title>Detecting AVX</title>
      <link>https://community.intel.com/t5/Intel-ISA-Extensions/Detecting-AVX/m-p/765900#M13</link>
      <description>Thats true. But you should have Win7 SP1 also. Win7 does not support AVX.</description>
      <pubDate>Thu, 25 Aug 2011 00:41:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-ISA-Extensions/Detecting-AVX/m-p/765900#M13</guid>
      <dc:creator>Brijender_B_Intel</dc:creator>
      <dc:date>2011-08-25T00:41:50Z</dc:date>
    </item>
    <item>
      <title>Detecting AVX</title>
      <link>https://community.intel.com/t5/Intel-ISA-Extensions/Detecting-AVX/m-p/765901#M14</link>
      <description>That CPU does not support AVX, just AES.&lt;BR /&gt;&lt;A target="_blank" href="http://ark.intel.com/products/43560"&gt;http://ark.intel.com/products/43560&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 09 Oct 2011 13:56:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-ISA-Extensions/Detecting-AVX/m-p/765901#M14</guid>
      <dc:creator>levicki</dc:creator>
      <dc:date>2011-10-09T13:56:12Z</dc:date>
    </item>
    <item>
      <title>Detecting AVX</title>
      <link>https://community.intel.com/t5/Intel-ISA-Extensions/Detecting-AVX/m-p/765902#M15</link>
      <description>You can use this C code to detect AVX and other features on the processor:&lt;DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;PRE&gt;[cpp]&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 11px; white-space: normal;"&gt;&lt;PRE name="code" class="cpp"&gt;#define OSXSAVEFlag (1UL&amp;lt;&amp;lt;27)
#define AVXFlag     ((1UL&amp;lt;&amp;lt;28)|OSXSAVEFlag)
#define FMAFlag     ((1UL&amp;lt;&amp;lt;12)|AVXFlag|OSXSAVEFlag)
#define CLMULFlag   ((1UL&amp;lt;&amp;lt; 1)|AVXFlag|OSXSAVEFlag)
#define VAESFlag    ((1UL&amp;lt;&amp;lt;25)|AVXFlag|OSXSAVEFlag)



inline bool SimdDetectFeature(U32 idFeature)
{
	int EAX, EBX, ECX, EDX;
	cpuid(0, EAX, EBX, ECX, EDX);
	if((ECX &amp;amp; idFeature) != idFeature)
		return false;
	return true;
}
[/cpp]&lt;/PRE&gt; &lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 26 Oct 2011 17:58:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-ISA-Extensions/Detecting-AVX/m-p/765902#M15</guid>
      <dc:creator>Pourya_Shirazian</dc:creator>
      <dc:date>2011-10-26T17:58:49Z</dc:date>
    </item>
  </channel>
</rss>

