<?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 Folks, in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/missaligned-arrays/m-p/952987#M92694</link>
    <description>&lt;P&gt;Folks,&lt;/P&gt;

&lt;P&gt;The "warn: interfaces" apparently was the culprit.&amp;nbsp; I know it exposes other issues, but this is legacy code.&amp;nbsp; I appreciate your help. I thought it was something simple, but sometimes you don't see what's in front of you.&lt;/P&gt;

&lt;P&gt;Thank you all again,&lt;/P&gt;

&lt;P&gt;Paul&lt;/P&gt;</description>
    <pubDate>Fri, 10 Jan 2014 16:08:41 GMT</pubDate>
    <dc:creator>Paul_C_1</dc:creator>
    <dc:date>2014-01-10T16:08:41Z</dc:date>
    <item>
      <title>missaligned arrays</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/missaligned-arrays/m-p/952982#M92689</link>
      <description>&lt;P&gt;I have an older code which I wish to compile that contains missaligned arrays.&lt;/P&gt;

&lt;P&gt;Outside a call to a subroutine:&amp;nbsp; Y(3,6)&lt;/P&gt;

&lt;P&gt;In the subroutine call statement: G(3,6,8)&lt;/P&gt;

&lt;P&gt;Previous versions of Intel Fortran would permit this to pass, but since I upgraded to VF 2010&amp;nbsp; and just now converted the project, I receive error messages.&amp;nbsp; What flags can be set to permit this to pass as before?&amp;nbsp; Any suggestions?&amp;nbsp; I do not wish to go through the code and fix these issues.&lt;/P&gt;

&lt;P&gt;Current command line options are:&lt;/P&gt;

&lt;P&gt;/nologo /debug:full /Od /pad_source /f66 /warn:interfaces /module:"Debug\\" /object:"Debug\\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /dbglibs /c&lt;/P&gt;

&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2014 19:57:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/missaligned-arrays/m-p/952982#M92689</guid>
      <dc:creator>Paul_C_1</dc:creator>
      <dc:date>2014-01-08T19:57:34Z</dc:date>
    </item>
    <item>
      <title>It looks like warn:interfaces</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/missaligned-arrays/m-p/952983#M92690</link>
      <description>&lt;P&gt;It looks like warn:interfaces is the one which is blocking acceptance of the non-conformant code.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2014 22:14:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/missaligned-arrays/m-p/952983#M92690</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2014-01-08T22:14:00Z</dc:date>
    </item>
    <item>
      <title>This is not "misaligned</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/missaligned-arrays/m-p/952984#M92691</link>
      <description>&lt;P&gt;This is not "misaligned arrays". I am unclear as to what your code looks like and you haven't shown us the error message. I agree with Tim that it is likely generated interface checking is catching something not caught before, but I don't think you have explained the code well. Please show us some actual code for both the call and how it is declared in the subroutine (including declarations of all arguments on both sides.) Also show us the complete and exact text of the error message(s).&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2014 22:28:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/missaligned-arrays/m-p/952984#M92691</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-01-08T22:28:05Z</dc:date>
    </item>
    <item>
      <title>Paul C.: Since you already</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/missaligned-arrays/m-p/952985#M92692</link>
      <description>&lt;P&gt;Paul C.: Since you already know that your code has argument array rank mismatches, but works(-ed) correctly, turning off the &lt;STRONG&gt;warn:interfaces&lt;/STRONG&gt;&amp;nbsp;option is probably the thing to try.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2014 14:10:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/missaligned-arrays/m-p/952985#M92692</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-01-09T14:10:26Z</dc:date>
    </item>
    <item>
      <title>If you pass Y(1,1), then it's</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/missaligned-arrays/m-p/952986#M92693</link>
      <description>&lt;P&gt;If you pass Y(1,1), then it's ok for the ranks to mismatch.&lt;/P&gt;

&lt;P&gt;The option mecej4 mentions is Fortran &amp;gt; Diagnostics &amp;gt; Check Routine Interfaces. But turning this off exposes you to other coding errors that will go undetected.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2014 15:31:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/missaligned-arrays/m-p/952986#M92693</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-01-09T15:31:39Z</dc:date>
    </item>
    <item>
      <title>Folks,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/missaligned-arrays/m-p/952987#M92694</link>
      <description>&lt;P&gt;Folks,&lt;/P&gt;

&lt;P&gt;The "warn: interfaces" apparently was the culprit.&amp;nbsp; I know it exposes other issues, but this is legacy code.&amp;nbsp; I appreciate your help. I thought it was something simple, but sometimes you don't see what's in front of you.&lt;/P&gt;

&lt;P&gt;Thank you all again,&lt;/P&gt;

&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2014 16:08:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/missaligned-arrays/m-p/952987#M92694</guid>
      <dc:creator>Paul_C_1</dc:creator>
      <dc:date>2014-01-10T16:08:41Z</dc:date>
    </item>
  </channel>
</rss>

