- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
링크가 복사됨
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Many thanks for the messages!
Yes, -zero is unfortunately not implemented.
And I wonder if support for gprof is fully provided.
I wanted to find out a hotspot of a poorly performingsubroutine which I had to compile with -O0 but I could not get profiling to work on Itanium. ifort 8.0 can compile a simple test program with -p (or -qp) butthe resulting code crashes. Can this be related to libgcc or kernel version?
It also did occur to me the problem with optimization could be related to vectorization. Is this the main difference between -O0 and -O1? Does it make sense totry -O1 and !DEC$ NOVECTOR before every loop?
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
My problem is Itanium, not P4. So -xW etc are not applicable.
I have not tried VTune on Itanium yet. VTune requires very specific versions of libraries and warns that it may not work with others. I am not prepared to change the libs as yet.
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Itanium. It messes up argument passing between
different modules (see attached test case).
I have submitted a bug report about this (264079),
but no answer so far.
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
-O1 -mp is a reasonable option for minimum code size, high probability of working, and reasonable compile time. Unless you add -save -zero, it would already depend on your source complying with Fortran standard.
I have examples of up to a few thousand source lines where gprof works with current ifort, as well as larger examples where it fails. It is known not to work at all with earlier versions of Intel Fortran (e.g. prior to March 2004), or with older versions of glibc. glibc-2.2.4-32.15 or newer are definitely OK. I've been told the correction came in around March 2003. If gprof doesn't work with gcc, you know you need some linux upgrades. Bug reports with small examples where gprof fails with current Intel compiler releases are appreciated, as it is quite important to me that it should be made reliable.
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
$ ifort -V
Intel Fortran Itanium Compiler for Itanium-based applications
Version 8.0 Build 20040716 Package ID: l_fc_pc_8.0.046_pl050.1
Copyright (C) 1985-2004 Intel Corporation. All rights reserved.
ifort: Command line error: no files specified; for help type "ifort -help"
$ cat test-single.f90
! Here's an even more simple test case.
! When I compile this with "ifort -p -o test-single test-single.f90", the
! output is 0.0000000E+00
module myupdate
contains
subroutine update(v)
real, intent(inout) :: v
v = v+5.
end subroutine update
end module myupdate
program main
use myupdate
real :: val
val = 3.4
call update(val)
print *,val
end program main
$ ifort -o test-single test-single.f90
$ ./test-single
8.400000
$ ifort -p -o test-single test-single.f90
$ ./test-single
0.0000000E+00
[zfkts@byzrzd Anneal-Test]$ rpm -q glibc
glibc-2.3.2-95.27
glibc-2.3.2-95.27
[zfkts@byzrzd Anneal-Test]$ uname --s -r -v -m -o
Linux 2.4.21-20.EL #1 SMP Wed Aug 18 20:30:22 EDT 2004 ia64 GNU/Linux
