search for: phid

Displaying 9 results from an estimated 9 matches for "phid".

Did you mean: phi
2020 Aug 27
2
Phabricator new review email behaviour change?
Hi, Is it me, or has Phabricator changed at some point in the past week or two with regards to emails for newly created reviews? I noticed this morning that my mailing rule (which previously simply marked new emails from review at reviews.llvm.org with a specific tag) was no longer working for them, and consequently, I missed several new review requests. (It wasn't an issue for subsequent
2017 Mar 14
4
[Proposal][RFC] Epilog loop vectorization
...ew block layout get automatically >>>> generated by calling the ‘InnerLoopVectorizer:: vectorize’ again. >>>> 3)Block layout description with epilog loop vectorization is >>>> available at >>>> https://reviews.llvm.org/file/data/fxg5vx3capyj257rrn5j/PHID-FILE-x6thnbf6ub55ep5yhalu/LayoutDescription.png >>>> Approach-1 looks feasible, please comment if any objections. >>>> Regards, >>>> Ashutosh >>>> ... -- Hal Finkel Lead, Compiler Technology and Programming Languages Leadership Computing Facility Ar...
2017 Mar 14
2
[Proposal][RFC] Epilog loop vectorization
...>> generate new block layout. The new block layout get automatically >> generated by calling the ‘InnerLoopVectorizer:: vectorize’ again. >> 3)Block layout description with epilog loop vectorization is available at >> https://reviews.llvm.org/file/data/fxg5vx3capyj257rrn5j/PHID-FILE-x6thnbf6ub55ep5yhalu/LayoutDescription.png >> Approach-1 looks feasible, please comment if any objections. >> Regards, >> Ashutosh >> *From:*Nema, Ashutosh >> *Sent:*Wednesday, March 1, 2017 10:42 AM >> *To:*'Daniel Berlin' <dberlin at dberlin.org...
2017 Mar 14
10
[Proposal][RFC] Epilog loop vectorization
...ctorizer::createEmptyLoop’ to generate new block layout. The new block layout get automatically generated by calling the ‘InnerLoopVectorizer:: vectorize’ again. 3) Block layout description with epilog loop vectorization is available at https://reviews.llvm.org/file/data/fxg5vx3capyj257rrn5j/PHID-FILE-x6thnbf6ub55ep5yhalu/LayoutDescription.png Approach-1 looks feasible, please comment if any objections. Regards, Ashutosh From: Nema, Ashutosh Sent: Wednesday, March 1, 2017 10:42 AM To: 'Daniel Berlin' <dberlin at dberlin.org> Cc: anemet at apple.com; Hal Finkel <hfinkel...
2017 Mar 14
2
[Proposal][RFC] Epilog loop vectorization
...new block layout. The new block layout get automatically > generated by calling the ‘InnerLoopVectorizer:: vectorize’ again. > > 3)Block layout description with epilog loop vectorization is > available at > > https://reviews.llvm.org/file/data/fxg5vx3capyj257rrn5j/PHID-FILE-x6thnbf6ub55ep5yhalu/LayoutDescription.png > <https://reviews.llvm.org/file/data/fxg5vx3capyj257rrn5j/PHID-FILE-x6thnbf6ub55ep5yhalu/LayoutDescription.png> > > Approach-1 looks feasible, please comment if any objections. > > Regards, > > Ashutosh >...
2017 Mar 14
1
[Proposal][RFC] Epilog loop vectorization
...get automatically generated by >> calling the ‘InnerLoopVectorizer:: vectorize’ again. >> >> 3)Block layout description with epilog loop vectorization is >> available at >> >> https://reviews.llvm.org/file/data/fxg5vx3capyj257rrn5j/PHID-FILE-x6thnbf6ub55ep5yhalu/LayoutDescription.png >> <https://reviews.llvm.org/file/data/fxg5vx3capyj257rrn5j/PHID-FILE-x6thnbf6ub55ep5yhalu/LayoutDescription.png> >> >> Approach-1 looks feasible, please comment if any objections. >> >> Rega...
2017 Mar 15
4
[Proposal][RFC] Epilog loop vectorization
...y generated by >>>>>> calling the ‘InnerLoopVectorizer:: vectorize’ again. >>>>>> 3)Block layout description with epilog loop vectorization is >>>>>> available at >>>>>> https://reviews.llvm.org/file/data/fxg5vx3capyj257rrn5j/PHID-FILE-x6thnbf6ub55ep5yhalu/LayoutDescription.png >>>>>> Approach-1 looks feasible, please comment if any objections. >>>>>> Regards, >>>>>> Ashutosh >>>>>> ... >> >> -- >> Hal Finkel >> Lead, Compiler Te...
2016 May 05
6
Resuming the discussion of establishing an LLVM code of conduct
Am 05.05.2016 um 10:58 schrieb C Bergström via llvm-dev: > Sincerely and pragmatically - what do you think will be different > after this is in place.. Bureaucracy is great, but what's broken or > pandemic that you're trying to fix? From the last discussion, I gather that it's an attempt to prevent damage before it can happen. I'm quite sceptical about that. It's
2017 Feb 28
3
[Proposal][RFC] Epilog loop vectorization
I have tried running both gvn and newgvn but it did not helped in hoisting the alias checks: Please check, maybe I have missed something. <TestCase> void foo (char *A, char *B, char *C, int len) { int i = 0; for (i=0 ; i< len; i++) A[i] = B[i] + C[i]; } <Command> $ opt –O3 –gvn test.ll –o test.opt.ll $ opt –O3 –newgvn test.ll –o test.opt.ll “test.ll” is attached, it