<?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 @mecej4 I think so too. in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135789#M135702</link>
    <description>&lt;P&gt;@mecej4 I think so too. One hundred&amp;nbsp;percent.&amp;nbsp;Except I can't. In order to get ifort to work I would have to get administrative privileges which is against company policy. Of course, it is entirely their fault that their installation of VS 2012 contains this (rather major) glitch with respect to ifort not working. However theres really nothing I can do except use the current resources&amp;nbsp; I have available...&lt;/P&gt;</description>
    <pubDate>Tue, 27 Jun 2017 08:18:00 GMT</pubDate>
    <dc:creator>awa5114</dc:creator>
    <dc:date>2017-06-27T08:18:00Z</dc:date>
    <item>
      <title>Trying to implement code example for derived type IO with no success</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135783#M135696</link>
      <description>&lt;P&gt;I'm trying to learn more about derived type IO. To start off with I am using examples from this page:&amp;nbsp;https://software.intel.com/en-us/node/678729&lt;/P&gt;

&lt;P&gt;I have created a Visual Studio solution and copied the contents of example1 into a source file. When I run the solution I get errors:&lt;/P&gt;

&lt;PRE class="brush:;"&gt;
Error	9	Compilation Aborted (code 1)	D:\TEMP\FortranTest\Console1\Console1\Source1.f90	1	
Error	7	 error #7002: Error in opening the compiled module file.  Check INCLUDE paths.   [TYPES]	D:\TEMP\FortranTest\Console1\Console1\Source1.f90	51	
Error	4	 error #6546: A required END statement for the interface-body is missing.	D:\TEMP\FortranTest\Console1\Console1\Source1.f90	14	
Error	8	 error #6457: This derived type name has not been declared.   &lt;T&gt;	D:\TEMP\FortranTest\Console1\Console1\Source1.f90	52	
Error	5	 error #6268: The keyword ASSIGNMENT or OPERATOR was expected in this context   [WRITE]	D:\TEMP\FortranTest\Console1\Console1\Source1.f90	12	
Error	6	 error #6268: The keyword ASSIGNMENT or OPERATOR was expected in this context   [READ]	D:\TEMP\FortranTest\Console1\Console1\Source1.f90	8	
Error	3	 error #5082: Syntax error, found IDENTIFIER 'UDIO_WRITE_ARRAY' when expecting one of: &amp;lt;END-OF-STATEMENT&amp;gt; ;	D:\TEMP\FortranTest\Console1\Console1\Source1.f90	13	
Error	1	 error #5082: Syntax error, found IDENTIFIER 'FORMATTED' when expecting one of: * .NOT. . + - /) ** / // .LT. &amp;lt; .LE. &amp;lt;= .EQ. == .NE. /= .GT. &amp;gt; ...	D:\TEMP\FortranTest\Console1\Console1\Source1.f90	8	
Error	2	 error #5082: Syntax error, found IDENTIFIER 'FORMATTED' when expecting one of: * .NOT. . + - /) ** / // .LT. &amp;lt; .LE. &amp;lt;= .EQ. == .NE. /= .GT. &amp;gt; ...	D:\TEMP\FortranTest\Console1\Console1\Source1.f90	12	
&lt;/T&gt;&lt;/PRE&gt;

&lt;P&gt;I know I'm allowed to have modules in the same file as the main executing program because the below code:&lt;/P&gt;

&lt;PRE class="brush:;"&gt;module mymod
    contains
        subroutine hello
            print *, "hello"
        end subroutine hello
    end module mymod
    
program test
    use mymod    
    call hello
    
    end program test&lt;/PRE&gt;

&lt;P&gt;compiles, runs and outputs correct output.&lt;/P&gt;

