Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
告知
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

CONTIGUOUS attribute

styc
ビギナー
1,720件の閲覧回数

ifort compiles the attached program without complaining. I wonder if some kind of a diagnostic message is necessary for subroutine f, which invokes subroutine g with an argument that may or may not be contiguous.

0 件の賞賛
9 返答(返信)
TimP
名誉コントリビューター III
1,720件の閲覧回数

current ifort:

test.f90(6): error #8375: Array section is not contiguous if it has stride other
 than unity.
    call g(x(1 : 10 : 2)) ! no good
-------------^
test.f90(6): error #8372: If dummy argument is declared CONTIGUOUS, actual argum
ent must be contiguous as well.  
    call g(x(1 : 10 : 2)) ! no good
-----------^
compilation aborted for test.f90 (code 1)

styc
ビギナー
1,720件の閲覧回数

TimP (Intel) wrote:

current ifort:

test.f90(6): error #8375: Array section is not contiguous if it has stride other
 than unity.
    call g(x(1 : 10 : 2)) ! no good
-------------^
test.f90(6): error #8372: If dummy argument is declared CONTIGUOUS, actual argum
ent must be contiguous as well.  
    call g(x(1 : 10 : 2)) ! no good
-----------^
compilation aborted for test.f90 (code 1)

Line 6 is commented out. Please do not bring it back.

TimP
名誉コントリビューター III
1,720件の閲覧回数

f receives a contiguous copy and passes it on to g.

styc
ビギナー
1,720件の閲覧回数

TimP (Intel) wrote:

f receives a contiguous copy and passes it on to g.

Seemingly that is not the case with ifort. If you fill with the original x with 1, 2, ..., 10 and print out x(1) and x(2) in g, you get 1 and 2. gfortran 4.7 packs the noncontiguous argument in f before passing it to g and prints out 1 and 3.

jimdempseyatthecove
名誉コントリビューター III
1,720件の閲覧回数

styc,

IVF requires caller to pass CONTIGUOUS array when dummy argument attributed with CONTIGUOUS.
gfortran apparently creates temporary array (when caller's arg not contiguous). This is equivalent to the called subroutine having no interface (explicit or implicit) with regard to the array dummy attributed CONTIGUOUS. Analogous to F90 calling F77 subroutine with no interface.

Sounds like an interpritation of the standards issue. Steve may be able to comment on this.

Jim Dempsey

Steven_L_Intel1
従業員
1,720件の閲覧回数

The Fortran standard changed in this area since Fortran 2008 was published.  Intel Fortran follows the original text that says:

The CONTIGUOUS attribute specifies that an assumed-shape array can only be associated with a contiguous effective argument.

Interpretation F08/0061 changed this to:

The CONTIGUOUS attribute specifies that an assumed-shape array is contiguous.

This interpretation was part of the just-approved Corrigendum 2 - we haven't caught up to that yet, but we will.  I have filed issue DPD200241665 regarding this change.

styc
ビギナー
1,720件の閲覧回数

Steve Lionel (Intel) wrote:

The Fortran standard changed in this area since Fortran 2008 was published.  Intel Fortran follows the original text that says:

The CONTIGUOUS attribute specifies that an assumed-shape array can only be associated with a contiguous effective argument.

Interpretation F08/0061 changed this to:

The CONTIGUOUS attribute specifies that an assumed-shape array is contiguous.

This interpretation was part of the just-approved Corrigendum 2 - we haven't caught up to that yet, but we will.  I have filed issue DPD200241665 regarding this change.

Thanks for the clarification. In that case, is implied pack/unpack (à la gfortran) the expected behavior?

Steven_L_Intel1
従業員
1,720件の閲覧回数

I would say that, yes, that is the expected behavior.

Steven_L_Intel1
従業員
1,720件の閲覧回数

Implemented in 15.0.

返信