I want to write an SVE/SVE2 code (assembly and/or C intrinsic) code. Which version of GNU supports SVE / SVE2? I am also interested in auto-vectorization if that is supported.
Asked
Active
Viewed 422 times
2 Answers
1
SVE assembly/disassembly/auto-vectorization is supported in GCC 8.x onwards. SVE C intrinsics (also known as ACLE) is supported in GCC 10.x.
SVE2 assembly/disassembly/auto-vectorization/C-intrinsics is supported in GCC10.x onwards.
For full details, visit https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/sve-support

Oak Bytes
- 4,649
- 4
- 36
- 53
1

Rezaul Karim
- 830
- 8
- 15

guoqiangqi
- 11
- 1
-
Thanks. I have now updated the link to my original answer as well. – Oak Bytes Jan 29 '21 at 09:28