gcc-8-20190301 is now available

2019-03-01 Thread gccadmin
Snapshot gcc-8-20190301 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/8-20190301/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 8 SVN branch with the following options: svn://gcc.gnu.org/svn/gcc/branches/gcc-8

Re: GSoC

2019-03-01 Thread Dmitry Mikushin
Linear equation solvers is not the scope of . There are many packages serving this particular purpose, try looking into e.g. LAPACK. Kind regards, - Dmitry. пт, 1 мар. 2019 г. в 23:09, Ahmed Ashraf : > Hello, > I am Ahmed Ashraf, a first-year student at the Computer Engineering > Department, Fa

Re: A bug in vrp_meet?

2019-03-01 Thread Qing Zhao
> On Mar 1, 2019, at 1:25 PM, Richard Biener wrote: > > On March 1, 2019 6:49:20 PM GMT+01:00, Qing Zhao > wrote: >> Jeff, >> >> thanks a lot for the reply. >> >> this is really helpful. >> >> I double checked the dumped intermediate file for pass “dom3", and >>

GSoC

2019-03-01 Thread Ahmed Ashraf
Hello, I am Ahmed Ashraf, a first-year student at the Computer Engineering Department, Faculty of Engineering - Cairo University in Egypt. In the first semester, I was asked to create a CAD as the Circuits course project. The requirements were to simulate simple AC circuits that contain only (inde

Re: A bug in vrp_meet?

2019-03-01 Thread Richard Biener
On March 1, 2019 6:49:20 PM GMT+01:00, Qing Zhao wrote: >Jeff, > >thanks a lot for the reply. > >this is really helpful. > >I double checked the dumped intermediate file for pass “dom3", and >located the following for _152: > >BEFORE the pass “dom3”, there is no _152, the corresponding Block >

Re: A bug in vrp_meet?

2019-03-01 Thread Qing Zhao
Jeff, thanks a lot for the reply. this is really helpful. I double checked the dumped intermediate file for pass “dom3", and located the following for _152: BEFORE the pass “dom3”, there is no _152, the corresponding Block looks like: [local count: 12992277]: _98 = (int) ufcMSR_52(D

Re: Implementing an algorithm in place of gomp 'auto'

2019-03-01 Thread Jakub Jelinek
On Sat, Mar 02, 2019 at 02:40:35AM +0900, 김규래 wrote: > Nice to meet you Jacob. > > > Another option is to add further schedules as extensions (say starting with > > gnu_ prefix or similar). > > In this case, I believe that modifying the frontend would be necessary? Yes. > Last time I looked,

Re: Implementing an algorithm in place of gomp 'auto'

2019-03-01 Thread 김규래
Nice to meet you Jacob. > Another option is to add further schedules as extensions (say starting with > gnu_ prefix or similar). In this case, I believe that modifying the frontend would be necessary? Last time I looked, it seemed that adding a new scheduling keyword would require quite some

Re: Implementing an algorithm in place of gomp 'auto'

2019-03-01 Thread Jakub Jelinek
On Fri, Mar 01, 2019 at 11:40:50PM +0900, 김규래 wrote: > Hello everyone, > I'm an EE student at Sogang University Korea. > I have recently submitted a paper on parallel loop scheduling algorithm and > had to modify libgomp a bit in the process. > It is known that the... > > > > /* For now map

Implementing an algorithm in place of gomp 'auto'

2019-03-01 Thread 김규래
Hello everyone, I'm an EE student at Sogang University Korea. I have recently submitted a paper on parallel loop scheduling algorithm and had to modify libgomp a bit in the process. It is known that the... /* For now map to schedule(static), later on we could play with feedback driven choic