<?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 ark.intel.com shows all Atom in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Intel-Intrinsic-support-for-Atom/m-p/922244#M13451</link>
    <description>&lt;P&gt;ark.intel.com shows all Atom CPUs supporting ssse3. &amp;nbsp;That's a better place to look for such answers than on a forum such as this which is dedicated to a different group of processor families.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;As I recall, there was an official recommendation to specify ssse3 for Atom, as efforts were being made to remove the incentive for Atom-specific instructions not included in ssse3.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 22 Feb 2014 17:38:49 GMT</pubDate>
    <dc:creator>TimP</dc:creator>
    <dc:date>2014-02-22T17:38:49Z</dc:date>
    <item>
      <title>Intel Intrinsic support for Atom</title>
      <link>https://community.intel.com/t5/Software-Archive/Intel-Intrinsic-support-for-Atom/m-p/922242#M13449</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;

&lt;P&gt;I have an application which was designed for inteli 7 using SSE to AVX, now I want the same application to run on Atom Processors.&lt;/P&gt;

&lt;P&gt;I was recently browsing net for intrinsic support for Atom cloverview processors. Every where it mentions it support upto SSE3.&lt;/P&gt;

&lt;P&gt;But that means it support just upto SSE3 or Supplemantry SSE3 is included in SSE3.&lt;/P&gt;

&lt;P&gt;In Intel Atom architecture manual it says that all Atom processors&amp;nbsp;Support Single-instruction multiple-data extensions up to SSE3 and SSSE3.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Can somebody give me some clarity on the above, as I developing an application and I am not surte weather to include SSSE3 in my application.&lt;/P&gt;

&lt;P&gt;If Intel Atom support SSSE3, that ease a lot of my pain&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sat, 22 Feb 2014 07:58:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Intel-Intrinsic-support-for-Atom/m-p/922242#M13449</guid>
      <dc:creator>Harrisson_M_</dc:creator>
      <dc:date>2014-02-22T07:58:46Z</dc:date>
    </item>
    <item>
      <title>Hi</title>
      <link>https://community.intel.com/t5/Software-Archive/Intel-Intrinsic-support-for-Atom/m-p/922243#M13450</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hi&lt;/STRONG&gt;&lt;BR /&gt;
	Use this command at shell&lt;BR /&gt;
	gcc -c -Q -maerch=native&amp;nbsp; --help=target to show default&lt;BR /&gt;
	Use also&lt;BR /&gt;
	gcc -c -Q -maerch=native (add flags&amp;nbsp; avx,sse etc ...&amp;nbsp;&amp;nbsp; here)&amp;nbsp; --help=target&lt;BR /&gt;
	he must show if option it could be enable.&lt;BR /&gt;
	use also&lt;BR /&gt;
	cat /proc/cpuinfo&lt;BR /&gt;
	I see here one&amp;nbsp; Atom n570 more old have ssse3.&lt;/P&gt;

&lt;P&gt;I don't understand in your question if you plan to serve unique binary common.&lt;/P&gt;

&lt;P&gt;Currently it's not possible to improve multiple specificity contextualized&amp;nbsp; in one binary common&lt;BR /&gt;
	relative to several model processors.&lt;BR /&gt;
	Maybe,You can use&amp;nbsp; LLVM (CLANG compiler)&amp;nbsp; if you have time to lose...&lt;BR /&gt;
	In the last GNU compiler you have option (Function Multiversioning Support with G++) but it's only for&lt;BR /&gt;
	one source common.&lt;/P&gt;

&lt;P&gt;Look documentation Gnu compiler 4.8.x.&lt;BR /&gt;
	&lt;EM&gt;(It is now possible to create multiple function versions each targeting a specific processor and/or ISA.&lt;BR /&gt;
	Function versions have the same signature but different target attributes.&lt;BR /&gt;
	For example, here is a program with function versions:&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; __attribute__ ((target ("default")))&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; int foo(void)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 1;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; __attribute__ ((target ("sse4.2")))&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; int foo(void)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 2;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; int main (void)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int (*p) = &amp;amp;foo;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; assert ((*p)() == foo());&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 0;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;
	I don't know&amp;nbsp; if this option is&amp;nbsp; now avaible&amp;nbsp; on last ICC compile version.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Feb 2014 15:19:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Intel-Intrinsic-support-for-Atom/m-p/922243#M13450</guid>
      <dc:creator>aazue</dc:creator>
      <dc:date>2014-02-22T15:19:22Z</dc:date>
    </item>
    <item>
      <title>ark.intel.com shows all Atom</title>
      <link>https://community.intel.com/t5/Software-Archive/Intel-Intrinsic-support-for-Atom/m-p/922244#M13451</link>
      <description>&lt;P&gt;ark.intel.com shows all Atom CPUs supporting ssse3. &amp;nbsp;That's a better place to look for such answers than on a forum such as this which is dedicated to a different group of processor families.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;As I recall, there was an official recommendation to specify ssse3 for Atom, as efforts were being made to remove the incentive for Atom-specific instructions not included in ssse3.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Feb 2014 17:38:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Intel-Intrinsic-support-for-Atom/m-p/922244#M13451</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2014-02-22T17:38:49Z</dc:date>
    </item>
  </channel>
</rss>

