- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
hello,
I receiveSIGSEGV segmentation fault with simple operation on coarray variable of character type.
here is the code
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
program bugrep
implicit none
character(len=1) :: test
if (this_image() == 1) then
test[1] = "a"
!on this print the first image terminates
print *, test[1]
end if
sync all
if (this_image() /= 1) then
print *, "ready to print"
!on this print the other images terminate as well
print *, test[1]
end if
end program bugrep
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
ifort version:Version 12.0.0
operating system: debian squeeze and ubuntu maverick (the same behaviour occured)
compilation command:ifort -coarray bugrep.f90
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Character Coarrays are not supported at this time.
ron
ron

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page