search for: vishalksarda

Displaying 2 results from an estimated 2 matches for "vishalksarda".

2015 Mar 18
2
[LLVMdev] GSoC:Loop Reversal Transformation
...aiting for others to pitch in too. Regards, Vishal Sarda, 3rd Year Undergraduate, Department of Computer Engineering, College of Engineering, Pune On Wed, Mar 18, 2015 at 1:20 AM, Matt Godbolt <matt at godbolt.org> wrote: > Hi, > > On Tue, Mar 17, 2015 at 2:00 PM, vishal sarda <vishalksarda at gmail.com> > wrote: > >> [snip] >> >> Loop counting up 0.15 ms >> >> Loop counting down 0.08 ms >> > I'm no llvm expert, but as an interest bystander: I suspect you compiled > the source without any optimizations applied - I tried to replica...
2015 Mar 17
2
[LLVMdev] GSoC:Loop Reversal Transformation
Hi, I have been studying LLVM infrastructure from past 1 month and trying out some hands on to get familiar with it. I am keen to propose loop reversal pass in LLVM as a part of GSoC 2015. Following are the details of my proposal. A for loop can run in two ways – it can count up or it can count down. 1. for(i=0; i<10 ;i++) {// Do something} 2. for(i=9; i--;) {// Do something}