public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/98903] New: [Coarray, F2018] Implement TEAM_NUMBER in image-selector-spec
@ 2021-01-31 15:29 tkoenig at gcc dot gnu.org
  0 siblings, 0 replies; only message in thread
From: tkoenig at gcc dot gnu.org @ 2021-01-31 15:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98903

            Bug ID: 98903
           Summary: [Coarray, F2018] Implement TEAM_NUMBER in
                    image-selector-spec
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: tkoenig at gcc dot gnu.org
  Target Milestone: ---

The following is currently rejected:

program main
  use, intrinsic :: iso_fortran_env
  type (team_type) :: odd_even
  integer :: me, my_team, n
  integer :: i
  integer :: a[*]
  me = this_image()
  n = num_images()
  a = me*100
  my_team = 2-mod(this_image(), 2)
  form team (my_team, odd_even)
  change team (odd_even)
  if (me == 1) then
     do i=1,n
        print *,a[i,team_number=-1]
     end do
  end if
  end team
end program main

$ gfortran -fcoarray=lib ft2.f90
ft2.f90:15:32:

   15 |         print *,a[i,team_number=-1]
      |                                1
Error: Invalid form of coarray reference at (1)

According to 9.6, R926, this is valid.

(-1 is the team number for the initial team, see

3.145.4 team number
−1 which identifies the initial team, or positive integer that identifies a
team within its parent team

)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-01-31 15:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-31 15:29 [Bug fortran/98903] New: [Coarray, F2018] Implement TEAM_NUMBER in image-selector-spec tkoenig at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).