Intel® Fortran Compiler 17.0 Developer Guide and Reference
Lets you use relative directory paths when looking up profile data and specifies a directory as the base.
Not available on Intel® 64 architecture targeting the Intel® Xeon Phi™ coprocessor x100 product family (formerly code name Knights Corner)
Linux and macOS: | -prof-src-root=dir |
Windows: | /Qprof-src-root:dir |
dir |
Is the base for the relative paths. |
OFF |
The setting of relevant options determines the path used when looking up profile data records. |
This option lets you use relative directory paths when looking up profile data in .dpi files. It lets you specify a directory as the base. The paths are relative to a base directory specified during the [Q]prof-gen compilation phase.
This option is available during the following phases of compilation:
Linux* and OS X* systems: -prof-gen and -prof-use phases
Windows* systems: /Qprof-gen and /Qprof-use phases
When this option is specified during the [Q]prof-gen phase, it stores information into the .dyn or .dpi file. Then, when .dyn files are merged together or the .dpi file is loaded, only the directory information below the root directory is used for forming the lookup key.
When this option is specified during the [Q]prof-use phase, it specifies a root directory that replaces the root directory specified at the [Q]prof-gen phase for forming the lookup keys.
To be effective, this option or option [Q]prof-src-root-cwd must be specified during the [Q]prof-gen phase. In addition, if one of these options is not specified, absolute paths are used in the .dpi file.
None
Consider the initial [Q]prof-gen compilation of the source file c:\user1\feature_foo\myproject\common\glob.f90 shown below:
Linux* and OS X*: icc -prof-gen -prof-src-root=c:\user1\feature_foo\myproject -c common\glob.c
Windows*: ifort /Qprof-gen /Qprof-src-root=c:\user1\feature_foo\myproject -c common\glob.f90
Linux* and OS X*: ifort -prof-gen -prof-src-root=c:\user1\feature_foo\myproject -c common\glob.f90
For the [Q]prof-use phase, the file glob.f90 could be moved into the directory c:\user2\feature_bar\myproject\common\glob.f90 and profile information would be found from the .dpi when using the following:
Windows*: ifort /Qprof-use /Qprof-src-root=c:\user2\feature_bar\myproject -c common\glob.f90
Linux* and OS X*: ifort -prof-use -prof-src-root=c:\user2\feature_bar\myproject -c common\glob.f90
If you do not use option [Q]prof-src-root during the [Q]prof-gen phase, by default, the [Q]prof-use compilation can only find the profile data if the file is compiled in the c:\user1\feature_foo\my_project\common directory.