Intel® Fortran Compiler 16.0 User and Reference Guide

IPO for Large Programs

In most cases, IPO generates a single true object file for the link-time compilation. This behavior is not optimal for very large programs, perhaps even making it impossible to use [Q]ipo compiler option on the application.

The compiler provides two methods to avoid this problem. The first method is an automatic size-based heuristic, which causes the compiler to generate multiple true object files for large link-time compilations. The second method is to manually instruct the compiler to perform multi-object IPO.

Regardless of the method used, it is best to use the compiler defaults first and examine the results. If the defaults do not provide the desired results then experiment with generating more object files.

You can use the [Q]ipo-jobs compiler option to control the number of commands, or jobs, executed during parallel builds.

Using [Q]ipo N to Create Multiple Object Files

If you specify [Q]ipo0, which is the same as not specifying a value, the compiler uses heuristics to determine whether to create one or more object files based on the expected size of the application. The compiler generates one object file for small applications, and two or more object files for large applications. If you specify any value greater than 0, the compiler generates that number of object files, unless the value you pass a value that exceeds the number of source files. In that case, the compiler creates one object file for each source file then stops generating object files.

The following example commands demonstrate how to use [Q]ipo2 option to compile large programs.

Operating System

Example Command

Windows*

ifort /Qipo2 /c a.f90 b.f90

Linux*

ifort -ipo2 -c a.f90 b.f90

OS X*

ifort -ipo2 -c a.f90 b.f90

In executing the above commands, the compiler generates object files using an OS-dependent naming convention. On Linux* and OS X*, the example command results in object files named ipo_out.o, ipo_out1.o, and ipo_out2.o. On Windows*, the file names follow the same convention; however, the file extensions will be .obj.

Link the resulting object files as shown in Using IPO or Linking Tools and Options.

Creating the Maximum Number of Object Files

Using [Q]ipo-separate allows you to force the compiler to generate the maximum number of true object files that the compiler will support during multiple object compilation. The maximum number of true object files is the equal to the number of mock object files passed on the link line.

For example, you can pass example commands similar to the following:

Operating System

Example Command

Windows*

ifort a.obj b.obj c.obj /Qipo-separate /Qipo-c

Linux*

ifort a.o b.o c.o -ipo-separate -ipo-c

OS X*

ifort a.o b.o c.o -ipo-separate -ipo-c

The compiler generates multiple object files that use the same naming convention discussed above.

Link the resulting object files as shown in Using IPO or Linking Tools and Options.

See Also