Quantcast
Channel: 中级
Viewing all articles
Browse latest Browse all 669

Diagnostic 15522: Loop was not vectorized: loop control flow is too complex.

$
0
0

Product Version: Intel(R) Visual Fortran Compiler XE 15.0.0.070

Cause:

The vectorization report generated when using Visual Fortran Compiler's optimization options ( -O3  -Qopt-report:2 ) states that loop was not vectorized since loop control flow is too complex.

Example:

An example below will generate the following remark in optimization report:

subroutine foo(a, n)
    implicit none
    integer, intent(in) :: n
    double precision, intent(inout) :: a(n,n)
       integer :: bar
       integer :: i
       integer :: j

200   CONTINUE
       i=0
100   CONTINUE

       a(i,j)= 0
       i=i+1
       if (i .lt. bar()) goto 100
       j=j+1
       goto 200

end subroutine foo 

Report from: Loop nest, Vector & Auto-parallelization optimizations [loop, vec, par]

  LOOP BEGIN

     remark #15522: loop was not vectorized: loop control flow is too complex. Simplify control flow.
 
  LOOP END

Resolution:

 -goto statements prevent vectorization, rewriting the code to simplify flow control will get this loop vectorized.

See also:

Requirements for Vectorizable Loops

Vectorization Essentials

Vectorization and Optimization Reports

Back to the list of vectorization diagnostics for Intel Fortran

  • vectorization
  • Intel Compilers Vectorization Reports
  • Optimization Reports
  • vec-report vectorization reports
  • diagnostic messages
  • 开发人员
  • 教授
  • 学生
  • Apple OS X*
  • Linux*
  • Microsoft Windows* (XP, Vista, 7)
  • Microsoft Windows* 8
  • Windows*
  • Fortran
  • 高级
  • 中级
  • 英特尔® Composer XE
  • 英特尔® Fortran Composer XE
  • 英特尔® Visual Fortran Composer XE
  • Intel® Cluster Studio XE
  • 英特尔® Fortran Studio XE
  • 英特尔® Parallel Studio XE
  • 英特尔® Parallel Studio XE Cluster Edition
  • 英特尔® Parallel Studio XE Composer Edition
  • 英特尔® Parallel Studio XE Professional Edition
  • Intel® Advanced Vector Extensions
  • 开发工具
  • 优化
  • 矢量化
  • 嵌入式
  • 笔记本电脑
  • 服务器
  • 桌面
  • URL
  • 编译器主题
  • 错误检查
  • 提升性能
  • 主题专区: 

    IDZone
  • Windows*

  • Viewing all articles
    Browse latest Browse all 669

    Trending Articles



    <script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>