&lt;P&gt;Why are none of the examples from the provided link working? I feel like they should since they come from the main intel website and I am using intel products.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2017 15:11:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135783#M135696</guid>
      <dc:creator>awa5114</dc:creator>
      <dc:date>2017-06-26T15:11:46Z</dc:date>
    </item>
    <item>
      <title>Just now, I tried all three</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135784#M135697</link>
      <description>&lt;P&gt;Just now, I tried all three examples using Ifort 17.0.4, and all worked fine. Example-1 does not use module UDIO; therefore, you have mixed up the examples in some way. What does your Source1.f90 contain, and which version of the compiler did you use?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2017 16:12:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135784#M135697</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2017-06-26T16:12:00Z</dc:date>
    </item>
    <item>
      <title>Yes, sorry. I just edited the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135785#M135698</link>
      <description>&lt;P&gt;Yes, sorry. I just edited the original question with the errors from example 1. Note the include module problem still occurs Error 7 (error code #7002).&lt;/P&gt;

&lt;P&gt;Also you might recall from my previous question (https://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/topic/737278) that I&amp;nbsp;&lt;EM&gt;cannot&amp;nbsp;&lt;/EM&gt;&amp;nbsp;use ifort. I have several problems with compiling using the VS/Intel Fortran command line which I strongly believe are linked to my lack of administrative privileges (company policy) on my windows machine. The main culprit is &lt;STRONG&gt;ifort: error #10037: could not find 'link'.&amp;nbsp;&lt;/STRONG&gt;I would like to refer you to some previous discussions I started about this ...&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/topic/720567#comment-1907724" target="_blank"&gt;https://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/topic/720567#comment-1907724&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/topic/720831" target="_blank"&gt;https://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/topic/720831&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/33065962/ifort-error-10037-could-not-find-link/36248786#36248786" target="_blank"&gt;https://stackoverflow.com/questions/33065962/ifort-error-10037-could-not-find-link/36248786#36248786&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;I have not found as yet a resolution to this problem, since any proposed solution should assume I have NO administrative rights in my system, and I don't see that changing in the near future.&lt;/P&gt;

&lt;P&gt;Now, back to my original question, I am compiling Example 1 using a full Visual Studio solution (not the command line). This is where I am copying the errors from.... Do you suspect that might be a cause?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 05:38:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135785#M135698</guid>
      <dc:creator>awa5114</dc:creator>
      <dc:date>2017-06-27T05:38:00Z</dc:date>
    </item>
    <item>
      <title>it looks like simple source</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135786#M135699</link>
      <description>&lt;P&gt;it looks like simple source errors in your post, Attach the source file, that would be much better than guessing what the problem is.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 07:51:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135786#M135699</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2017-06-27T07:51:59Z</dc:date>
    </item>
    <item>
      <title>I'm not sure how the source</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135787#M135700</link>
      <description>&lt;P&gt;I'm not sure how the source file would help. All I am doing is creating a one-file console application project and pasting the code from the webpage then pressing Run. But here it is for reference...&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 07:59:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135787#M135700</guid>
      <dc:creator>awa5114</dc:creator>
      <dc:date>2017-06-27T07:59:21Z</dc:date>
    </item>
    <item>
      <title>I think that you should</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135788#M135701</link>
      <description>&lt;P&gt;I think that you should concentrate on repairing your Ifort+VS installation to the point that you can compile, link and run simple Fortran programs. After that is done you can explore advanced features of the language.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 08:15:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135788#M135701</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2017-06-27T08:15:14Z</dc:date>
    </item>
    <item>
      <title>@mecej4 I think so too.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135789#M135702</link>
      <description>&lt;P&gt;@mecej4 I think so too. One hundred&amp;nbsp;percent.&amp;nbsp;Except I can't. In order to get ifort to work I would have to get administrative privileges which is against company policy. Of course, it is entirely their fault that their installation of VS 2012 contains this (rather major) glitch with respect to ifort not working. However theres really nothing I can do except use the current resources&amp;nbsp; I have available...&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 08:18:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135789#M135702</guid>
      <dc:creator>awa5114</dc:creator>
      <dc:date>2017-06-27T08:18:00Z</dc:date>
    </item>
    <item>
      <title>I don't think the install is</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135790#M135703</link>
      <description>&lt;P&gt;I don't think the install is the problem.&lt;/P&gt;

&lt;P&gt;One issue I have seen is that if you just copy and paste from the Intel documentation, it sometimes loses line wraps.&lt;/P&gt;

&lt;P&gt;As for the source1.f90 you attached, it compiles fine for me. The error messages you showed in the original post suggest that you compiled something different. Please do the following from a Fortran command prompt:&lt;/P&gt;

&lt;P&gt;type source1.f90&lt;BR /&gt;
	ifort -c source1.f90&lt;/P&gt;

&lt;P&gt;and show the output.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 08:43:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135790#M135703</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2017-06-27T08:43:05Z</dc:date>
    </item>
    <item>
      <title>Usually, when an employer</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135791#M135704</link>
      <description>&lt;P&gt;Usually, when an employer restricts access to end users on company PCs, they have to provide one or more system administrators who are responsible for installing and servicing software (such as Parallel Studio) that their end users are required to use in order to perform their job.&lt;/P&gt;

&lt;P&gt;I suspect that there is some inconsistency as to version numbers, because the VC startup batch file reported (in your thread&amp;nbsp;https://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/topic/720567#comment-1900033 ) that it could not find&amp;nbsp;VS110COMNTOOLS. The "110" in the name is the version number of Visual Studio. If the installed version is a different version, the combination may or may not work. Fixing these issues is, again, the administrators' responsibility.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 08:44:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135791#M135704</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2017-06-27T08:44:02Z</dc:date>
    </item>
    <item>
      <title>110 is correct for VS2012.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135792#M135705</link>
      <description>&lt;P&gt;110 is correct for VS2012.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 08:48:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135792#M135705</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2017-06-27T08:48:11Z</dc:date>
    </item>
    <item>
      <title>@Steve--&gt; here is the output</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135793#M135706</link>
      <description>&lt;P&gt;@Steve--&amp;gt; here is the output for the commands you requested:&lt;/P&gt;

&lt;PRE class="brush:;"&gt;Intel(R) Parallel Studio XE 2013
Copyright (C) 1985-2012 Intel Corporation. All rights reserved.
Intel(R) Composer XE 2013 Update 1 (package 119)
ERROR: Cannot determine the location of the VS Common Tools folder.


C:\Program Files (x86)\Intel\Composer XE 2013&amp;gt;D:

D:\&amp;gt;cd D:\TEMP\FortranTest\Console1\Console1

D:\TEMP\FortranTest\Console1\Console1&amp;gt;type source1.f90
MODULE TYPES
&amp;nbsp; TYPE T
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER :: K(10)
&amp;nbsp;&amp;nbsp; CONTAINS

! a generic type-bound procedure
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROCEDURE :: UDIO_READ_ARRAY
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GENERIC :: READ (FORMATTED) =&amp;gt; UDIO_READ_ARRAY
&amp;nbsp; END TYPE T

! an explicit interface
&amp;nbsp; INTERFACE WRITE(FORMATTED)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MODULE PROCEDURE UDIO_WRITE_ARRAY
&amp;nbsp; END INTERFACE
&amp;nbsp;CONTAINS
&amp;nbsp; SUBROUTINE UDIO_READ_ARRAY (DTV, UNIT, IOTYPE, V_LIST, IOSTAT, IOMSG)
&amp;nbsp;&amp;nbsp;&amp;nbsp; CLASS(T), INTENT(INOUT)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :: DTV
&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER, INTENT(IN)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :: UNIT
&amp;nbsp;&amp;nbsp;&amp;nbsp; CHARACTER(*), INTENT(IN)&amp;nbsp;&amp;nbsp;&amp;nbsp; :: IOTYPE
&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER, INTENT(IN)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :: V_LIST (:)
&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER, INTENT(OUT)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :: IOSTAT
&amp;nbsp;&amp;nbsp;&amp;nbsp; CHARACTER(*), INTENT(INOUT) :: IOMSG

! This is the child I/O that gets performed when the procedure
! is called from a parent I/O û it uses list-directed input to read
! the array K

&amp;nbsp;&amp;nbsp;&amp;nbsp; READ (UNIT, FMT=*, IOSTAT=IOSTAT, IOMSG=IOMSG) DTV%K

&amp;nbsp;&amp;nbsp;&amp;nbsp; END SUBROUTINE UDIO_READ_ARRAY

&amp;nbsp; SUBROUTINE UDIO_WRITE_ARRAY (DTV, UNIT, IOTYPE, V_LIST, IOSTAT, IOMSG)
&amp;nbsp; CLASS(T), INTENT(IN)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :: DTV
&amp;nbsp; INTEGER, INTENT(IN)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :: UNIT
&amp;nbsp; CHARACTER(*), INTENT(IN)&amp;nbsp;&amp;nbsp;&amp;nbsp; :: IOTYPE
&amp;nbsp; INTEGER, INTENT(IN)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :: V_LIST (:)
&amp;nbsp; INTEGER, INTENT(OUT)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :: IOSTAT
&amp;nbsp; CHARACTER(*), INTENT(INOUT) :: IOMSG

! This is the child I/O that gets performed when the procedure
! is called from a parent I/O û it uses list-directed output to write
! the array K

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WRITE (UNIT, FMT=*, IOSTAT=IOSTAT, IOMSG=IOMSG) DTV%K

&amp;nbsp; END SUBROUTINE UDIO_WRITE_ARRAY

&amp;nbsp;END MODULE TYPES

&amp;nbsp;PROGRAM TEST1
&amp;nbsp; USE TYPES
&amp;nbsp; TYPE (T) :: V
&amp;nbsp; INTEGER&amp;nbsp; :: COUNTCHAR

&amp;nbsp;&amp;nbsp; OPEN (1, FILE='TEST.INPUT', FORM='FORMATTED')
&amp;nbsp;&amp;nbsp;&amp;nbsp; READ (1, FMT='(DT)', ADVANCE='NO', SIZE=COUNTCHAR) V
&amp;nbsp; CLOSE(UNIT=1)
&amp;nbsp; WRITE(6, '(DT)') V

&amp;nbsp;END PROGRAM TEST1
D:\TEMP\FortranTest\Console1\Console1&amp;gt;ifort -c source1.f90
Intel(R) Visual Fortran Intel(R) 64 Compiler XE for applications running on Inte
l(R) 64, Version 13.0.1.119 Build 20121008
Copyright (C) 1985-2012 Intel Corporation.&amp;nbsp; All rights reserved.

source1.f90(8): error #5082: Syntax error, found IDENTIFIER 'FORMATTED' when exp
ecting one of: * .NOT. . + - /) ** / // .LT. &amp;lt; .LE. &amp;lt;= .EQ. == .NE. /= .GT. &amp;gt; ..
.
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GENERIC :: READ (FORMATTED) =&amp;gt; UDIO_READ_ARRAY
----------------------^
source1.f90(12): error #5082: Syntax error, found IDENTIFIER 'FORMATTED' when ex
pecting one of: * .NOT. . + - /) ** / // .LT. &amp;lt; .LE. &amp;lt;= .EQ. == .NE. /= .GT. &amp;gt; .
..
&amp;nbsp; INTERFACE WRITE(FORMATTED)
------------------^
source1.f90(13): error #5082: Syntax error, found IDENTIFIER 'UDIO_WRITE_ARRAY'
when expecting one of: &amp;lt;END-OF-STATEMENT&amp;gt; ;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MODULE PROCEDURE UDIO_WRITE_ARRAY
----------------------^
source1.f90(14): error #6546: A required END statement for the interface-body is
&amp;nbsp;missing.
&amp;nbsp; END INTERFACE
--^
source1.f90(12): error #6268: The keyword ASSIGNMENT or OPERATOR was expected in
&amp;nbsp;this context&amp;nbsp;&amp;nbsp; [WRITE]
&amp;nbsp; INTERFACE WRITE(FORMATTED)
------------^
source1.f90(8): error #6268: The keyword ASSIGNMENT or OPERATOR was expected in
this context&amp;nbsp;&amp;nbsp; [READ]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GENERIC :: READ (FORMATTED) =&amp;gt; UDIO_READ_ARRAY
----------------^
source1.f90(51): error #7002: Error in opening the compiled module file.&amp;nbsp; Check
INCLUDE paths.&amp;nbsp;&amp;nbsp; [TYPES]
&amp;nbsp; USE TYPES
------^
source1.f90(52): error #6457: This derived type name has not been declared.&amp;nbsp;&amp;nbsp; [T
]
&amp;nbsp; TYPE (T) :: V
--------^
compilation aborted for source1.f90 (code 1)

