search for: krvladislav

Displaying 12 results from an estimated 12 matches for "krvladislav".

2011 Apr 08
0
[LLVMdev] [GSoC] Increase the coverage of Polly
Hi, 2011/4/8 Vlad Krylov <krvladislav at gmail.com>: > Hi. > > I see that to detect scops firstly we search for regions in CFG ( by > RegionInfo ) and then select regions that answer some requirements ( > in ScopDetection ). Because only affine expressions in conditions and > bounds are permissible, we trying to ge...
2011 Apr 08
2
[LLVMdev] [GSoC] Increase the coverage of Polly
2011/4/8 ether zhhb <etherzhhb at gmail.com>: > Hi, > > 2011/4/8 Vlad Krylov <krvladislav at gmail.com>: >> Hi. >> >> I see that to detect scops firstly we search for regions in CFG ( by >> RegionInfo ) and then select regions that answer some requirements ( >> in ScopDetection ). Because only affine expressions in conditions and >> bounds are perm...
2011 Apr 08
0
[LLVMdev] [GSoC] Increase the coverage of Polly
On 04/08/2011 08:35 PM, Vlad Krylov wrote: > 2011/4/8 ether zhhb<etherzhhb at gmail.com>: >> Hi, >> >> 2011/4/8 Vlad Krylov<krvladislav at gmail.com>: >>> Hi. >>> >>> I see that to detect scops firstly we search for regions in CFG ( by >>> RegionInfo ) and then select regions that answer some requirements ( >>> in ScopDetection ). Because only affine expressions in conditions and >...
2011 Apr 07
3
[LLVMdev] [GSoC] Increase the coverage of Polly
Hi. I see that to detect scops firstly we search for regions in CFG ( by RegionInfo ) and then select regions that answer some requirements ( in ScopDetection ). Because only affine expressions in conditions and bounds are permissible, we trying to get scalar expressions into affine form by AffineSCEVIterator. At present there plugs for scev types Truncate, ZeroExtend, SignExtend, UDivExpr,
2011 Apr 08
1
[LLVMdev] [GSoC] Increase the coverage of Polly
...r CDT! I've missed deadline, so... 2011/4/9 Tobias Grosser <grosser at fim.uni-passau.de>: > On 04/08/2011 08:35 PM, Vlad Krylov wrote: >> >> 2011/4/8 ether zhhb<etherzhhb at gmail.com>: >>> >>> Hi, >>> >>> 2011/4/8 Vlad Krylov<krvladislav at gmail.com>: >>>> >>>> Hi. >>>> >>>> I see that to detect scops firstly we search for regions in CFG ( by >>>> RegionInfo ) and then select regions that answer some requirements ( >>>> in ScopDetection ). Because only affi...
2011 Apr 08
1
[LLVMdev] [GSoC] Increase the coverage of Polly
How to feed pocc by jscop files which are made with -polly-export-jscop? 2011/4/8 ether zhhb <etherzhhb at gmail.com>: > Hi, > > 2011/4/8 Vlad Krylov <krvladislav at gmail.com>: >> Hi. >> >> I see that to detect scops firstly we search for regions in CFG ( by >> RegionInfo ) and then select regions that answer some requirements ( >> in ScopDetection ). Because only affine expressions in conditions and >> bounds are perm...
2012 Jan 16
3
[LLVMdev] multi-threading in llvm
I am interested. I would be grateful for your hints. So OpenMP has various constructs such as parallel, barrier, single, for, etc. And there is at least two libraries to generate OpenMP code: libgomp and mpc. We want to be independent of specific library. We should create an interface with methods which present manual inserting of OpenMP pragmas in C or Fortran code. These sounds like "this
2011 Mar 25
0
[LLVMdev] [GSoC] Interface layer for optimizers
Hello. Guys, sorry for delay, I thinked about things, overlooked LLVM project in search of a suitable case. I have noticed that at this time in LLVM you actively implement the possibility of automatic parallelization. I am interested in this direction and I would like participate in a project Polly as my GSoC project. I have looked over todo list [1]. I really want to implement "Increase
2011 Apr 05
0
[LLVMdev] doxygen build fails
Hi I've tried to get doxygen documentation by configuring with --enable-doxygen. Then 'make install' has been interrupted with message "error: configuration file /media/data/virtual/share/gsoc/build/docs/doxygen.cfg not found!". mikem, why did you remove a line "AC_CONFIG_FILES([docs/doxygen.cfg])" in autoconf/configure.ac [1] ? I've restored this line. Now
2012 Jan 06
1
[LLVMdev] multi-threading in llvm
Hi, It was proposed to implement OpenMP framework. Is there any progress in this area? Was the question raised at the Euro-LLVM? Does anybody work on implementation? 2011/9/12 Tobias Grosser <tobias at grosser.es>: > On 09/12/2011 05:28 PM, Jimborean Alexandra wrote: >> Thanks for your ideas. >> >> Polly looked interesting as it seems it has already introduced the
2011 Mar 23
2
[LLVMdev] [GSoC] Interface layer for optimizers
Hi folks, I like open technologies, epecially LLVM compiler. I want to implement a new interface layer in LLVM to plug-in optimizers as a part of GSoC, and then load the interface with optimizers. This would improve LLVM application for people who want to use their optimizations in compilers. The first "educative" step is to add Doxygen (for .h files) to the build and integrate it
2011 Apr 03
3
[LLVMdev] [GSoC] Increase the coverage of Polly
Hi. My plan would be: 1w Study sources of Polly and LLVM docs relating to analysis. 2w Create tests which demonstrate problems with NSW/NUW 3-4w Fix the handling of wrap overflows. 5w Complete middle term paperwork. 6w Create tests for each of cases which are not currently optimized (e.g. have min/max, sext/zext, trunc or unsigned comparisons in the loop bounds or memory accesses). 7w Learn how