Sign in to follow this  
Followers 0
drevil

Intel 9 Compiled Version!

3 posts in this topic

Vectorization and Loop Optimization

Vectorization detects patterns of sequential data

accesses by the same instruction and transforms the

code for SIMD execution, including use of the SSE,

SSE2, and SSE3 instruction sets.

Processor-Specific Optimization

The following optimization switches enable the compiler

to generate optimized and specialized code for a

specific processor and allow the compiler

Share this post


Link to post
Share on other sites

Vectorization and Loop Optimization

Vectorization detects patterns of sequential data

accesses by the same instruction and transforms the

code for SIMD execution, including use of the SSE,

SSE2, and SSE3 instruction sets.

Processor-Specific Optimization

The following optimization switches enable the compiler

to generate optimized and specialized code for a

specific processor and allow the compiler's vectorizer

to generate SIMD instructions using SSE, SSE2, and/or

SSE3, depending on the targeted processor.

Processor Dispatch

Processor dispatch allows developers to optimize

applications targeting one or more specific

IA-32 processors.

you buy me a license for intel compiler and i'll be more than glad to do some optimized builds :)

Share this post


Link to post
Share on other sites

MSVS 2005 also supports these optimizations =] but most of them can't be set manually but it's done automatically (e.g. vectorization). But just remember that no optimization can really improve your program, it can be done only using by optimized algorithm.

Share this post


Link to post
Share on other sites
Sign in to follow this  
Followers 0