-
-
Notifications
You must be signed in to change notification settings - Fork 620
vectorextensions
starkos edited this page Apr 10, 2021
·
10 revisions
This wiki is no longer being maintained.
Specifies the level of vector processing extensions to enable while compiling the target configuration.
vectorextensions "level"
If no value is set for a configuration, the toolset's default vector extension settings will be used.
level
specifies the desired level of vector processing instructions; one of the following:
Value | Description |
---|---|
Default | Use the toolset's default vector extension settings. |
AVX | Use Advanced Vector Extensions. |
AVX2 | Use Advanced Vector Extensions 2. |
IA32 | Use Intel Architecture 32-bit |
SSE | Use the basic SSE instruction set. |
SSE2 | Use the SSE2 instruction set. |
SSE3 | Use the SSE3 instruction set. |
SSSE3 | Use the SSSE3 instruction set. |
SSE4.1 | Use the SSE4.1 instruction set. |
NEON | Use the NEON instruction set (Android only) |
MXU | Use the XBurst SIMD instructions (Android only) |
Project configurations.
Premake 5.0.
-- Enable SSE2 vector processing
vectorextensions "SSE2"