D:\TEMP\FortranTest\Console1\Console1&amp;gt;&lt;/PRE&gt;

&lt;P&gt;Please note I am the same user from &lt;A href="https://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/topic/720567#comment-1907753"&gt;https://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/topic/720567#comment-1907753&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 08:55:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135793#M135706</guid>
      <dc:creator>awa5114</dc:creator>
      <dc:date>2017-06-27T08:55:09Z</dc:date>
    </item>
    <item>
      <title>Oh - you're using a five-year</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135794#M135707</link>
      <description>&lt;P&gt;Oh - you're using a five-year-old compiler! UDIO was not supported until the 14.0 compiler.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 08:59:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135794#M135707</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2017-06-27T08:59:57Z</dc:date>
    </item>
    <item>
      <title>So User Defined Derived Type</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135795#M135708</link>
      <description>&lt;P&gt;So User Defined Derived Type IO is not supported in the version I have at all? If so how come the error log is explicitly referring it when I try to do a namelist? I have tried this in my code for a large derived type named CalParams&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;&amp;nbsp;subroutine GetNameList
&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; open(682, file = "namelist.txt")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; namelist /mynamelist/ CalParams
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; write(682, nml = mynamelist)
&amp;nbsp;&amp;nbsp;&amp;nbsp; end subroutine GetNameList&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;When I call this routine from my main program I get this error&lt;/P&gt;

