<?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 Use the Online Service Center in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185735#M150000</link>
    <description>&lt;P&gt;Use the &lt;A href="https://supporttickets.intel.com/?lang=en-US"&gt;Online Service Center&lt;/A&gt; if you have current product support.&lt;/P&gt;</description>
    <pubDate>Thu, 04 Jun 2020 14:36:34 GMT</pubDate>
    <dc:creator>Steve_Lionel</dc:creator>
    <dc:date>2020-06-04T14:36:34Z</dc:date>
    <item>
      <title>assume:byterecl not working in ifort 19.1?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185731#M149996</link>
      <description>&lt;P&gt;I recently upgraded to Intel Fortran 2020 Update 1 (version 19.1.1.216) and the assume:byterecl compiler option does not seem to working properly. This is what I am testing with:&lt;/P&gt;
&lt;PRE class="brush:fortran; wrap-lines:false;"&gt;        OPEN(UNIT=datnr, FILE=TRIM(filename), ACCESS='DIRECT', FORM='UNFORMATTED', RECL=12)
        INQUIRE(UNIT=datnr, err=100, RECL=irecl)
        CLOSE(UNIT=datnr)
&lt;/PRE&gt;

&lt;P&gt;If assume:byterecl is not set, irecl is assigned the value of 12 (same as given in OPEN statement). Both should be in 4-byte units (longwords)).&lt;/P&gt;
&lt;P&gt;But when assume:byterecl is set, irecl is assigned the value 3. With this compiler option, both this value and the value given in the OPTION statement should be in bytes, but apparently one of them is not.&lt;/P&gt;
&lt;P&gt;Is there some something I am misunderstanding?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 14:43:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185731#M149996</guid>
      <dc:creator>Froehlich__Felix</dc:creator>
      <dc:date>2020-06-03T14:43:47Z</dc:date>
    </item>
    <item>
      <title>You are not misunderstanding</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185732#M149997</link>
      <description>&lt;P&gt;You are not misunderstanding - this is a bug introduced in 19.1. I can reproduce it.&lt;/P&gt;
&lt;PRE class="brush:plain; class-name:dark;"&gt;D:\Projects&amp;gt;type t.f90
OPEN(UNIT=1, FILE='foo.dat', ACCESS='DIRECT', FORM='UNFORMATTED', RECL=12, status='REPLACE')
INQUIRE(UNIT=1,RECL=irecl)
print *, irecl
CLOSE(UNIT=1)
end

D:\Projects&amp;gt;ifort /assume:byterecl t.f90
Intel(R) Visual Fortran Intel(R) 64 Compiler for applications running on Intel(R) 64, Version 19.0.5.281 Build 20190815
Copyright (C) 1985-2019 Intel Corporation.  All rights reserved.

Microsoft (R) Incremental Linker Version 14.25.28614.0
Copyright (C) Microsoft Corporation.  All rights reserved.

-out:t.exe
-subsystem:console
t.obj

D:\Projects&amp;gt;t.exe
          12&lt;/PRE&gt;

&lt;PRE class="brush:plain; class-name:dark;"&gt;D:\Projects&amp;gt;ifort /assume:byterecl t.f90
Intel(R) Visual Fortran Intel(R) 64 Compiler for applications running on Intel(R) 64, Version 19.1.1.216 Build 20200306
Copyright (C) 1985-2020 Intel Corporation.  All rights reserved.

Microsoft (R) Incremental Linker Version 14.25.28614.0
Copyright (C) Microsoft Corporation.  All rights reserved.

-out:t.exe
-subsystem:console
t.obj

D:\Projects&amp;gt;t.exe
           3
