public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/94578] New: Incorrect assignment of RESHAPE() result to a Fortran pointer
@ 2020-04-13 13:46 howisjw at hotmail dot com
  2020-04-13 13:53 ` [Bug fortran/94578] " howisjw at hotmail dot com
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: howisjw at hotmail dot com @ 2020-04-13 13:46 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 94578
           Summary: Incorrect assignment of RESHAPE() result to a Fortran
                    pointer
           Product: gcc
           Version: 8.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: howisjw at hotmail dot com
  Target Milestone: ---

The other day, I tried to compile a large Fortran code using gcc 8.3.0. In the
code the reshape function is used and the resulting is assigned to a Fortran
pointer. The results are not what I expected to be. I am not sure if it a bug
or if I do something which is not according to the latest Fortran standard. I
created a simple program (see below) to demostrate the problem. 

If I use the tmp array, like

  tmp     = reshape(source=array2d, shape=shape(array1d))
  array1d = tmp

it all works. I have the impression that under-the-hood the result of the
reshape function is stored in array1d using a some kind of memory copy. This
works fine if array1d is contiguous in memory. However, if array1d is a Fortran
pointer (my case) do not have to be contiguous in memory.


program bug_reshape
  implicit none

  type :: value_and_derivatives
     real(kind=8) :: x,s,t,st,ss,tt
     logical      :: up_to_date
  end type value_and_derivatives

  type :: tsolution
     type(value_and_derivatives) :: x, y
  end type tsolution

  type(tsolution), dimension(3*4), target :: solution

  ! Locals
  integer                                            :: i, j
  type(value_and_derivatives), dimension(3,4)        :: array2d
  type(value_and_derivatives), dimension(:), pointer :: array1d
  type(value_and_derivatives), dimension(3*4)        :: tmp

  array1d => solution%x

  do j=1,4
     do i=1,3
        array2d(i,j) = value_and_derivatives(i*j, i, j, 0.1*i*j, 0.1*i, 0.1*j,
.true.)
     end do
  end do
  array1d = reshape(source=array2d, shape=shape(array1d))

  print*,"--- array2d ---"
  do j=1,4
     do i=1,3
        print '(2(i1,1x),6(e15.7,1x),l)',i,j,array2d(i,j)
     end do
  end do

  print*,"--- array1d ---"
  do i=1,12
     print '(i1,1x,6(e15.7,1x),l)',i,array1d(i)
  end do
end program bug_reshape

Jan-Willem

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2020-04-27 16:57 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-13 13:46 [Bug fortran/94578] New: Incorrect assignment of RESHAPE() result to a Fortran pointer howisjw at hotmail dot com
2020-04-13 13:53 ` [Bug fortran/94578] " howisjw at hotmail dot com
2020-04-13 13:56 ` howisjw at hotmail dot com
2020-04-14 15:05 ` tkoenig at gcc dot gnu.org
2020-04-14 15:08 ` tkoenig at gcc dot gnu.org
2020-04-16 14:21 ` tkoenig at gcc dot gnu.org
2020-04-16 14:24 ` tkoenig at gcc dot gnu.org
2020-04-17  7:02 ` howisjw at hotmail dot com
2020-04-17 14:16 ` tkoenig at gcc dot gnu.org
2020-04-17 15:17 ` tkoenig at gcc dot gnu.org
2020-04-25 10:29 ` cvs-commit at gcc dot gnu.org
2020-04-27  9:42 ` howisjw at hotmail dot com
2020-04-27 16:57 ` 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).