2

ここの初心者。ハイ パフォーマンス コンピューティングで実行する必要がある大きな有限解析コードがあります。人々は、Intel コンパイラーの方が通常は速度が速いと言い続けます (以前は gcc を使用していました)。そして、私たちの Intel クラスターにも当てはまることがわかりました。しかし最近、新しい AMD クラスターができました。icpcのコンパイル オプションを使用してプログラムを最適化する方法について混乱しています。

基本的に、2 つの質問があります。

質問 1

AMDチップを搭載したクラスターは次のとおりです。

processor       : 63
vendor_id       : AuthenticAMD
cpu family      : 21
model           : 2
model name      : AMD Opteron(tm) Processor 6378                 
stepping        : 0
cpu MHz         : 2399.837
cache size      : 2048 KB
physical id     : 2
siblings        : 16
core id         : 7
cpu cores       : 8
apicid          : 79
initial apicid  : 79
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
bogomips        : 4799.73
TLB size        : 1536 4K pages
clflush size    : 64
cache_alignment : 64
address sizes   : 48 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate [9] [10]

を使用して小さなコードをコンパイルするときicpc hello.cpp -O3 -xP、どのオプションを使用すればよいか正確にわかりません。エラーは次のとおりです。

$ /usr/bin/time -p ./a.out
Fatal Error: This program was not built to run on the processor in your system.
The allowed processors are: Intel(R) Pentium(R) 4 and compatible Intel processors with Intel(R) Streaming SIMD Extensions 3 (Intel(R) SSE3) instruction support.

real 0.00
user 0.00
sys 0.00

質問2

Intel チップ クラスタと AMD チップ クラスタの両方でバイナリを使用したい場合、コードをコンパイルするために別のオプションを使用する必要がありますか?

4

1 に答える 1

4

Intel コンパイラは、特に -xP (現在は -xSSE3、こちらを参照) などの特定のフラグを使用する AMD チップでは常に機能するとは限りません。特に -xSSE3/-xP はコンパイラに次のように伝えます。May generate Intel® SSE3, SSE2, and SSE instructions for Intel® processors. Optimizes for Intel processors that support Intel® SSE3 instructions. For OS X* systems, this value is only supported on IA-32 architecture. This replaces value P, which is deprecated.

そのドキュメントには、次の引用もあります。Intel's compilers may or may not optimize to the same degree for non-Intel microprocessors for optimizations that are not unique to Intel microprocessors. These optimizations include SSE2, SSE3, and SSSE3 instruction sets and other optimizations. Intel does not guarantee the availability, functionality, or effectiveness of any optimization on microprocessors not manufactured by Intel. Microprocessor-dependent optimizations in this product are intended for use with Intel microprocessors. Certain optimizations not specific to Intel microarchitecture are reserved for Intel microprocessors. Please refer to the applicable product User and Reference Guides for more information regarding the specific instruction sets covered by this notice.

icc と icpc で最適化を試みることはできますが、AMD チップで動作するかどうかはわかりません。gcc 以外のコンパイラについては、clang、PGI、または Cray コンパイラ (Cray システムを使用している場合) を調べることができます。

両方のアーキテクチャ用のバイナリを作成しようとしている場合、キャッシュ ラインのサイズやその他のアーキテクチャ固有の設定が異なるため、高度な最適化を実行できるかどうかはわかりません。

于 2013-05-08T03:22:51.137 に答える