Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

"Say yur prayers, yuh flea-pickin' varmint!" -- Yosemite Sam


devel / comp.lang.fortran / associate to an allocatable array inside an openmp directive using ifort

SubjectAuthor
* associate to an allocatable array inside an openmp directive using ifortygal...@gmail.com
+- Re: associate to an allocatable array inside an openmp directive using ifortNeil
`* Re: associate to an allocatable array inside an openmp directivepehache
 `* Re: associate to an allocatable array inside an openmp directiveygal...@gmail.com
  +* Re: associate to an allocatable array inside an openmp directiveFortranFan
  |`- Re: associate to an allocatable array inside an openmp directiveygal...@gmail.com
  `* Re: associate to an allocatable array inside an openmp directivepehache
   `- Re: associate to an allocatable array inside an openmp directiveRon Shepard

1
associate to an allocatable array inside an openmp directive using ifort

<24b8557a-b00d-48db-be91-1176fc351bb3n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2550&group=comp.lang.fortran#2550

  copy link   Newsgroups: comp.lang.fortran
X-Received: by 2002:a37:af04:0:b0:6b5:e908:b2c7 with SMTP id y4-20020a37af04000000b006b5e908b2c7mr12113qke.214.1658044104314;
Sun, 17 Jul 2022 00:48:24 -0700 (PDT)
X-Received: by 2002:a81:af06:0:b0:31c:96f9:ccd6 with SMTP id
n6-20020a81af06000000b0031c96f9ccd6mr25435935ywh.457.1658044102365; Sun, 17
Jul 2022 00:48:22 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.fortran
Date: Sun, 17 Jul 2022 00:48:22 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=132.64.99.48; posting-account=NV15CQoAAABYPYNLVo0UiAnpWEcF-QjO
NNTP-Posting-Host: 132.64.99.48
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <24b8557a-b00d-48db-be91-1176fc351bb3n@googlegroups.com>
Subject: associate to an allocatable array inside an openmp directive using ifort
From: ygalklein@gmail.com (ygal...@gmail.com)
Injection-Date: Sun, 17 Jul 2022 07:48:24 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 34
 by: ygal...@gmail.com - Sun, 17 Jul 2022 07:48 UTC

Hi,

I am trying to compile and run the following code:

``` fortran
program openmmp_with_associate_to_allocatable
implicit none
integer, allocatable, dimension(:) :: allocatable_array
integer :: static_array(5), i
allocate(allocatable_array(5))
do i = 1, 5
allocatable_array(i) = i
static_array(i) = i
end do
!$omp parallel do
do i = 1, 5
associate(a=>static_array, b=>allocatable_array)
write(*, *) "i, a(i)", i, a(i)
write(*, *) "i, b(i)", i, b(i)
end associate
end do
!$omp end parallel do
end program openmmp_with_associate_to_allocatable
```

Using gfortran 12.1 (with or without -fopenmp) the code compiles and runs succesfully and prints both a and b as asked.

Using itel fortran compiler 2022.2.0: Without using -qopenmp - the code compiles and runs successfully.
When using -qopenmp - the code compiles but crashes when tryihnjg to print b which associates to an allocatable array. a - which is ascociated to a static array is printed successfully.

Does any one know if this code is written with a problem or is there a problem in ifort?

Thanks,
Ygal

Re: associate to an allocatable array inside an openmp directive using ifort

<tb0npq$3n9na$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2555&group=comp.lang.fortran#2555

  copy link   Newsgroups: comp.lang.fortran
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: nddtwentyone@gmail.com (Neil)
Newsgroups: comp.lang.fortran
Subject: Re: associate to an allocatable array inside an openmp directive using ifort
Date: Sun, 17 Jul 2022 10:20:44 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 38
Message-ID: <tb0npq$3n9na$1@dont-email.me>
References: <24b8557a-b00d-48db-be91-1176fc351bb3n@googlegroups.com>
Injection-Date: Sun, 17 Jul 2022 10:20:44 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="fb3505d52917f6690973f5ef9961fa74";
logging-data="3909354"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19Whzos6NlvFgKvjgMuYYTB"
User-Agent: tin/2.4.4-20191224 ("Millburn") (Linux/5.4.0-122-generic (x86_64))
Cancel-Lock: sha1:/HxqozdnWAeBTvFFWSDPZzNdHo0=
 by: Neil - Sun, 17 Jul 2022 10:20 UTC

ygal...@gmail.com <ygalklein@gmail.com> wrote:
> Hi,
>
> I am trying to compile and run the following code:
>
> ``` fortran
> program openmmp_with_associate_to_allocatable
> implicit none
> integer, allocatable, dimension(:) :: allocatable_array
> integer :: static_array(5), i
> allocate(allocatable_array(5))
> do i = 1, 5
> allocatable_array(i) = i
> static_array(i) = i
> end do
> !$omp parallel do
> do i = 1, 5
> associate(a=>static_array, b=>allocatable_array)
> write(*, *) "i, a(i)", i, a(i)
> write(*, *) "i, b(i)", i, b(i)
> end associate
> end do
> !$omp end parallel do
> end program openmmp_with_associate_to_allocatable
> ```
>
>
> Using gfortran 12.1 (with or without -fopenmp) the code compiles and runs succesfully and prints both a and b as asked.
>
> Using itel fortran compiler 2022.2.0: Without using -qopenmp - the code compiles and runs successfully.
> When using -qopenmp - the code compiles but crashes when tryihnjg to print b which associates to an allocatable array. a - which is ascociated to a static array is printed successfully.
>
> Does any one know if this code is written with a problem or is there a problem in ifort?
>
> Thanks,
> Ygal

It successfully compiles and runs with nagfor, with & without -fopenmp.

Re: associate to an allocatable array inside an openmp directive using ifort

<jjigmvFkm95U1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2557&group=comp.lang.fortran#2557

  copy link   Newsgroups: comp.lang.fortran
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: pehache.7@gmail.com (pehache)
Newsgroups: comp.lang.fortran
Subject: Re: associate to an allocatable array inside an openmp directive
using ifort
Date: Sun, 17 Jul 2022 15:21:34 +0200
Lines: 40
Message-ID: <jjigmvFkm95U1@mid.individual.net>
References: <24b8557a-b00d-48db-be91-1176fc351bb3n@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
X-Trace: individual.net 4rr8y7dS2OZzq+Wrg+4gzg6VE11bmzS9efCppspKaeOl0gyXhS
Cancel-Lock: sha1:BMDO/zoWC2lsOtV/phUrL/iEgdQ=
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:91.0)
Gecko/20100101 Thunderbird/91.10.0
Content-Language: fr
In-Reply-To: <24b8557a-b00d-48db-be91-1176fc351bb3n@googlegroups.com>
 by: pehache - Sun, 17 Jul 2022 13:21 UTC

Le 17/07/2022 à 09:48, ygal...@gmail.com a écrit :
> Hi,
>
> I am trying to compile and run the following code:
>
> ``` fortran
> program openmmp_with_associate_to_allocatable
> implicit none
> integer, allocatable, dimension(:) :: allocatable_array
> integer :: static_array(5), i
> allocate(allocatable_array(5))
> do i = 1, 5
> allocatable_array(i) = i
> static_array(i) = i
> end do
> !$omp parallel do
> do i = 1, 5
> associate(a=>static_array, b=>allocatable_array)
> write(*, *) "i, a(i)", i, a(i)
> write(*, *) "i, b(i)", i, b(i)
> end associate
> end do
> !$omp end parallel do
> end program openmmp_with_associate_to_allocatable
> ```
>
>
> Using gfortran 12.1 (with or without -fopenmp) the code compiles and runs succesfully and prints both a and b as asked.
>
> Using itel fortran compiler 2022.2.0: Without using -qopenmp - the code compiles and runs successfully.
> When using -qopenmp - the code compiles but crashes when tryihnjg to print b which associates to an allocatable array. a - which is ascociated to a static array is printed successfully.
>
> Does any one know if this code is written with a problem or is there a problem in ifort?
The validity of such code looks unclear
https://community.intel.com/t5/Intel-Fortran-Compiler/OpenMP-with-associate-define-private/m-p/1180441

--
"...sois ouvert aux idées des autres pour peu qu'elles aillent dans le
même sens que les tiennes.", ST sur fr.bio.medecine
ST passe le mur du çon : <j3nn2hFmqj7U1@mid.individual.net>

Re: associate to an allocatable array inside an openmp directive using ifort

<70c162bd-c190-4bfc-9e23-49785259f42cn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2558&group=comp.lang.fortran#2558

  copy link   Newsgroups: comp.lang.fortran
X-Received: by 2002:a0c:d983:0:b0:472:ee1a:8ef2 with SMTP id y3-20020a0cd983000000b00472ee1a8ef2mr17617219qvj.111.1658065309740;
Sun, 17 Jul 2022 06:41:49 -0700 (PDT)
X-Received: by 2002:a81:7996:0:b0:31c:96d1:746 with SMTP id
u144-20020a817996000000b0031c96d10746mr25672573ywc.467.1658065309521; Sun, 17
Jul 2022 06:41:49 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.fortran
Date: Sun, 17 Jul 2022 06:41:49 -0700 (PDT)
In-Reply-To: <jjigmvFkm95U1@mid.individual.net>
Injection-Info: google-groups.googlegroups.com; posting-host=132.64.99.48; posting-account=NV15CQoAAABYPYNLVo0UiAnpWEcF-QjO
NNTP-Posting-Host: 132.64.99.48
References: <24b8557a-b00d-48db-be91-1176fc351bb3n@googlegroups.com> <jjigmvFkm95U1@mid.individual.net>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <70c162bd-c190-4bfc-9e23-49785259f42cn@googlegroups.com>
Subject: Re: associate to an allocatable array inside an openmp directive
using ifort
From: ygalklein@gmail.com (ygal...@gmail.com)
Injection-Date: Sun, 17 Jul 2022 13:41:49 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 62
 by: ygal...@gmail.com - Sun, 17 Jul 2022 13:41 UTC

ב-יום ראשון, 17 ביולי 2022 בשעה 16:21:39 UTC+3, pehache כתב/ה:
> Le 17/07/2022 à 09:48, ygal...@gmail.com a écrit :
> > Hi,
> >
> > I am trying to compile and run the following code:
> >
> > ``` fortran
> > program openmmp_with_associate_to_allocatable
> > implicit none
> > integer, allocatable, dimension(:) :: allocatable_array
> > integer :: static_array(5), i
> > allocate(allocatable_array(5))
> > do i = 1, 5
> > allocatable_array(i) = i
> > static_array(i) = i
> > end do
> > !$omp parallel do
> > do i = 1, 5
> > associate(a=>static_array, b=>allocatable_array)
> > write(*, *) "i, a(i)", i, a(i)
> > write(*, *) "i, b(i)", i, b(i)
> > end associate
> > end do
> > !$omp end parallel do
> > end program openmmp_with_associate_to_allocatable
> > ```
> >
> >
> > Using gfortran 12.1 (with or without -fopenmp) the code compiles and runs succesfully and prints both a and b as asked.
> >
> > Using itel fortran compiler 2022.2.0: Without using -qopenmp - the code compiles and runs successfully.
> > When using -qopenmp - the code compiles but crashes when tryihnjg to print b which associates to an allocatable array. a - which is ascociated to a static array is printed successfully.
> >
> > Does any one know if this code is written with a problem or is there a problem in ifort?
> The validity of such code looks unclear
> https://community.intel.com/t5/Intel-Fortran-Compiler/OpenMP-with-associate-define-private/m-p/1180441
>
> --
> "...sois ouvert aux idées des autres pour peu qu'elles aillent dans le
> même sens que les tiennes.", ST sur fr.bio.medecine
> ST passe le mur du çon : <j3nn2h...@mid.individual.net>

Hi,
Thanks for the replies.
I saw the link in intel forum that you sent.

It is not the same code.
and supposudely not the same problem

Give attention to the fact that there is no problem with the static array....
Thanks anyway.
If anyone knows if this is an intel compiler probelm - would be gald to know

Re: associate to an allocatable array inside an openmp directive using ifort

<1a63c117-4f98-4ed3-b777-6483cfb856a6n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2565&group=comp.lang.fortran#2565

  copy link   Newsgroups: comp.lang.fortran
X-Received: by 2002:a05:620a:40cb:b0:6b1:4417:ccc5 with SMTP id g11-20020a05620a40cb00b006b14417ccc5mr14506189qko.132.1658068731995;
Sun, 17 Jul 2022 07:38:51 -0700 (PDT)
X-Received: by 2002:a25:33c4:0:b0:668:cc8d:bc43 with SMTP id
z187-20020a2533c4000000b00668cc8dbc43mr22277873ybz.467.1658068731737; Sun, 17
Jul 2022 07:38:51 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.fortran
Date: Sun, 17 Jul 2022 07:38:51 -0700 (PDT)
In-Reply-To: <70c162bd-c190-4bfc-9e23-49785259f42cn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=165.225.39.107; posting-account=ZZXq9AoAAAAQEcA7zKAGm0UFQh4gMBv7
NNTP-Posting-Host: 165.225.39.107
References: <24b8557a-b00d-48db-be91-1176fc351bb3n@googlegroups.com>
<jjigmvFkm95U1@mid.individual.net> <70c162bd-c190-4bfc-9e23-49785259f42cn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <1a63c117-4f98-4ed3-b777-6483cfb856a6n@googlegroups.com>
Subject: Re: associate to an allocatable array inside an openmp directive
using ifort
From: parekhvs@gmail.com (FortranFan)
Injection-Date: Sun, 17 Jul 2022 14:38:51 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 9
 by: FortranFan - Sun, 17 Jul 2022 14:38 UTC

On Sunday, July 17, 2022 at 9:41:51 AM UTC-4, ygal...@gmail.com wrote:

> ..
> If anyone knows if this is an intel compiler probelm - would be gald to know

@Ygal,

You may want to post your inquiry at the Intel Fortran forum also and the replies there by Intel Support team on your question(s) may prove useful to you:

https://community.intel.com/t5/Intel-Fortran-Compiler/bd-p/fortran-compiler

Re: associate to an allocatable array inside an openmp directive using ifort

<072fe66e-9c74-414f-a316-612f951ce433n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2567&group=comp.lang.fortran#2567

  copy link   Newsgroups: comp.lang.fortran
X-Received: by 2002:ad4:4ea2:0:b0:473:6d91:6759 with SMTP id ed2-20020ad44ea2000000b004736d916759mr18784906qvb.102.1658069862916;
Sun, 17 Jul 2022 07:57:42 -0700 (PDT)
X-Received: by 2002:a5b:487:0:b0:664:3c15:7e19 with SMTP id
n7-20020a5b0487000000b006643c157e19mr22148779ybp.105.1658069862719; Sun, 17
Jul 2022 07:57:42 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.fortran
Date: Sun, 17 Jul 2022 07:57:42 -0700 (PDT)
In-Reply-To: <1a63c117-4f98-4ed3-b777-6483cfb856a6n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=132.64.99.48; posting-account=NV15CQoAAABYPYNLVo0UiAnpWEcF-QjO
NNTP-Posting-Host: 132.64.99.48
References: <24b8557a-b00d-48db-be91-1176fc351bb3n@googlegroups.com>
<jjigmvFkm95U1@mid.individual.net> <70c162bd-c190-4bfc-9e23-49785259f42cn@googlegroups.com>
<1a63c117-4f98-4ed3-b777-6483cfb856a6n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <072fe66e-9c74-414f-a316-612f951ce433n@googlegroups.com>
Subject: Re: associate to an allocatable array inside an openmp directive
using ifort
From: ygalklein@gmail.com (ygal...@gmail.com)
Injection-Date: Sun, 17 Jul 2022 14:57:42 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 2183
 by: ygal...@gmail.com - Sun, 17 Jul 2022 14:57 UTC

ב-יום ראשון, 17 ביולי 2022 בשעה 17:38:53 UTC+3, FortranFan כתב/ה:
> On Sunday, July 17, 2022 at 9:41:51 AM UTC-4, ygal...@gmail.com wrote:
>
> > ..
> > If anyone knows if this is an intel compiler probelm - would be gald to know
> @Ygal,
>
> You may want to post your inquiry at the Intel Fortran forum also and the replies there by Intel Support team on your question(s) may prove useful to you:
>
> https://community.intel.com/t5/Intel-Fortran-Compiler/bd-p/fortran-compiler
Thanks Fortran Fan.

POsted

https://community.intel.com/t5/Intel-Fortran-Compiler/associate-to-an-allocatable-array-fails-inside-an-omp-directive/m-p/1400967#M162085

Re: associate to an allocatable array inside an openmp directive using ifort

<jjjbp1Fot00U1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2575&group=comp.lang.fortran#2575

  copy link   Newsgroups: comp.lang.fortran
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: pehache.7@gmail.com (pehache)
Newsgroups: comp.lang.fortran
Subject: Re: associate to an allocatable array inside an openmp directive
using ifort
Date: Sun, 17 Jul 2022 23:03:28 +0200
Lines: 20
Message-ID: <jjjbp1Fot00U1@mid.individual.net>
References: <24b8557a-b00d-48db-be91-1176fc351bb3n@googlegroups.com>
<jjigmvFkm95U1@mid.individual.net>
<70c162bd-c190-4bfc-9e23-49785259f42cn@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
X-Trace: individual.net 6/16PPgT9ACog9lxJHex/wHFImcpbI4DZQ8NqmZOVSCvnUJINd
Cancel-Lock: sha1:JT729utMyVkLPav3JAolCGPAFAg=
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:91.0)
Gecko/20100101 Thunderbird/91.10.0
Content-Language: fr
In-Reply-To: <70c162bd-c190-4bfc-9e23-49785259f42cn@googlegroups.com>
 by: pehache - Sun, 17 Jul 2022 21:03 UTC

Le 17/07/2022 à 15:41, ygal...@gmail.com a écrit :
>
> Hi,
> Thanks for the replies.
> I saw the link in intel forum that you sent.
>
> It is not the same code.
> and supposudely not the same problem

Sure, but some comments tend to show that it is not always easy to know
how ASSOCIATE and OpenMP work together...

"The OpenMP and Fortran standards are not explicit on what happens to an
associate name inside an OpenMP parallel do loop"

--
"...sois ouvert aux idées des autres pour peu qu'elles aillent dans le
même sens que les tiennes.", ST sur fr.bio.medecine
ST passe le mur du çon : <j3nn2hFmqj7U1@mid.individual.net>

Re: associate to an allocatable array inside an openmp directive using ifort

<Y6gBK.40813$Sf2.16489@fx34.iad>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2590&group=comp.lang.fortran#2590

  copy link   Newsgroups: comp.lang.fortran
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx34.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:102.0)
Gecko/20100101 Thunderbird/102.0.2
Subject: Re: associate to an allocatable array inside an openmp directive
using ifort
Content-Language: en-US
Newsgroups: comp.lang.fortran
References: <24b8557a-b00d-48db-be91-1176fc351bb3n@googlegroups.com>
<jjigmvFkm95U1@mid.individual.net>
<70c162bd-c190-4bfc-9e23-49785259f42cn@googlegroups.com>
<jjjbp1Fot00U1@mid.individual.net>
From: nospam@nowhere.org (Ron Shepard)
In-Reply-To: <jjjbp1Fot00U1@mid.individual.net>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 23
Message-ID: <Y6gBK.40813$Sf2.16489@fx34.iad>
X-Complaints-To: abuse@easynews.com
Organization: Forte - www.forteinc.com
X-Complaints-Info: Please be sure to forward a copy of ALL headers otherwise we will be unable to process your complaint properly.
Date: Mon, 18 Jul 2022 11:45:44 -0500
X-Received-Bytes: 1738
 by: Ron Shepard - Mon, 18 Jul 2022 16:45 UTC

On 7/17/22 4:03 PM, pehache wrote:
> Le 17/07/2022 à 15:41, ygal...@gmail.com a écrit :
>>
>> Hi,
>> Thanks for the replies.
>> I saw the link in intel forum that you sent.
>>
>> It is not the same code.
>> and supposudely not the same problem
>
> Sure, but some comments tend to show that it is not always easy to know
> how ASSOCIATE and OpenMP work together...
>
> "The OpenMP and Fortran standards are not explicit on what happens to an
> associate name inside an OpenMP parallel do loop"

Just out of curiosity, what if, instead of an associate name, the same
thing had been accomplished with a call to a contains procedure? Is the
OpenMP behavior defined in that case?

$.02 -Ron Shepard

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor