about SIMD code

about SIMD code

Аватар пользователя llodds

Just write some SIMD code instead of making the compiler generate the SIMD code automatically, but how do I enable the icc compiler to compile with the code?

3 posts / 0 новое
Последнее сообщение
Пожалуйста, обратитесь к странице Уведомление об оптимизации для более подробной информации относительно производительности и оптимизации в программных продуктах компании Intel.
Аватар пользователя iliyapolak

Write inline SSE assembly and compile it with Intel compiler.

Аватар пользователя Thomas Willhalm (Intel)

If you don't want to go down the path of writing in assembly language, there is also same kind of wrapper called "intrinsics" that looks and feels like a function call but are translated directly to assembly. A description is given in this article. For a recent example with AVX2, you might be interested in my blog.

Зарегистрируйтесь, чтобы оставить комментарий.