&lt;P&gt;Error&amp;nbsp;2&amp;nbsp;Compilation Aborted (code 1)&amp;nbsp;D:\geo-install\dynamic\trunk_modified\VS\MyMod.f90&amp;nbsp;1&amp;nbsp;&lt;BR /&gt;
	Error&amp;nbsp;1&amp;nbsp; error #5415: Feature not yet implemented: Allocatable or pointer fields require user-defined derived-type I/O procedure.&amp;nbsp;D:\geo-install\dynamic\trunk_modified\VS\MyMod.f90&amp;nbsp;87&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 09:34:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135795#M135708</guid>
      <dc:creator>awa5114</dc:creator>
      <dc:date>2017-06-27T09:34:13Z</dc:date>
    </item>
    <item>
      <title>No, it is not supported at</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135796#M135709</link>
      <description>&lt;P&gt;No, it is not supported at all in the version you have. Yes, a "not yet implemented" message was added - the previous behavior was an internal compiler error.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 09:48:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135796#M135709</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2017-06-27T09:48:50Z</dc:date>
    </item>
    <item>
      <title>Hi all. </title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135797#M135710</link>
      <description>&lt;P&gt;Hi all.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I am back at this again. Thanks to some excellent advice I received back in this thread&amp;nbsp;https://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/topic/720567 I am proud to say I can now compile simple programs from the command line.&lt;/P&gt;

