<?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 Re: Strange bug with overloading intrinsic sqrt in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273653#M155534</link>
    <description>&lt;P&gt;My contribution should fix your problem but maybe in not the most helpful. Please consider overloading intrinsics as a similar activity as juggling with chain saws.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 14 Apr 2021 21:55:07 GMT</pubDate>
    <dc:creator>andrew_4619</dc:creator>
    <dc:date>2021-04-14T21:55:07Z</dc:date>
    <item>
      <title>Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273634#M155529</link>
      <description>&lt;P&gt;The following (almost) minimal code triggers a strange bug with ifort &amp;amp; ifx 2021.2:&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;module mod1
  implicit none
  real, parameter :: z = sqrt (0.0)
end module mod1

module mod2
  implicit none
  type t
     real :: a = 0.
  end type
  interface sqrt
     module procedure sqrt
  end interface
contains
  function sqrt (a)
    type(t), intent(in) :: a
    type(t)             :: sqrt
    sqrt% a = a% a
  end function sqrt
end module mod2

program test
  use mod1
  use mod2
  implicit none
  type(t) :: x, y
  y    = sqrt (x)
  y% a = sqrt (x% a)
end program test
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I obtain the following error:&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;% ifort intel-sqrt-ifc.f90 
intel-sqrt-ifc.f90(28): error #6284: There is no matching specific function for this generic function reference.   [SQRT]
  y% a = sqrt (x% a)
---------^
compilation aborted for intel-sqrt-ifc.f90 (code 1)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code compiles flawlessly with NAG and with Nvidia.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 20:07:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273634#M155529</guid>
      <dc:creator>Harald1</dc:creator>
      <dc:date>2021-04-14T20:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273644#M155531</link>
      <description>&lt;P&gt;Please submit a support request with Intel online service center if you are able to.&lt;/P&gt;
&lt;P&gt;In the meantime, if you need to work your code with Intel Fortran in addition to other compilers, you can try this workaround which I expect will work with those other compilers as well:&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;program test
  use mod1
  use mod2
  implicit none
  type(t) :: x, y
  y    = sqrt (x)
  block
     intrinsic :: sqrt
     y% a = sqrt (x% a)
  end block
end program test
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 21:00:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273644#M155531</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2021-04-14T21:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273646#M155533</link>
      <description>&lt;P&gt;Alternatively, rename the specific procedure.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 21:16:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273646#M155533</guid>
      <dc:creator>IanH</dc:creator>
      <dc:date>2021-04-14T21:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273653#M155534</link>
      <description>&lt;P&gt;My contribution should fix your problem but maybe in not the most helpful. Please consider overloading intrinsics as a similar activity as juggling with chain saws.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 21:55:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273653#M155534</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2021-04-14T21:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273682#M155535</link>
      <description>&lt;P&gt;A generic interface (replacing an intrinsic interface) does not extend the interface with alternate arguments (as is done with C++). It replaces it.&lt;/P&gt;
&lt;P&gt;You may have luck defining the interface sqrt to use, for example, three interface functions:&lt;/P&gt;
&lt;P&gt;sqrt_t(ArgOfType_t)&lt;BR /&gt;sqrt_real(ArgOfType_real)&lt;BR /&gt;sqrt_double(ArgOfType_double)&lt;/P&gt;
&lt;P&gt;In the case of the implementation of the last two, you would have to hide your generic interface from the intrinsic interface (as mentioned by earlier post or by other means).&lt;/P&gt;
&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 01:47:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273682#M155535</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2021-04-15T01:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273698#M155536</link>
      <description>&lt;LI-CODE lang="fortran"&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/63968"&gt;@jimdempseyatthecove&lt;/a&gt; wrote:
A generic interface (replacing an intrinsic interface) does not extend the interface with alternate arguments (as is done with C++). It replaces it. ..&lt;/LI-CODE&gt;
&lt;P&gt;Jim, I don't understand what you mean here.&lt;/P&gt;
&lt;P&gt;Fortran standard document only seems to mention the "replaces it" aspect i.e., an override semantics when a generic invocation is consistent with a specific procedure in a generic interface and an intrinsic procedure.&amp;nbsp; This is not the case with the original post where the generic interface can be viewed as "extending" the interface.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 03:14:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273698#M155536</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2021-04-15T03:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273700#M155537</link>
      <description>&lt;LI-CODE lang="fortran"&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/97739"&gt;@IanH&lt;/a&gt; wrote:
Alternatively, rename the specific procedure.&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or make it PRIVATE.&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;module mod2
  implicit none
  private
  type, public :: t
     real :: a = 0.
  end type
  generic, public :: sqrt =&amp;gt; sqrt
contains
  function sqrt (a)
    type(t), intent(in) :: a
    type(t)             :: sqrt
    sqrt% a = a% a
  end function sqrt
