Displaying 20 results from an estimated 1400 matches similar to: "[LLVMdev] Speculative paralellisation!!"
2011 Oct 11
2
[LLVMdev] Speculative paralellisation in LLVM compiler infrastructure!!!!!
Hi,
I am involved in the task of achieving speculative paralellisation in
llvm. I have started my work by trying to see if a simple for loop can be
paralellised in llvm.. The problem is i want to know how to check if a
program is automatically parallelised when compiled with llvm or if
explicitly need to do it how can i go about paralellising a for loop using
llvm compiler infrsatructure.how
2010 Sep 09
0
[LLVMdev] How to run regression tests for ARM?
Hello.
I experience a problem when I try to run LLVM tests on the ARM "Beagle"
board with Debian Lenny installed on it. When I execute "make check", I get
the following output:
llvm[0]: Running test suite
make[1]: Entering directory `/mnt/markhor/llvm/nativeBuild/test'
Making a new site.exp file...
( ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 512000
2010 Sep 09
3
[LLVMdev] How to run regression tests for ARM?
Hello.
I experience a problem when I try to run LLVM tests on the ARM "Beagle"
board with Debian Lenny installed on it. When I execute "make check", I get
the following output:
llvm[0]: Running test suite
make[1]: Entering directory `/mnt/markhor/llvm/nativeBuild/test'
Making a new site.exp file...
( ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 512000
2012 Mar 15
0
[LLVMdev] Problem with LoopDependenceAnalysis
On Thu, 15 Mar 2012 09:57:00 -0700
Preston Briggs <preston.briggs at gmail.com> wrote:
> Shanmukha Rao wrote:
> > I am using LLVM for implementing LoopFission pass.
> > I am using LoopPass.
> > I know that for checking circular dependency in loop I have to use
> > LoopDependenceAnalysis
> >
> > This is what i want to do.
> > for(int i =
2012 Mar 15
2
[LLVMdev] Problem with LoopDependenceAnalysis
Shanmukha Rao wrote:
> I am using LLVM for implementing LoopFission pass.
> I am using LoopPass.
> I know that for checking circular dependency in loop I have to use LoopDependenceAnalysis
>
> This is what i want to do.
> for(int i = 0; i< n ; i++){
> s1 : a[i] = a[i] + x[i];
> s2 : x[i] = x[i+1] + i*2 ;
> }
>
>
2012 Mar 20
1
[LLVMdev] Problem with LoopDependenceAnalysis
Shanmuhka wrote:
> I looked at the sanjoys patch for SIV Test. And i figured out that this is exactly what i need.
> as the comments said, check if subscript A can possibly have the same value as B in analyseSIV(A,B)
> but i didn't get How to use this information ?
>
> lets just say in the above program
> When i use depends function it shows the dependency from load of x to
2013 Jun 16
3
Best library for reading/wriiting excel in ruby
Hi All ,
I am new for ruby programming and using ruby for automation work .
Planned to implement READ / WRITE excel function in ruby , can you please
let me know which library or open source will be good foe this ..?
Thanks ,
Muthu Selvan SR
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this
2010 Jul 14
0
[LLVMdev] LoopInterchange Pass
Hi Satya,
On Tue, Jul 13, 2010 at 12:06 PM, Satya Jandhayala <
satya_jandhayala at yahoo.com> wrote:
> Hi,
>
> I developed a Loop Interchange pass. Please take a look.
> I have not incorporate data dependence analysis check. I can insert it when
> the LoopDependenceAnalysis is available.
>
Have you tried using include/llvm/Analysis/LoopDependenceAnalysis.h ?
Please
2012 Apr 05
3
[LLVMdev] SIV tests in LoopDependence Analysis, Sanjoy's patch
Hi Sanjoy,
Reading through LoopDependenceAnalysis::analyseStrongSIV(), I noticed one
problem and one confusion.
My confusion related to your naming of the two instructions as A and B.
It's consistent all through LoopDependenceAnalysis. I'd prefer something
like source and destination, so I can keep track of which is which. It
didn't matter so much when you were simply proving or
2010 Sep 02
0
[LLVMdev] [PATCH] LoopDependenceAnalysis based on a FunctionPass
Hello,
I found that LDA implemented on a function pass is much more useful than
LDA based on a loop pass. In addition, I want to have an analysis result
for the outer loops also, even if it would be a very conservative one.
Can I commit my modified version of LDA? If you think it is worth to keep
current LDA, what about adding a LDA based on function pass to the
repository with some other name
2012 Mar 05
0
[LLVMdev] problem in implementing loop fission using ModulePass
Hi,
I am trying to implement my own Loop fission transformations in llvm.
But to find circular dependency, i think i have to use
LoopDependenceAnalysis.
I am using ModulePass.
In this pass I am getting LoopInfo and Loops. but when I try to use
LoopDependenceAnalysis
It throws segmentation fault.
the example shows what i want to do :
for(int i = 0; i< n ; i++){
s1 : a[i]
2012 Mar 15
2
[LLVMdev] Problem with LoopDependenceAnalysis
Hi,
I am using LLVM for implementing LoopFission pass.
I am using LoopPass.
I know that for checking circular dependency in loop I have to use
LoopDependenceAnalysis
This is what i want to do.
for(int i = 0; i< n ; i++){
s1 : a[i] = a[i] + x[i];
s2 : x[i] = x[i+1] + i*2 ;
}
/**there is no dependence from s2 to s1/
so after distribution(it
2012 Apr 08
0
[LLVMdev] SIV tests in LoopDependence Analysis, Sanjoy's patch
Hi Sanjoy,
I reworked the code for analyzeStrongSIV to fix a couple of mistakes, plus
squeeze all the advantage possible from the symbolic manipulation provided
by the SCEVs. It's sketched out here:
https://sites.google.com/site/parallelizationforllvm/strong-siv-test
Does it makes sense to you?
Thanks,
Preston
On Thu, Apr 5, 2012 at 4:09 PM, Preston Briggs <preston.briggs at
2012 Mar 19
6
[LLVMdev] SIV tests in LoopDependence Analysis, Sanjoy's patch
Gents,
I spent some time reading over Sanjoy's patch for LoopDependenceAnalysis.
Unfortunately, an early version of these notes escaped; this is the
complete review.
First off, I agree with his choice to implement the SIV
tests. For scientific Fortran, the SIV (and the simpler ZIV) tests cover
about 85% of the cases in practice. For C and C++, I expect the percentage
will be much higher.
2013 Jun 21
3
[HELP ] Call java code / method from Ruby programming
Hi All ,
I have written java code ( This java code will not return any thing but
it will do action ) which is required call from ruby , please let me what
is best way to achieve this ?
Thanks ,
Muthu Selvan SR
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from
2008 Nov 07
6
Dtrace command
Hi All,
Can I get Dtrace command, which is useful for regular system administration like performance issue.
Advance Thanks
Muthu
--
This message posted from opensolaris.org
2013 Jun 15
3
[HELP] BUILD FAILED while Installing ruby-1.8.7-p371 in mac OS...
Hi ,
I have installed "ruby 1.9.3p429 " already but as per my project required i
want downgrade to "1.8.7-p371"
while tying with the below command i am getting the below error message ,
please let me know how to solve this issue ?
*COMMAND : **rbenv install 1.8.7-p371*
*
*
Downloading ruby-1.8.7-p371.tar.gz...
->
2005 Oct 03
1
rsyncd: having each log file for each module
Hi,
I am using rsyncd server. I have the configuration in
/etc/rsyncd.conf. I have included each modules section for each client.I
want to have the log files of all activity in separate files for each
client instead of in the global log file.Can sombody help me.
/etc/rsyncd.conf
=============================
#### rsyncd.conf file ####
uid = backup
gid = backup
#pid file =
2010 Jul 13
4
[LLVMdev] LoopInterchange Pass
Hi,
I developed a Loop Interchange pass. Please take a look.
I have not incorporate data dependence analysis check. I can insert it when the LoopDependenceAnalysis is available.
Thank you
Satya
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100713/654d5fd5/attachment.html>
--------------
2013 Jun 20
8
[HELP] - Ruby Drag and Drop script on screen element in Mac OS
Hi All ,
I am new to the ruby , i want click the object on element ( any object ,
Ex: Calculator) after click i need Drag and Drop the
element continuously for some time , please let me know how to do it in
ruby in Mac OS ?
Thanks ,
Muthu Selvan SR
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe