Displaying 3 results from an estimated 3 matches for "yinliu".
Did you mean:
linlin
2018 May 09
1
Is there any relationship between IR instruction and execution time
Hi Yin,
MCA does support the –mcpu and –mtriple options. We have one arm test in llvm/test/tools/llvm-mca/ARM for a cortex-9, which is an Out of Order chip.
Hope that helps!
-Matt
From: Yin Liu <yinliu.tiger at gmail.com>
Sent: Tuesday, May 8, 2018 2:49 PM
To: Davis, Matthew <Matthew.Davis at sony.com>
Cc: llvm-dev at lists.llvm.org
Subject: Re: [llvm-dev] Is there any relationship between IR instruction and execution time
Hi Matt,
Thanks you so much for the reply!
I've tried the...
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 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