&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 20:08:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185732#M149997</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2020-06-03T20:08:53Z</dc:date>
    </item>
    <item>
      <title>At least the file is created</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185733#M149998</link>
      <description>&lt;P&gt;At least the file is created with the correct record length, based on an additional test I did. It's just INQUIRE that gets it wrong.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 20:14:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185733#M149998</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2020-06-03T20:14:15Z</dc:date>
    </item>
    <item>
      <title>Thanks for confirming, Steve.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185734#M149999</link>
      <description>&lt;P&gt;Thanks for confirming, Steve. So what now? How should I report this so that it gets fixed asap?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 05:58:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185734#M149999</guid>
      <dc:creator>Froehlich__Felix</dc:creator>
      <dc:date>2020-06-04T05:58:35Z</dc:date>
    </item>
    <item>
      <title>Use the Online Service Center</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185735#M150000</link>
      <description>&lt;P&gt;Use the &lt;A href="https://supporttickets.intel.com/?lang=en-US"&gt;Online Service Center&lt;/A&gt; if you have current product support.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 14:36:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185735#M150000</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2020-06-04T14:36:34Z</dc:date>
    </item>
    <item>
      <title>I do have current product</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185736#M150001</link>
      <description>&lt;P&gt;I do have current product support, from my understanding I am even eligible for "Priority Support". But the Intel website is having me run around in circles. I am unable to actually submit a ticket or contact support. Either I am again "misunderstanding" or the website has a bug as well.&lt;/P&gt;&lt;P&gt;The closest I have gotten is this page: &lt;A href="https://www.intel.com/content/www/us/en/develop/support/priority-support.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/develop/support/priority-support.html&lt;/A&gt; but that just sends me back to the Online Service Center? I have been signed in all the time, mind you.&lt;/P&gt;&lt;P&gt;Is there perhaps a more direct link to the page where you can submit a ticket?&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2020 08:38:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185736#M150001</guid>
      <dc:creator>Froehlich__Felix</dc:creator>
      <dc:date>2020-06-05T08:38:51Z</dc:date>
    </item>
    <item>
      <title>The link I provided is the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185737#M150002</link>
      <description>&lt;P&gt;The link I provided is the page where one submits a ticket.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Annotation 2020-06-05 125418.png"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/10747i8A92496600B054F3/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Annotation 2020-06-05 125418.png" alt="Annotation 2020-06-05 125418.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Click that Request Support button. What are you seeing?&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2020 16:56:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185737#M150002</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2020-06-05T16:56:24Z</dc:date>
    </item>
    <item>
      <title>Before I can click that</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185738#M150003</link>
      <description>&lt;P&gt;Before I can click that Request Support button, the page always redirects me to a different page shown below. I have tried different browsers as well, I always get redirected and am unable to click on that button. I have also tried both being logged in and not being logged in, always getting the same result.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="intel_support.png"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/10748i444F43A376500BCC/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="intel_support.png" alt="intel_support.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When I follow the links on this page, I get to this page:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="intel_support_2.png"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/10749i664259F07CC80C23/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="intel_support_2.png" alt="intel_support_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here, clicking on "Online Service Center" leads me back to the beginning. Clicking on "How to submit a request" displays a login page (even when I am already logged in), where a successful login just shows me the login page again.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2020 07:01:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185738#M150003</guid>
      <dc:creator>Froehlich__Felix</dc:creator>
      <dc:date>2020-06-08T07:01:45Z</dc:date>
    </item>
    <item>
      <title>Sorry to hear that. I will</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185739#M150004</link>
      <description>&lt;P&gt;Sorry to hear that. I will report this for you (done: 04675699), and also see if I can get someone to look into the issue you're having with the support pages. I had hoped that one of the Intel support folk would see this and jump in, but...&amp;nbsp; Some days I feel that I didn't really retire, but am not being paid!&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2020 13:45:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185739#M150004</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2020-06-08T13:45:00Z</dc:date>
    </item>
    <item>
      <title>Thanks so much for your help,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185740#M150005</link>
      <description>&lt;P&gt;Thanks so much for your help, Steve.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2020 05:48:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1185740#M150005</guid>
      <dc:creator>Froehlich__Felix</dc:creator>
      <dc:date>2020-06-09T05:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: assume:byterecl not working in ifort 19.1?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1373893#M160872</link>
      <description>&lt;P&gt;Intel Support tells me that the bug has been fixed. They did not tell me when to expect the fix to appear in an update.&lt;/P&gt;</description>
      <pubDate>Sun, 03 Apr 2022 18:58:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1373893#M160872</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2022-04-03T18:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: assume:byterecl not working in ifort 19.1?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1531949#M168552</link>
      <description>&lt;P&gt;Hello, Mr. Steve.&lt;BR /&gt;Do you know if they've fixed this error?&lt;BR /&gt;I'm getting binary files written differently from how they are written by the same program on another older compiler (not Intel). Could that be the problem?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 19:10:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1531949#M168552</guid>
      <dc:creator>danikyr</dc:creator>
      <dc:date>2023-10-09T19:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: assume:byterecl not working in ifort 19.1?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1531998#M168554</link>
      <description>&lt;P&gt;My testing shows that the bug from this thread is fixed in the current release (ifort 2021.10.0, ifx 2023.2.0). I think this was an problem with INQUIRE and not the file itself. I doubt this is related to your issue.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 21:14:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1531998#M168554</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2023-10-09T21:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: assume:byterecl not working in ifort 19.1?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1532210#M168561</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 11:18:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/assume-byterecl-not-working-in-ifort-19-1/m-p/1532210#M168561</guid>
      <dc:creator>danikyr</dc:creator>
      <dc:date>2023-10-10T11:18:25Z</dc:date>
    </item>
  </channel>
</rss>

