<?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 Hi and thanks, in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Opcode-unsupported/m-p/1117621#M74737</link>
    <description>&lt;P&gt;Hi and thanks,&lt;/P&gt;

&lt;P&gt;the code is pretty big to show for this case but I can show something small that gives the same problem:&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, 'DejaVu Sans Mono', monospace, sans-serif; font-size: 13.008px; line-height: 19.512px;"&gt;#include &amp;lt;float.h&amp;gt;
&lt;/SPAN&gt;
template &amp;lt;class T&amp;gt;
class limits
{
    public:
        static inline T Min() { return 0; }
        static inline T Max() { return 0; }
        static inline T Epsilon() { return 0; }
};

template &amp;lt;&amp;gt;
class limits&amp;lt;float&amp;gt;
{
    public:
        static inline float Min() { return FLT_MIN; }
        static inline float Max() { return FLT_MAX; }
        static inline float Epsilon() { return FLT_EPSILON; }
};

static const float PrecisionMax=limits&amp;lt;float&amp;gt;::Max();
&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I get the same Opcode unsupported error at the line that defines PrecisionMax.&lt;/P&gt;

&lt;P&gt;The program is compiled with /Qmic &amp;amp; intel compiler.&lt;/P&gt;

&lt;P&gt;Best wishes&lt;/P&gt;</description>
    <pubDate>Thu, 12 May 2016 12:53:48 GMT</pubDate>
    <dc:creator>Ioannis_P_</dc:creator>
    <dc:date>2016-05-12T12:53:48Z</dc:date>
    <item>
      <title>Opcode unsupported</title>
      <link>https://community.intel.com/t5/Software-Archive/Opcode-unsupported/m-p/1117619#M74735</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I have installed Intel Compiler 15.0.1.148 and MPSS 3.4.7 on Windows.&lt;/P&gt;

&lt;P&gt;I try to compile my application natively for Xeon Phi (using /Qmic) but I get lots of errors like this:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;C:/Program Files/Intel/MPSS//k1om-mpss-linux/usr/include/c++/iostream(75): (col.&amp;nbsp;25) error #13393: Opcode unsupported on target architecture: movdqa&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;Note: I get similar "Opcode unsupported" error when compiling on Linux for native Xeon Phi build (-mmic) using Intel Compiler 15 6th update and MPSS 3.7.&lt;/P&gt;

&lt;P&gt;Any ideas how to solve this?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2016 09:10:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Opcode-unsupported/m-p/1117619#M74735</guid>
      <dc:creator>Ioannis_P_</dc:creator>
      <dc:date>2016-05-05T09:10:23Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Software-Archive/Opcode-unsupported/m-p/1117620#M74736</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;It means the operation MOVDQA in the machine&amp;nbsp; language is not supported. Is it possible that you post your code and how do you compile it? Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 11 May 2016 20:54:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Opcode-unsupported/m-p/1117620#M74736</guid>
      <dc:creator>Loc_N_Intel</dc:creator>
      <dc:date>2016-05-11T20:54:41Z</dc:date>
    </item>
    <item>
      <title>Hi and thanks,</title>
      <link>https://community.intel.com/t5/Software-Archive/Opcode-unsupported/m-p/1117621#M74737</link>
      <description>&lt;P&gt;Hi and thanks,&lt;/P&gt;

&lt;P&gt;the code is pretty big to show for this case but I can show something small that gives the same problem:&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, 'DejaVu Sans Mono', monospace, sans-serif; font-size: 13.008px; line-height: 19.512px;"&gt;#include &amp;lt;float.h&amp;gt;
&lt;/SPAN&gt;
template &amp;lt;class T&amp;gt;
class limits
{
    public:
        static inline T Min() { return 0; }
        static inline T Max() { return 0; }
        static inline T Epsilon() { return 0; }
};

template &amp;lt;&amp;gt;
class limits&amp;lt;float&amp;gt;
{
    public:
        static inline float Min() { return FLT_MIN; }
        static inline float Max() { return FLT_MAX; }
        static inline float Epsilon() { return FLT_EPSILON; }
};

static const float PrecisionMax=limits&amp;lt;float&amp;gt;::Max();
&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I get the same Opcode unsupported error at the line that defines PrecisionMax.&lt;/P&gt;

&lt;P&gt;The program is compiled with /Qmic &amp;amp; intel compiler.&lt;/P&gt;

&lt;P&gt;Best wishes&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2016 12:53:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Opcode-unsupported/m-p/1117621#M74737</guid>
      <dc:creator>Ioannis_P_</dc:creator>
      <dc:date>2016-05-12T12:53:48Z</dc:date>
    </item>
    <item>
      <title>I cannot reproduce this. I am</title>
      <link>https://community.intel.com/t5/Software-Archive/Opcode-unsupported/m-p/1117622#M74738</link>
      <description>&lt;P&gt;I cannot reproduce this. I am not exactly aligned with your MPSS but given you reproduced this across Windows/Linux with different MPSS and compilers makes me think I should be able to reproduce this with combinations I have. On Windows under MPSS 3.5.37182.0, with PSXE 2015 Update 1, I cannot reproduce the error.&lt;/P&gt;

&lt;P&gt;C:\u629126&amp;gt; icl /Qmic -c&amp;nbsp; u629126.cpp&lt;BR /&gt;
	Intel(R) C++ Intel(R) 64 Compiler XE for applications running on Intel(R) 64, Version 15.0.1.148 Build 20141023&lt;BR /&gt;
	Copyright (C) 1985-2014 Intel Corporation.&amp;nbsp; All rights reserved.&lt;/P&gt;

&lt;P&gt;Can you show us the actual compile line or at least the compiler options used. Is anything more than /Qmic (-mmic) used?&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2016 16:58:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Opcode-unsupported/m-p/1117622#M74738</guid>
      <dc:creator>Kevin_D_Intel</dc:creator>
      <dc:date>2016-05-12T16:58:24Z</dc:date>
    </item>
    <item>
      <title>To be absolutely honest with</title>
      <link>https://community.intel.com/t5/Software-Archive/Opcode-unsupported/m-p/1117623#M74739</link>
      <description>&lt;P&gt;To be absolutely honest with you, I reduced the code to only a small part but didn't check whether there was still error emitted. I am actually glad that you couldn't reproduce it meaning that I must be doing something wrong on my side.&lt;/P&gt;

&lt;P&gt;Let me test to see if I can find a small code sample that does not compile.&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2016 17:23:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Opcode-unsupported/m-p/1117623#M74739</guid>
      <dc:creator>Ioannis_P_</dc:creator>
      <dc:date>2016-05-12T17:23:51Z</dc:date>
    </item>
  </channel>
</rss>

