Hello Michael, A very good Morning to you.
On Wed, Nov 20, 2019 at 10:58 PM Michael Kruse wrote:
> Am Mi., 20. Nov. 2019 um 10:21 Uhr schrieb HAPPY Mahto
> :
> >> #pragma clang loop vectorize_assume_alignment(32)
> >> for(int i = 0;i < n; i++){
> >> a[i] = b[i] + i*i;
> >> }
> >
> > for this al
Hello Michael,
Very sorry for the late reply, we had exams and assignments this week and I
had to read about _builtin_assume_aligned as I didn't come across this.
#pragma clang loop vectorize_assume_alignment(32)
> for(int i = 0;i < n; i++){
> a[i] = b[i] + i*i;
> }
>
for this all-access inside t
On Wed, Nov 6, 2019 at 10:43 PM Hal Finkel via Phabricator <
revi...@reviews.llvm.org> wrote:
> hfinkel added inline comments.
>
>
>
> Comment at: clang/docs/LanguageExtensions.rst:3135
> +
> +This predicates all the array references inside the loop to be aligned.
> The aligned ac