public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/98903] New: [Coarray, F2018] Implement TEAM_NUMBER in image-selector-spec
Date: Sun, 31 Jan 2021 15:29:33 +0000	[thread overview]
Message-ID: <bug-98903-4@http.gcc.gnu.org/bugzilla/> (raw)

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

)

                 reply	other threads:[~2021-01-31 15:29 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-98903-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).