Visible to Intel only — GUID: GUID-E1727138-6AD9-4AC8-80F0-F27A377B9C99
Visible to Intel only — GUID: GUID-E1727138-6AD9-4AC8-80F0-F27A377B9C99
prof-src-root, Qprof-src-root
Lets you use relative directory paths when looking up profile data and specifies a directory as the base. This feature is only available for ifort.
Syntax
Linux: |
-prof-src-root=dir |
macOS: |
-prof-src-root=dir |
Windows: |
/Qprof-src-root:dir |
Arguments
dir |
Is the base for the relative paths. |
Default
OFF |
The setting of relevant options determines the path used when looking up profile data records. |
Description
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 macOS 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.
IDE Equivalent
Alternate Options
None
Example
Consider the initial [Q]prof-gen compilation of the source file c:\user1\feature_foo\myproject\common\glob.f90 shown below:
Linux* and macOS: 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 macOS: 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 macOS: 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.