Proposal for inter-procedural loops fusion.

2015-03-07 Thread Ajit Kumar Agarwal
Hello All: I am proposing the inter-procedural Loop fusion. Generally the Loops adjacent to each other and the conformable Candidates of loop fusions are done with respect to intra-procedural loops. The whole program analysis needs to Be done with array sections analysis across the procedure ca

Re: GSoc-2015: Modular GCC

2015-03-07 Thread Jeff Law
On 03/06/15 18:22, Mikhail Maltsev wrote: 05.03.2015 18:46, Jeff Law wrote: Certainly still useful, the trick is finding a hunk of that work that can be tackled via GSoc. jeff Though I'm not participating in GSoC, I would be glad to get involved in GCC development. Could you please give some

Re: GSoc-2015: Modular GCC

2015-03-07 Thread Jeff Law
On 03/07/15 07:41, Pedro Alves wrote: On 03/05/2015 06:51 PM, Sidharth Chaturvedi wrote: I like the idea of making the intermediate representations more streamable. But I think this task should also involve creating separate front-end and middle-end modules, as then there can be a clear distinct

Re: GSoc-2015: Modular GCC

2015-03-07 Thread Pedro Alves
On 03/05/2015 06:51 PM, Sidharth Chaturvedi wrote: > I like the idea of making the intermediate representations more > streamable. But I think this task should also involve creating > separate front-end and middle-end modules, as then there can be a > clear distinction of what IR is an input to a m

Data Recovery Services and Hardware Repair Services

2015-03-07 Thread Lance
We have made helping people our business. We only do data recovery, we do it all day, every day - we have become the very best in this field. We have seen all types of problems and solved nearly all of them! Why we are here? Data – Important assets of enterprises and individuals, is the key eleme

Re: Proposal on Unrolling factor based on Data reuse.

2015-03-07 Thread Richard Biener
On March 7, 2015 11:01:12 AM CET, Ajit Kumar Agarwal wrote: >Hello All: > >I would like to propose the Unrolling factor based on Data reuse >between different iterations. This combines the data >reuse of different iterations into single iterations. There is a use of >MaxFactor which decides on t

RE: Proposal on Unrolling factor based on Data reuse.

2015-03-07 Thread Ajit Kumar Agarwal
Hello All: There is a typo error. The fig(2) is corrected as follows. For ( I = 1; I < size ; i+=3) { X[i] = z[i] * ( y[i] - x[i-1]); X[i+1] = z[i] * ( y[i] - x[i]); X[i+2] = z[i] * ( y[i] - x[i+1]]); } Fig(2). Thanks & Regards Ajit -Original Message- From: gcc-

Proposal on Unrolling factor based on Data reuse.

2015-03-07 Thread Ajit Kumar Agarwal
Hello All: I would like to propose the Unrolling factor based on Data reuse between different iterations. This combines the data reuse of different iterations into single iterations. There is a use of MaxFactor which decides on the calculation of unroll factor based on Data reuse.The MaxFactor