Skip to content

Commit c9321f3

Browse files
committed
add note for gcc 14/glibc 2.39
1 parent 895c3ec commit c9321f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/learning-paths/cross-platform/loop-reflowing/autovectorization-limits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ void addfunc(float *restrict C, float *A, float *B, size_t N) {
7474
}
7575
```
7676

77-
However at the time of writing, this is not the case and developers will have to manually vectorize such code for performance.
77+
This will be in gcc 14 and require a new glibc as well (2.39). Until these are released, if you are using a released compiler as part of a distribution (gcc 13.2 at the time of writing), you will have to manually vectorize such code for performance.
7878

7979
We will expand on autovectorization of conditionals in the next section.
8080

0 commit comments

Comments
 (0)