end module mod2
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;C:\Temp&amp;gt;ifort /c /standard-semantics /warn:all /stand:f18 intel-sqrt-ifc.f90
Intel(R) Fortran Intel(R) 64 Compiler Classic for applications running on Intel(R) 64, Version 2021.2.0 Build 20210228_000000
Copyright (C) 1985-2021 Intel Corporation.  All rights reserved.


C:\Temp&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 03:19:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273700#M155537</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2021-04-15T03:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273746#M155538</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/66560"&gt;@andrew_4619&lt;/a&gt; : I strongly disagree.&amp;nbsp; I overload intrinsics for use with derived types all the time.&amp;nbsp; This makes programming much easier.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 06:54:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273746#M155538</guid>
      <dc:creator>Harald1</dc:creator>
      <dc:date>2021-04-15T06:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273748#M155539</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/63968"&gt;@jimdempseyatthecove&lt;/a&gt; :&lt;/P&gt;
&lt;P&gt;Jim, I do not see any replacement of an intrinsic.&amp;nbsp; It was always legal to add interfaces to an existing one, which is sort of implicit for the intrinsics.&lt;/P&gt;
&lt;P&gt;Let me note that replacing in the main the line&lt;/P&gt;
&lt;P&gt;use mod1&lt;/P&gt;
&lt;P&gt;by&lt;/P&gt;
&lt;P&gt;use mod1, only: z&lt;/P&gt;
&lt;P&gt;makes the code compile.&amp;nbsp; Thus module mod1 is the/a troublemaker.&lt;/P&gt;
&lt;P&gt;My question is: how can that happen?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 06:59:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273748#M155539</guid>
      <dc:creator>Harald1</dc:creator>
      <dc:date>2021-04-15T06:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273783#M155541</link>
      <description>&lt;P&gt;The overloading is perfectly legal and may generate some benefits, each to their own. My problem is that I understand Fortran, when you overload you have changed the meaning of an intrinsic. A third party starting to look at the code&amp;nbsp; reads "apple" and expects it to be an apple when in fact it may now be a pear. If you made a unique thing e.g sqrt_t than you can still have the same functionality whilst being clearer.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 08:57:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273783#M155541</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2021-04-15T08:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273857#M155549</link>
      <description>&lt;P&gt;You cannot replace an intrinsic (for standard argument types) with generic extension. I recall there was a case recently where the Intel compiler was improperly allowing this in some circumstances. The only thing you can do with extension of a generic intrinsic is to define it for argument lists not specified by the standard.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 14:02:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273857#M155549</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2021-04-15T14:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273948#M155553</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/5442"&gt;@Steve_Lionel&lt;/a&gt; wrote:
You cannot replace an intrinsic (for standard argument types) with generic extension. I recall there was a case recently where the Intel compiler was improperly allowing this in some circumstances. The only thing you can do with extension of a generic intrinsic is to define it for argument lists not specified by the standard.&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't understand what this means.&amp;nbsp; &amp;nbsp;The standard, per section&amp;nbsp;15.4.3 Specification of the procedure interface, suggests it is indeed possible to override an &lt;STRONG&gt;intrinsic procedure&lt;/STRONG&gt; in the case of "standard argument types".&lt;/P&gt;
&lt;P&gt;The confusion that can come about is with the programmer choice of specific procedure names in a generic interface, the standard asks that it be a nonintrinsic procedure with an explicit interface.&amp;nbsp; &amp;nbsp;Compiler implementations (e.g., gfortran) have had problems with this from what I've seen.&amp;nbsp; To the extent a coder doesn't make it too confusing, a conforming processor can be expected to handle overrides such as this: as to whether it's advisable is a different matter altogether.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;module m
   private
   generic, public :: sqrt =&amp;gt; sqrt
contains
   function sqrt( x ) result( r )
      real, intent(in) :: x
      real :: r
      print *, "Using pocket calculator method:" 
      r = exp( 0.5*log(x) ) 
   end function 
end module
   use m 
   print *, "sqrt(2.0) = ", sqrt(2.0)
end&lt;/LI-CODE&gt;&lt;LI-CODE lang="none"&gt;C:\Temp&amp;gt;ifort /standard-semantics /warn:all /stand:f18 q.f90
Intel(R) Fortran Intel(R) 64 Compiler Classic for applications running on Intel(R) 64, Version 2021.2.0 Build 20210228_000000
Copyright (C) 1985-2021 Intel Corporation.  All rights reserved.

Microsoft (R) Incremental Linker Version 14.28.29337.0
Copyright (C) Microsoft Corporation.  All rights reserved.

-out:q.exe
-subsystem:console
q.obj

C:\Temp&amp;gt;q.exe
 Using pocket calculator method:
 1.414214

