Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

SIMD IAND on integer vectors

Petros
Novice
524 Views

Hi, I repeatedly apply IAND (bitwise and) on large integer vectors. I was wondering whether internally the command uses simd to accelerate the result. If not, what compiler directives or flags do I need to use to activate this? Can I use Intel Advanced Vector Extension?

I use intel parallel studio 2016.

Thanks!

0 Kudos
1 Reply
TimP
Honored Contributor III
524 Views

-QxHost to take advantage of the simd instructions available on your build machine (if running on same architecture)

-Qopt-report:4  to get the optrpt listing to see if you got vectorization, or possibly why not.

0 Kudos
Reply