Intel® Fortran Compiler Classic and Intel® Fortran Compiler Developer Guide and Reference

ID 767251
Date 3/31/2023
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

GAP Message (Diagnostic ID 30533)

NOTE:
This feature is only available for ifort.

Message

Compile with the %s option to vectorize and/or parallelize the loop at line %d.

Advice

Use the [q or Q]opt-subscript-in-range option for the specified file during compilation.

This option helps the compiler vectorize and parallelize the loop at the specified line. You must verify that the loops in the file do not contain very large integers and are not likely to generate very large integers in intermediate computations. A very large integer is loosely defined as follows: On an n-bit machine, a very large integer is typically >= 2n-2. For example, on a 32-bit machine, a very large integer would be >= 230.

Verify

Confirm that no loop in the program contains or generates very large integers (typically very large integers are >= 230).