C:\Temp&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The case where Intel compiler was non-conforming had to do with &lt;STRONG&gt;intrinsic operations&lt;/STRONG&gt;, not intrinsic procedures.&amp;nbsp; The standard never intended an override of intrinsic operations but that is different from intrinsic procedures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 19:18:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273948#M155553</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2021-04-15T19:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273988#M155554</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/92920"&gt;@FortranFan&lt;/a&gt;&amp;nbsp;, would you please point to the specific paragraph or lines of the standard that, according to you, allows one to replace an intrinsic procedure through generic extension? I don't think this is correct, especially as it would violate 15.4.3.4.1p2, which says (in part), "The rules specifying how any two procedures with the same generic identifier shall differ are given&amp;nbsp;in 15.4.3.4.5. They ensure that any generic invocation applies to at most one specific procedure."&lt;/P&gt;
&lt;P&gt;The same applies to generic operators. You can extend them by adding meanings the standard does not provide, but you can't, for example, make "2+2" call your own addition routine, just as you can't replace SQRT(REAL) unless you completely replace the standard intrinsic name in a scope.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 21:25:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1273988#M155554</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2021-04-15T21:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1274348#M155562</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/5442"&gt;@Steve_Lionel&lt;/a&gt; wrote:
.. would you please point to the specific paragraph or lines of the standard that, according to you, allows one to replace an intrinsic procedure through generic extension? ..&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It will be more helpful if you first explain what you meant by, "&lt;SPAN&gt;You cannot replace an intrinsic (for standard argument types) with generic extension.&lt;/SPAN&gt;"&amp;nbsp; By this statement, did you meant the following code does not conform to the standard? (note: it's a variant of the snippet upthread but the Fortran 2018 GENERIC statement has been replaced by the Fortran 90 and later INTERFACE block to allow parsing with different compilers).&amp;nbsp;&amp;nbsp;If that is what you meant, then you will find the standard and almost all the compilers disagree.&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;module m
   interface sqrt
      module procedure sqrt
   end interface
   public :: sqrt !&amp;lt;-- superfluous; included for one compiler's sake 
contains
   function sqrt( x ) result(r)
      real, intent(in) :: x
      real :: r
      write(*,*) "Using pocket calculator method:"
      r = exp( 0.5*log(x) )
   end function 
end module
   use m, only : sqrt
   real :: x
   x = sqrt(2.0)
   write(*, "('sqrt(2.0) = ', f14.6)") x
end&lt;/LI-CODE&gt;
&lt;P&gt;Here the generic interface identifier is "overriding" the intrinsic SQRT procedure; one then has to employ the INTRINSIC attribute to reference the intrinsic SQRT.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Arguably what the standard does is effectively permission-by-omission here.&amp;nbsp; &amp;nbsp;Unlike with defined operations where in section&amp;nbsp;15.4.3.4.2 Defined operations, paragraph 1, lines 10 thru' 13 (page 305) where the standard states, "If the operator is an intrinsic-operator&amp;nbsp;(R608), the number of dummy arguments shall be consistent with the intrinsic uses of that operator, and the&amp;nbsp;types, kind type parameters, or ranks of the dummy arguments shall differ from those required for the intrinsic&amp;nbsp;operation (10.1.5)," there is no corresponding stipulation with intrinsic procedures and my take is it's by design.&lt;/P&gt;
&lt;P&gt;The notion of allowing an override of an intrinsic procedure is then spread &lt;U&gt;subtly&lt;/U&gt; across&amp;nbsp;section 15.4.3.&amp;nbsp; And statements such as, "If a generic invocation is consistent with both a specific procedure from&amp;nbsp;an interface and an accessible intrinsic procedure, it is the specific procedure from the interface that is referenced," provide a gentle hint toward its support.&amp;nbsp; One will be hard-pressed to find a processor conformant to Fortran 90 even that does &lt;U&gt;not&lt;/U&gt; compile the code posted in this thread to a program giving the following output:&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;C:\Temp&amp;gt;f90 q.f90
Compaq Visual Fortran Optimizing Compiler Version 6.6 (Update C)
Copyright 2003 Compaq Computer Corp. All rights reserved.

q.f90
Microsoft (R) Incremental Linker Version 6.00.8447
Copyright (C) Microsoft Corp 1992-1998. All rights reserved.

/subsystem:console
..
/out:q.exe

C:\Temp&amp;gt;q.exe
 Using pocket calculator method:
sqrt(2.0) =       1.414214

C:\Temp&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Apr 2021 23:06:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1274348#M155562</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2021-04-16T23:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: Strange bug with overloading intrinsic sqrt</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1274420#M155565</link>
      <description>&lt;P&gt;You are correct. I was confusing the rule for operators with that for intrinsics.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Apr 2021 20:11:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-bug-with-overloading-intrinsic-sqrt/m-p/1274420#M155565</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2021-04-17T20:11:14Z</dc:date>
    </item>
  </channel>
</rss>

