Displaying 3 results from an estimated 3 matches for "fefd807b".
2013 Feb 15
1
[LLVMdev] RE : Is there any llvm neon intrinsic that maps to vmla.f32 instruction ?
...e a few hours and, if you have the Perf server running, will allow you to run it twice (with and without vmlx) and compare the results.
cheers,
--renato
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130215/fefd807b/attachment.html>
2013 Feb 15
0
[LLVMdev] RE : Is there any llvm neon intrinsic that maps to vmla.f32 instruction ?
On 15 February 2013 16:00, Sebastien DELDON-GNB <sebastien.deldon at st.com>wrote:
> to which I added –mattr=-vmlx-forwarding to disable vmlx forwarding for
> cortex-a9.
>
> When I DISABLE vmlx forwarding I’m observing a 7% speed-up on ref dataset
> for MILC. So I’m observing something similar to what I’ve observed on STE
> platform available on SNOWBALL board.
>
Hi
2013 Feb 15
2
[LLVMdev] RE : Is there any llvm neon intrinsic that maps to vmla.f32 instruction ?
Hi Lang & Renato,
I eventually set up a panda board with latest linaro delivery (eabi-hf). I did some experiments using my own compiler and LLVM 3.2 as back-end.
I use same flagset for my compiler (front-end) and just invoke llc with and without vmlx-forwarding attribute. So base arguments to llc are:
llc -march=arm -mcpu=cortex-a9 -mattr=+neon -float-abi=hard
to which I added