1

現在、iccを使用してANSICコードをコンパイルして実行しています。

-O2最適化をオンにすると、すべて問題ありません。しかし、-fastに変更すると、結果は発散します(多くのnanが含まれます)。

グーグルで試してみたところ、-fastに-xHOSTの原因としてエラーが存在することがわかりました。

-xHOSTがコンパイルでどのように機能するか知りたいです。そして、私のコードでこの種のエラーを回避するにはどうすればよいですか?

4

1 に答える 1

1

-fast は、以下の多くのアグレッシブなコンパイラ オプションをオンにします。Intel ドキュメントからのものです。

Description
This option maximizes speed across the entire program. It sets the following options:
• On Itanium®-based systems: Windows: /O3 and /Qipo Linux: -ipo, -O3, and -static
• On IA-32 and Intel® EM64T systems:
Mac OS: -ipo, -O3, -no-prec-div, and -static
Windows: /O3, /Qipo, /Qprec-div-, and /QxP
Linux: -ipo, -O3, -no-prec-div, -static, and -xP
Note that programs compiled with the -xP (Linux) or /QxP (Windows) option will detect non-compatible processors and generate an error message during execution.
On IA-32 and Intel® EM64T systems, the -xP or /QxP option that is set by the fast option cannot be overridden by other command line options. If you specify the fast option and a different processor-specific option, such as -xN (Linux) or /QxN (Windows)

-xHostとして

Generates instruction sets up to the highest that is supported by the compilation host. On Intel processors, this corresponds to the most suitable /Qx (-x) option; on compatible, non-Intel processors, this corresponds to the most suitable of the /arch (-m) options IA32, SSE2 or SSE3. This option may result in additional optimizations for Intel microprocessors that are not
performed for non-Intel microprocessors.‡

したがって、問題が -xHost にある場合は、プロセッサの適切なアーキテクチャ タイプに対して -march を適用することでエラーが修正されるか、単に -O3 を使用するかを確認してください。

于 2012-10-03T04:33:38.037 に答える