Intermediate
Using Pedigrees in Intel® Cilk™ Plus
Useful Links for Intel® Inspector XE 2013 and Intel® Inspector for Systems 2013
Here are some helpful links:
Important Knowledge Base Articles for Intel® Inspector XE 2013
internal error: 0_10711 Internal Compiler Error with Composer XE 2013 Update 3
The Intel Composer XE 2013 Update 3 compiler may experience the following Internal Compiler Error:
0_10711
: catastrophic error: **Internal compiler error: internal abort** Please report this error along with the circumstances in which it occurred in a Software Problem Report. Note: File and line given may not be explicit cause of this error.
有效使用英特尔编译器的卸载特性
如何将 vec-report 行号与源代码行号对应起来
如何将 vec-report 中的行号与源代码行号联系起来
向量化报告和全新 vec-report6 概述
向量化报告概述
面向英特尔® MIC 架构的编译器方法
向量化要素、向量化和优化报告、向量化报告和全新 vec-report6 概述
现有–vec-report 等级(0 到 5)控制以下向量化报告信息的生成:
Intel® System Studio Webinar Series
|
|
Join us in an engaging series of hands-on webinars covering |
Memory Movement and Initialization: Optimization and Control
Compiler Methodology for Intel® MIC Architecture
Overview
Are you initializing data or copying blocks of data from one variable to another in your application? Probably so. Moving or setting blocks of data is very common. So how to best optimization these operations for Intel(R) Xeon Phi(TM) Coprocessors?
Parallel sorts for Cilk Plus
This article describes the parallel sorts in the latest release of “Cilkpub”, an open-source library of utilities for Intel® Cilk™ Plus.
cilk_sortcilk_sort_in_place
They are designed to be replacements for std::sort that may provide speedup when sorting many items (on the order of at least 10000). For example:
extern float a[]; cilkpub::cilk_sort( a, a+n );

