search for: 149bf0a9

Displaying 3 results from an estimated 3 matches for "149bf0a9".

2018 May 08
0
Is there any relationship between IR instruction and execution time
Hi Matt, Thanks you so much for the reply! I've tried the llvm-mca, it is helpful. I was wondering whether the llvm-mca support the assembly code for the ARM? I cross-compile the test file for ARM like that: clang test.c -O2 -target arm-linux-gnueabihf -static -S -o test.s If I want to check the performance using llvm-mca, is there any option of "-mcpu" for ARM ? Thanks, Yin
2018 May 09
1
Is there any relationship between IR instruction and execution time
...assembly code as input and generates throughput and latency information. For more details see: https://llvm.org/docs/CommandGuide/llvm-mca.html -Matt -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180509/149bf0a9/attachment.html>
2018 May 08
2
Is there any relationship between IR instruction and execution time
Hi Yin, From: llvm-dev <llvm-dev-bounces at lists.llvm.org> On Behalf Of Yin Liu via llvm-dev > Hello, > > As is known to all, there is a relationship between program's instructions and its execution time. In other words, we can estimate the execution time based on the number of program > instructions. > > I'm curious about what the relationship between IR