&lt;P&gt;So my understanding is that version 13 does not support derived type IO. Just for reference, this is why I sought to use this functionality in the first place&amp;nbsp;https://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/topic/737278&lt;/P&gt;

&lt;P&gt;I need to make different runs of the software I am using and compare how the derived types in my program change for different configurations and inputs. I am particularly interested in listing exactly those variable names from these derived types for which the value has changed. What viable alternative can I use? some unsuccessful attempts so far have involved:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;list directed IO&lt;/LI&gt;
	&lt;LI&gt;derived type IO&lt;/LI&gt;
	&lt;LI&gt;compiling with debug symbols requested&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;I am also currently looking into Profile Guided Optimization (PGO). Looks promising but might be an overkill... Any ideas? Thanks very much.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Aug 2017 12:01:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135797#M135710</guid>
      <dc:creator>awa5114</dc:creator>
      <dc:date>2017-08-27T12:01:01Z</dc:date>
    </item>
    <item>
      <title>You could use Namelist I/O,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135798#M135711</link>
      <description>&lt;P&gt;You could use Namelist I/O, writing the before and after into character arrays, and then comparing the elements to see what has changed, including names.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2017 10:31:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Trying-to-implement-code-example-for-derived-type-IO-with-no/m-p/1135798#M135711</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2017-09-06T10:31:23Z</dc:date>
    </item>
  </channel>
</rss>

