search for: rdiv

Displaying 7 results from an estimated 7 matches for "rdiv".

Did you mean: rdi
2012 May 14
0
[LLVMdev] SIV tests in LoopDependence Analysis, Sanjoy's patch
...google.com/site/parallelizationforllvm/weak-zero-siv-test - the Weak-Crossing SIV test: https://sites.google.com/site/parallelizationforllvm/weak-crossing-siv-test - the Exact SIV test: https://sites.google.com/site/parallelizationforllvm/weak-siv-test and our first MIV test: - the RDIV test: https://sites.google.com/site/parallelizationforllvm/rdiv-test If you have any thoughts about this code, I'd be very interested in hearing them. I'm going to take a break from working on these low-level tests and spend some time working top-down on the high-level structure of the...
2012 Apr 21
3
[LLVMdev] SIV tests in LoopDependence Analysis, Sanjoy's patch
Hi all, Sorry for having been quiet for so long, I have my university exams going on, and will be able to contribute only after the coming Friday. Thanks! -- Sanjoy Das http://playingwithpointers.com
2012 May 15
1
[LLVMdev] SIV tests in LoopDependence Analysis, Sanjoy's patch
...m/weak-zero-siv-test > * the Weak-Crossing SIV test: > https://sites.google.com/site/parallelizationforllvm/weak-crossing-siv-test > * the Exact SIV test: > https://sites.google.com/site/parallelizationforllvm/weak-siv-test > > and our first MIV test: > > * the RDIV test: > https://sites.google.com/site/parallelizationforllvm/rdiv-test > > If you have any thoughts about this code, I'd be very interested in > hearing them. One issue: don't use floating-point in LLVM. We want LLVM to behave the same on different computers, and practical...
2012 May 14
2
[LLVMdev] SIV tests in LoopDependence Analysis, Sanjoy's patch
...eak-zero-siv-test > - the Weak-Crossing SIV test: > https://sites.google.com/site/parallelizationforllvm/weak-crossing-siv-test > - the Exact SIV test: > https://sites.google.com/site/parallelizationforllvm/weak-siv-test > > and our first MIV test: > > - the RDIV test: > https://sites.google.com/site/parallelizationforllvm/rdiv-test Can you explain this comment: > With minor algebra, this test can also be used for things like [c1 + > a1*i + a2*j][c2]. > > If you have any thoughts about this code, I'd be very interested in > heari...
2010 Jan 21
1
use R from python
? stato filtrato un testo allegato il cui set di caratteri non era indicato... Nome: non disponibile URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20100121/95fb8869/attachment.pl>
2012 May 14
0
[LLVMdev] SIV tests in LoopDependence Analysis, Sanjoy's patch
...l.gov> wrote: > Can you explain this comment: > > With minor algebra, this test can also be used for things like [c1 + > > a1*i + a2*j][c2]. It's really too simple to deserve mention... Given a subscript pair, [c1 + a1*i + a2*j] and [c2], we can test for dependence using the RDIV test by rewriting as [c1 + a1*i] and [c2 - a2*j]. > I this look good, but, as you say below, we also need to work on the > top-level infrastructure. It will be hard to validate and evaluate > this code without a framework in which to use it. Yep. I've written a simple framework to do...
2012 May 14
2
[LLVMdev] SIV tests in LoopDependence Analysis, Sanjoy's patch
...explain this comment: > > > With minor algebra, this test can also be used for things like > > > [c1 + a1*i + a2*j][c2]. > > It's really too simple to deserve mention... > Given a subscript pair, [c1 + a1*i + a2*j] and [c2], we can test for > dependence using the RDIV test by rewriting as [c1 + a1*i] and [c2 - > a2*j]. > > > I this look good, but, as you say below, we also need to work on the > > top-level infrastructure. It will be hard to validate and evaluate > > this code without a framework in which to use it. > > Yep. I'...