Displaying 2 results from an estimated 2 matches for "ad76c719".
2018 Jan 20
0
Non-Temporal hints from Loop Vectorizer
...test\CodeGen\X86\nontemporal-loads.ll shows how to create nt
> vector loads in IR - is that what you're after?
>
> Simon.
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180120/ad76c719/attachment.html>
2018 Jan 20
2
Non-Temporal hints from Loop Vectorizer
Actually i am working on vector accelerator which will perform those
instructions which are non temporal.
for instance if i have this loop
for(i=0;i<2048;i++)
a[i]=b[i]+c[i];
currently it emits following IR;
%0 = getelementptr inbounds [2048 x i32], [2048 x i32]* @b, i64 0, i64
%index
%1 = bitcast i32* %0 to <16 x i32>*
%wide.load = load <16 x i32>, <16 x i32>* %1,