CMPLX REAL and INT almost done
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 11 articles for 0.005 sec
Re: CMPLX, REAL, and INT -- almost done     

Group: comp.lang.fortran · Group Profile · Search for CMPLX REAL and INT almost done in comp.lang.fortran
Author: James Van Buskirk
Date: May 18, 2008 00:53

... of 20080516 confirming that the patch for INT catches all combinations of all kinds of.... Also the fix for BOZ inputs to to CMPLX intrinsic for (all real or integer kinds)*(B, O, or Z)*(all kinds...absent)* (same for BOZ X and real or integer Y) = 8*3*(5*3...2 = 768 cases passed, so CMPLX, REAL, and INT now pass the tests for... turned up something with denormals and INT(BOZ) is not yet upgraded to ...
Show full article (1.09Kb) · Show article thread
CMPLX, REAL, and INT -- almost done     

Group: comp.lang.fortran · Group Profile · Search for CMPLX REAL and INT almost done in comp.lang.fortran
Author: James Van Buskirk
Date: May 14, 2008 18:13

... whether the type conversion intrinsics CMPLX, REAL, and INT work. The ... compiling: C:\gfortran\james\intrinsics\int>type bug1.f90 module bugmod...carg1) integer, parameter :: k_k11 = kind(int(Parg1,kind=k11)) write(*,*) 42_k_k11...64: integer, parameter :: k_k11 = kind(int(Parg1,kind=k11)) 1 Internal...
Show full article (1.35Kb)
Re: CMPLX, REAL, and INT -- almost done     

Group: comp.lang.fortran · Group Profile · Search for CMPLX REAL and INT almost done in comp.lang.fortran
Author: Steven G. Kargl
Date: May 16, 2008 16:58

... message news:g0hvav$8nr$1@gnus01.u.washington.edu... Here's a reduced testcase subroutine bug1 integer, parameter :: ik1 = 1 integer, parameter :: k_k11 = kind(int((0.,0.), kind=ik1)) end subroutine bug1 In my test of intrinsics with complex inputs I have also encountered: C:\gfortran\james\intrinsics\num_initc1>type int2.f90 program...
Show full article (1.76Kb) · Show article thread
Re: CMPLX, REAL, and INT -- almost done     

Group: comp.lang.fortran · Group Profile · Search for CMPLX REAL and INT almost done in comp.lang.fortran
Author: Steven G. Kargl
Date: May 16, 2008 16:48

... in message news:g0hvav$8nr$1@gnus01.u.washington.edu... Here's a reduced testcase subroutine bug1 integer, parameter :: ik1 = 1 integer, parameter :: k_k11 = kind(int((0.,0.), kind=ik1)) end subroutine bug1 In my test of intrinsics with complex inputs I have also encountered: C:\gfortran\james\intrinsics\num_initc1>type int2.f90 program int2_test...
Show full article (1.49Kb) · Show article thread
Re: CMPLX, REAL, and INT -- almost done     

Group: comp.lang.fortran · Group Profile · Search for CMPLX REAL and INT almost done in comp.lang.fortran
Author: James Van Buskirk
Date: May 16, 2008 16:27

...> wrote in message news:g0hvav$8nr$1@gnus01.u.washington.edu... Here's a reduced testcase subroutine bug1 integer, parameter :: ik1 = 1 integer, parameter :: k_k11 = kind(int((0.,0.), kind=ik1)) end subroutine bug1 In my test of intrinsics with complex inputs I have also encountered: C:\gfortran\james\intrinsics\num_initc1>type int2.f90 program int2_test integer, ...
Show full article (0.93Kb) · Show article thread
Re: CMPLX, REAL, and INT -- almost done     

Group: comp.lang.fortran · Group Profile · Search for CMPLX REAL and INT almost done in comp.lang.fortran
Author: James Van Buskirk
Date: May 15, 2008 12:41

...> writes: integer, parameter :: k_k11 = kind(int(Parg1,kind=k11)) Internal Error at ... = 1 integer, parameter :: k_k11 = kind(int((0.,0.), kind=ik1)) end subroutine... similar code with INT replaced by REAL or CMPLX had already ... that had identical invocation of INT, but in an ordinary expression ... for initialization expressions using the INT intrinsic will pass after this ...
Show full article (1.36Kb) · Show article thread
Re: CMPLX, REAL, and INT -- almost done     

Group: comp.lang.fortran · Group Profile · Search for CMPLX REAL and INT almost done in comp.lang.fortran
Author: Steven G. Kargl
Date: May 15, 2008 11:27

... for the module: (delete) integer, parameter :: k_k11 = kind(int(Parg1,kind=k11)) 1 Internal Error at (1): ..., parameter :: ik1 = 1 integer, parameter :: k_k11 = kind(int((0.,0.), kind=ik1)) end subroutine bug1 If (0.,0... 0 (i.e., INTEGER) or 0. (i.e., REAL), then the code compiles. If ik1 is 1, 2,...
Show full article (1.44Kb) · Show article thread
Re: CMPLX, REAL, and INT -- almost done     

Group: comp.lang.fortran · Group Profile · Search for CMPLX REAL and INT almost done in comp.lang.fortran
Author: James Van Buskirk
Date: May 14, 2008 22:25

...(Parg1 = carg1) integer, parameter :: k_k11 = kind(int(Parg1,kind=k11)) write(*,*) 42_k_k11 end ... call bug1(cmplx(1)) end program bugtest C:\gfortran\james\intrinsics\int>gfortran bug1.f90 -obug1 bug1.f90:9.64: integer, parameter :: k_k11 = kind(int(Parg1,kind=k11)) 1 Internal Error ...
Show full article (1.71Kb) · Show article thread
Re: CMPLX, REAL, and INT -- almost done     

Group: comp.lang.fortran · Group Profile · Search for CMPLX REAL and INT almost done in comp.lang.fortran
Author: Steven G. Kargl
Date: May 14, 2008 21:56

In article <h4ednQk03oOjE7bVnZ2dnUVZ_jKdnZ2d@comcast.com>, "James Van Buskirk" <not_valid@comcast.net> writes: C:\gfortran\james\intrinsics\int>type bug1.f90 module bugmod parameter(ik1 = selected_int_kind(2)) implicit complex (P) contains subroutine bug1(P1) use mykinds1 What is mykinds1? -- Steve http://troutmask.apl.washington.edu/~kargl...
Show full article (0.39Kb) · Show article thread
Re: CMPLX, REAL, and INT -- almost done     

Group: comp.lang.fortran · Group Profile · Search for CMPLX REAL and INT almost done in comp.lang.fortran
Author: FX
Date: May 18, 2008 02:12

> FX turned up something with denormals Some more testing has revealed that most compilers have issues on that same testcase :) -- FX
Show full article (0.14Kb) · Show article thread
1 · 2 · next