On Wed, 2009-10-14 at 23:56 +0530, sandeep soni wrote:
> On Wed, Oct 14, 2009 at 9:02 PM, Tobias Grosser
> wrote:
> > On Wed, 2009-10-14 at 20:12 +0530, sandeep soni wrote:
> >> > Hi,
> >> >
> >> > you also might want to take a look at the Graphite project.
> >> > http://gcc.gnu.org/wiki/Graphite
On Wed, Oct 14, 2009 at 9:02 PM, Tobias Grosser
wrote:
> On Wed, 2009-10-14 at 20:12 +0530, sandeep soni wrote:
>> > Hi,
>> >
>> > you also might want to take a look at the Graphite project.
>> > http://gcc.gnu.org/wiki/Graphite where we do loop optimizations and
>> > automatic parallelization bas
On Wed, 2009-10-14 at 20:12 +0530, sandeep soni wrote:
> > Hi,
> >
> > you also might want to take a look at the Graphite project.
> > http://gcc.gnu.org/wiki/Graphite where we do loop optimizations and
> > automatic parallelization based on the polytop model. If you need any
> > help feel free to
> Hi,
>
> you also might want to take a look at the Graphite project.
> http://gcc.gnu.org/wiki/Graphite where we do loop optimizations and
> automatic parallelization based on the polytop model. If you need any
> help feel free to ask.
>
> Tobias
>
>
Hi,
This seems to be quite interesting and ch
On Sun, 2009-10-11 at 20:20 +0530, sandeep soni wrote:
> Hi All,
>
> I have been studying the gcc code lately as part of my project.I have
> got info from this mailing list about CFG and DFG information.I want
> to know how gcc uses this information to perform loop optimization?
> Does it Follow a
On Mon, Oct 12, 2009 at 11:28 PM, Ian Lance Taylor wrote:
> sandeep soni writes:
>
>> On Mon, Oct 12, 2009 at 12:13 PM, Ian Lance Taylor wrote:
>>
>>> I'm not really sure what you are asking. gcc supports OpenMP for
>>> parallelizing loops. That is mostly done in the frontends.
>>
>> I have be
sandeep soni writes:
> On Mon, Oct 12, 2009 at 12:13 PM, Ian Lance Taylor wrote:
>
>> I'm not really sure what you are asking. gcc supports OpenMP for
>> parallelizing loops. That is mostly done in the frontends.
>
> I have been told that openMP does parallelizing of loops, but these
> types o
On Mon, Oct 12, 2009 at 12:13 PM, Ian Lance Taylor wrote:
> I'm not really sure what you are asking. gcc supports OpenMP for
> parallelizing loops. That is mostly done in the frontends.
I have been told that openMP does parallelizing of loops, but these
types of optimizations are generally don
sandeep soni writes:
> I have been studying the gcc code lately as part of my project.I have
> got info from this mailing list about CFG and DFG information.I want
> to know how gcc uses this information to perform loop optimization?
> Does it Follow any particular algorithm or in particular what