<?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 I understand why it might do in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774045#M24088</link>
    <description>I understand why it might do it, but it is inconsistent behaviour isn't it - to only sometimes give the error (and not at all on a clean build, which is how I would most likely try to run a check like this)? 

I agree the error (as a warning, not an error) would be valid in the first case: the code is only correct in that using wrong types is the only way to mimic class(*) parameters in standard F90 (types for non-module subroutines are not checked - the code compiles and runs fine in all compilers - the parameter is just a pointer). Thanks for hint about !DEC$ ATTRIBUTES NO_ARG_CHECK :: EV. But when I compile with this I get
Error	1	 error #7673: The DEC$ ATTRIBUTES NO_ARG_CHECK directive shall appear only in an interface block or module procedure.   [NO_ARG_CHECK]	C:\Work\Devel\camb\source\subroutines.f90	376	


The third error I mention is however (I think) clearly wrong, in that everything has the right type. I think it originates because the type is defined in the file being recompiled, but used by a subroutine in the calling file (which is not recompiled), so it erroneously things the newly-compiled type is different from the type used in the calling file. The subroutine circularity appears to be valid fortran.

Antony</description>
    <pubDate>Tue, 18 Sep 2012 15:40:45 GMT</pubDate>
    <dc:creator>antony</dc:creator>
    <dc:date>2012-09-18T15:40:45Z</dc:date>
    <item>
      <title>error #6633: The type of the actual argument differs from the type of the dummy argument.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774037#M24080</link>
      <description>Ever since I installed Intel Visual Fortran V. 11.1.048, I cannot compile my formally working code in DEBUG mode. &lt;BR /&gt;&lt;BR /&gt;In several instances where I am passing an user-defined data(type) variable as a parameter to a subroutine, I get the following error message: "error #6633: The type of the actual argument differs from the type of the dummy argument." However, the user-defined data variable is explicitly declared in both the calling and the called subroutines. My feeling is that this is a BUG of the Intel Fortran compiler, because:&lt;BR /&gt;1. WhenI compile the code in DEBUG Win 32 I get many of the same error messages;&lt;BR /&gt;2. when I compile the code in DEBUG x64 I get less but the same error message;&lt;BR /&gt;3. When I compile the code in RELEASE mode, either for Win32 or x64, the code compiles, builds and works perfectly...!&lt;BR /&gt;&lt;BR /&gt;Follows an example of the source code:&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;&lt;P&gt;calling routine:&lt;/P&gt;&lt;P&gt;SUBROUTINE READ_CONT_RANDOM_VARIABLE_DATA (INPUT, CRV)&lt;BR /&gt;IMPLICIT NONE &lt;BR /&gt;INTEGER INPUT !INPUT FILE NUMBER&lt;BR /&gt;TYPE(CONT_RANDOM_VARIABLE),INTENT(INOUT) :: CRV&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;CALL CRV_PARAMETER_EVAL(CRV); !!!!!! THIS IS WHERE I GET THE ERROR MESSAGE !!!!!!...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;END SUBROUTINE READ_CONT_RANDOM_VARIABLE_DATA&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;called subroutine:&lt;/P&gt;&lt;P&gt;SUBROUTINE CRV_PARAMETER_EVAL(CRV)&lt;BR /&gt;IMPLICIT NONE&lt;BR /&gt;TYPE(CONT_RANDOM_VARIABLE),INTENT(INOUT) :: CRV&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;END SUBROUTINE CRV_PARAMETER_EVAL&lt;/P&gt;&lt;/B&gt;&lt;SPAN style="font-size: x-small;"&gt;&lt;/SPAN&gt;</description>
      <pubDate>Wed, 11 Apr 2012 19:58:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774037#M24080</guid>
      <dc:creator>Prof__Beck</dc:creator>
      <dc:date>2012-04-11T19:58:49Z</dc:date>
    </item>
    <item>
      <title>error #6633: The type of the actual argument differs from the t</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774038#M24081</link>
      <description>Where is the definition of type CONT_RANDOM_VARIABLE? How is that definition provided to the caller and the called procedure? My guess is that it comes from an INCLUDE file and these subroutines are separate (not in a module or contained. A Debug configuration enables "generated interface checking", which looks for consistency across calls to external procedures - a Release configuration does not.&lt;BR /&gt;&lt;BR /&gt;The evidence so far suggests that the compiler is correct.</description>
      <pubDate>Wed, 11 Apr 2012 20:26:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774038#M24081</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2012-04-11T20:26:26Z</dc:date>
    </item>
    <item>
      <title>error #6633: The type of the actual argument differs from the t</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774039#M24082</link>
      <description>Could that be the same problem as reported in this old thread?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://software.intel.com/en-us/forums/showthread.php?t=86588&amp;amp;o=a&amp;amp;s=lr" target="_blank"&gt;http://software.intel.com/en-us/forums/showthread.php?t=86588&amp;amp;o=a&amp;amp;s=lr&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I had also some problems with interface checking but this was concerning character variables passed with wild-cards in the dummy entries used in some old libraries formerly compiled with CVF and now ported to ifort. As suggested somewhere in this forum, I turned off the checking. Running the program never caused an error so far.&lt;BR /&gt;&lt;BR /&gt;Greetings,&lt;BR /&gt;Johannes</description>
      <pubDate>Thu, 12 Apr 2012 09:37:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774039#M24082</guid>
      <dc:creator>Johannes_Rieke</dc:creator>
      <dc:date>2012-04-12T09:37:59Z</dc:date>
    </item>
    <item>
      <title>error #6633: The type of the actual argument differs from the t</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774040#M24083</link>
      <description>Without seeing the whole code, I can't tell.</description>
      <pubDate>Fri, 13 Apr 2012 00:47:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774040#M24083</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2012-04-13T00:47:09Z</dc:date>
    </item>
    <item>
      <title>error #6633: The type of the actual argument differs from the t</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774041#M24084</link>
      <description>Dear Steve, thanks for your reply...&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Your guess was wrong, the definition of CONT_RANDOM_VARIABLE is in the same MODULE as both calling and caller procedures... There are no INCLUDE comands.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Any other guess?&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Andre&lt;/DIV&gt;</description>
      <pubDate>Tue, 17 Apr 2012 18:26:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774041#M24084</guid>
      <dc:creator>Prof__Beck</dc:creator>
      <dc:date>2012-04-17T18:26:05Z</dc:date>
    </item>
    <item>
      <title>error #6633: The type of the actual argument differs from the t</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774042#M24085</link>
      <description>At this point, I will wait for the complete example from you.</description>
      <pubDate>Tue, 17 Apr 2012 19:04:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774042#M24085</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2012-04-17T19:04:35Z</dc:date>
    </item>
    <item>
      <title>I also get this error and</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774043#M24086</link>
      <description>I also get this error and believe it is a bug (Composer 2013 and for a while). It depends on context - a clean debug build works, a partial one doesn't. E.g. try the attached.

If I do Clean Solution, then Build, all is OK. If I then run Build *again* I get errors. 
If I do Clean Solution, then Build, all is OK. If I then use Compile (e.g. Ctrl+F7 on cmbmain), I get some different errors.
If I do Clean Solution, then Build, all is OK. If I then use Compile (e.g. Ctrl+F7 on modules), I get some different [clearly wrong] errors

(some of the errors are sort-of true, but it is correct code and anyway if there should be a warning you should get it on the first build too!)

Thanks,
Antony</description>
      <pubDate>Tue, 18 Sep 2012 14:25:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774043#M24086</guid>
      <dc:creator>antony</dc:creator>
      <dc:date>2012-09-18T14:25:18Z</dc:date>
    </item>
    <item>
      <title>The reason the initial build</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774044#M24087</link>
      <description>The reason the initial build works is that subroutine DVERK (subroutines.f90) hasn't yet been compiled when the call to DVERK in recfast.f90 is compiled, so it doesn't know the interface.  When you do the second build, the generated interface for DVERK is available and the compiler sees that there is a mismatch. The code is NOT correct - in Recombination_init, RECOMB is TYPE(RecombinationParams), but the corresponding dummy argument EV in DVERK is REAL. I didn't look at the others.

If you want to allow the mismatch, add:

!DEC$ ATTRIBUTES NO_ARG_CHECK :: EV

in DVERK.</description>
      <pubDate>Tue, 18 Sep 2012 14:41:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774044#M24087</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2012-09-18T14:41:47Z</dc:date>
    </item>
    <item>
      <title>I understand why it might do</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774045#M24088</link>
      <description>I understand why it might do it, but it is inconsistent behaviour isn't it - to only sometimes give the error (and not at all on a clean build, which is how I would most likely try to run a check like this)? 

I agree the error (as a warning, not an error) would be valid in the first case: the code is only correct in that using wrong types is the only way to mimic class(*) parameters in standard F90 (types for non-module subroutines are not checked - the code compiles and runs fine in all compilers - the parameter is just a pointer). Thanks for hint about !DEC$ ATTRIBUTES NO_ARG_CHECK :: EV. But when I compile with this I get
Error	1	 error #7673: The DEC$ ATTRIBUTES NO_ARG_CHECK directive shall appear only in an interface block or module procedure.   [NO_ARG_CHECK]	C:\Work\Devel\camb\source\subroutines.f90	376	


The third error I mention is however (I think) clearly wrong, in that everything has the right type. I think it originates because the type is defined in the file being recompiled, but used by a subroutine in the calling file (which is not recompiled), so it erroneously things the newly-compiled type is different from the type used in the calling file. The subroutine circularity appears to be valid fortran.

Antony</description>
      <pubDate>Tue, 18 Sep 2012 15:40:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774045#M24088</guid>
      <dc:creator>antony</dc:creator>
      <dc:date>2012-09-18T15:40:45Z</dc:date>
    </item>
    <item>
      <title>On first look, I am inclined</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774046#M24089</link>
      <description>On first look, I am inclined to agree that the last set of errors is not appropriate.  I'll look at that closer tomorrow.</description>
      <pubDate>Tue, 18 Sep 2012 19:18:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774046#M24089</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2012-09-18T19:18:26Z</dc:date>
    </item>
    <item>
      <title>Thank you for your replies:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774047#M24090</link>
      <description>&lt;P&gt;Thank you for your replies: Here is some example&lt;/P&gt;

&lt;PRE style="font-family:Consolas;font-size:13;color:black;background:white;"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="color:blue;"&gt;REAL&lt;/SPAN&gt;&amp;nbsp;T,&amp;nbsp;P,...
...
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:blue;"&gt;CALL&lt;/SPAN&gt;&amp;nbsp;DDTCI&amp;nbsp;(1,&amp;nbsp;T,&amp;nbsp;RPDS,&amp;nbsp;LGLSA,&amp;nbsp;LGFR,&amp;nbsp;YF,&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="color:white;background:darkgreen;"&gt;&amp;amp;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;XOM,&amp;nbsp;XLAM,&amp;nbsp;ITYP2P,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="color:white;background:darkgreen;"&gt;:&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ZF,&amp;nbsp;X,&amp;nbsp;Y,&amp;nbsp;Z,&amp;nbsp;XW,&amp;nbsp;YW,&amp;nbsp;ZW,&amp;nbsp;XY,&amp;nbsp;XZ,&amp;nbsp;AD,&amp;nbsp;CDZ,&amp;nbsp;S,&amp;nbsp;LGSMTH,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="color:white;background:darkgreen;"&gt;.&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;THETAW,&amp;nbsp;ISIDES,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="color:white;background:darkgreen;"&gt;:&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;LPOIN2,&amp;nbsp;WORK1,&amp;nbsp;WORK2,&amp;nbsp;WORK3,&amp;nbsp;WORK4,&amp;nbsp;WORK5,&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="color:white;background:darkgreen;"&gt;:&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;LGABRT)&lt;/PRE&gt;

&lt;PRE style="font-family:Consolas;font-size:13;color:black;background:white;"&gt;
&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:blue;"&gt;SUBROUTINE&lt;/SPAN&gt;&amp;nbsp;DDTCI&amp;nbsp;(NT,&amp;nbsp;T,&amp;nbsp;P,&amp;nbsp;LGLSA,&amp;nbsp;LGFR,&amp;nbsp;YF,&amp;nbsp;XOM,&amp;nbsp;XLAM,&amp;nbsp;ITYP2P,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="color:white;background:darkgreen;"&gt;.&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ZF,&amp;nbsp;X,&amp;nbsp;Y,&amp;nbsp;Z,&amp;nbsp;XW,&amp;nbsp;YW,&amp;nbsp;ZW,&amp;nbsp;XY,&amp;nbsp;XZ,&amp;nbsp;AD,&amp;nbsp;CD,&amp;nbsp;S,&amp;nbsp;LGSMTH,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="color:white;background:darkgreen;"&gt;:&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;THTAWD,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="color:white;background:darkgreen;"&gt;.&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ISIDES,&amp;nbsp;NMAX,&amp;nbsp;WORK1,&amp;nbsp;WORK2,&amp;nbsp;WORK3,&amp;nbsp;WORK4,&amp;nbsp;WORK5,&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="color:white;background:darkgreen;"&gt;.&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;LGABRT)&lt;/PRE&gt;

&lt;PRE style="font-family:Consolas;font-size:13;color:black;background:white;"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="color:blue;"&gt;REAL&lt;/SPAN&gt;&amp;nbsp;T,&amp;nbsp;P,...
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:blue;"&gt;DIMENSION&lt;/SPAN&gt;&amp;nbsp;T(*),&amp;nbsp;P(*),...&lt;/PRE&gt;

&lt;P&gt;this is the typical case where the function expects arrays, and the call is done with values and dimension 1.&lt;BR /&gt;
	It is produce by /warn:interfaces, this is part of diagnostics, turning it off, code compiles and runs correctly.&lt;/P&gt;

&lt;P&gt;1/ indeed changes could be done to T, RPDS, etc. in the calling code, and turn them into array and back into values, now, I would rather not change this legacy code that is working and add more complexity to it.&lt;/P&gt;

&lt;P&gt;2/ usage of !DEC$ ATTRIBUTES NO_ARG_CHECK :: dummy-arg-name would disable the checks for all calls to DDTCI, no? whereas I just want to turn off the checks for this call&lt;/P&gt;

&lt;P&gt;3/ My issue is not so much how to fix the code, but how I can keep a high level of check on my solution (i.e. all /warn on) while disabling specific error/warning on some specific files where the code is too hard to fix without major rewrite&lt;/P&gt;

&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2014 15:43:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774047#M24090</guid>
      <dc:creator>alexandre_h_</dc:creator>
      <dc:date>2014-01-06T15:43:02Z</dc:date>
    </item>
    <item>
      <title>Show me an example call. If</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774048#M24091</link>
      <description>&lt;P&gt;Show me an example call. If you are passing input values, you can enclose the scalar argument in [] and that turns it into an array. This won't work if the subroutine writes to the argument.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2014 18:33:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-6633-The-type-of-the-actual-argument-differs-from-the-type/m-p/774048#M24091</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-01-06T18:33:45Z</dc:date>
    </item>
  </channel>
</rss>

