【发布时间】:2010-12-25 05:42:44
【问题描述】:
我想禁用英特尔编译器编写的“LOOP WAS VECTORIZED”注释。 但我不想禁用优化。 我需要做什么?
【问题讨论】:
标签: compiler-construction report intel icc remarks
我想禁用英特尔编译器编写的“LOOP WAS VECTORIZED”注释。 但我不想禁用优化。 我需要做什么?
【问题讨论】:
标签: compiler-construction report intel icc remarks
你试过-vec_report吗?抱歉,我现在没有安装icc。
-vec_report[n] Control amount of vectorizer diagnostic information:
n=0 -- No diagnostic information
n=1 -- Indicate vectorized loops (DEFAULT)
n=2 -- Indicate vectorized/non-vectorized loops
n=3 -- Indicate vectorized/non-vectorized loops and pro-
hibiting data dependence information
n=4 -- Indicate non-vectorized loops
n=5 -- Indicate non-vectorized loops and prohibiting
data dependence information
【讨论】: