Displaying 11 results from an estimated 11 matches for "_conditional_".
2012 Aug 09
0
[LLVMdev] MI bundle liveness attributes
Hello everyone,
Let me (re)present a question that might have previously been discussed,
but did not result in any code (AFIK).
How do we represent a _conditional_ assignment (def) in a bundle MI?
More contents - currently we expose internal def/use/kill information to a
bundle header - something like this:
BUNDLE %PC<imp-def>, %R0<imp-def>, %P0<imp-use,kill>, %R16<imp-use>
* %R0<def> = LDriuh_cdnNotPt %P0<kill,interna...
2012 Aug 10
2
[LLVMdev] MI bundle liveness attributes
...for proper liveness
Andy
On Aug 9, 2012, at 9:48 AM, Sergei Larin <slarin at codeaurora.org> wrote:
>
> Hello everyone,
>
> Let me (re)present a question that might have previously been discussed,
> but did not result in any code (AFIK).
>
> How do we represent a _conditional_ assignment (def) in a bundle MI?
>
> More contents - currently we expose internal def/use/kill information to a
> bundle header - something like this:
>
>
> BUNDLE %PC<imp-def>, %R0<imp-def>, %P0<imp-use,kill>, %R16<imp-use>
> * %R0<def> = LD...
2012 Aug 13
0
[LLVMdev] MI bundle liveness attributes
...2012, at 9:48 AM, Sergei Larin <slarin at codeaurora.org> wrote:
>
> >
> > Hello everyone,
> >
> > Let me (re)present a question that might have previously been
> > discussed, but did not result in any code (AFIK).
> >
> > How do we represent a _conditional_ assignment (def) in a bundle MI?
> >
> > More contents - currently we expose internal def/use/kill
> information
> > to a bundle header - something like this:
> >
> >
> > BUNDLE %PC<imp-def>, %R0<imp-def>, %P0<imp-use,kill>, %R16<imp-use&...
2012 Aug 09
2
[LLVMdev] MI bundle liveness attributes
...ualcomm Innovation Center, Inc. is a member of Code Aurora Forum.
On 8/9/2012 11:48 AM, Sergei Larin wrote:
>
> Hello everyone,
>
> Let me (re)present a question that might have previously been discussed,
> but did not result in any code (AFIK).
>
> How do we represent a _conditional_ assignment (def) in a bundle MI?
>
> More contents - currently we expose internal def/use/kill information to a
> bundle header - something like this:
>
>
> BUNDLE %PC<imp-def>, %R0<imp-def>, %P0<imp-use,kill>, %R16<imp-use>
> * %R0<def> = L...
2012 May 11
6
[LLVMdev] Scheduler Roadmap
Dave,
Thank you for your interest. Please see my replies below. Sorry that my
terminology is not as crisp as Andy's, but I think you can see what I mean.
Sergei
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum.
> -----Original Message-----
> From: dag at cray.com [mailto:dag at cray.com]
> Sent: Friday, May 11, 2012 12:14 PM
> To: Sergei Larin
> Cc:
2012 Aug 09
0
[LLVMdev] MI bundle liveness attributes
...f Code Aurora Forum.
>
> On 8/9/2012 11:48 AM, Sergei Larin wrote:
> >
> > Hello everyone,
> >
> > Let me (re)present a question that might have previously been
> > discussed, but did not result in any code (AFIK).
> >
> > How do we represent a _conditional_ assignment (def) in a bundle
> MI?
> >
> > More contents - currently we expose internal def/use/kill
> > information to a bundle header - something like this:
> >
> >
> > BUNDLE %PC<imp-def>, %R0<imp-def>, %P0<imp-use,kill>, %R16<imp-us...
2009 Oct 16
1
How odds ratio is computed in fisher.test()?
I'm wondering how odds ratio is computed. I thought that it is
(n11/n12)/(n21/n22), but it is not what fisher.test() computes. Could
somebody let me know?
> n11=3
> n12=1
> n21=1
> n22=3
>
> n1_=n11+n12
> n2_=n21+n22
>
> n_1=n11+n21
> n_2=n12+n22
>
> x=rbind(c(n11,n12),c(n21,n22))
>
> threshold=dhyper(n11,n1_,n2_,n_1)
>
2012 Aug 15
3
[LLVMdev] MI bundle liveness attributes
...Larin <slarin at codeaurora.org> wrote:
>>
>>>
>>> Hello everyone,
>>>
>>> Let me (re)present a question that might have previously been
>>> discussed, but did not result in any code (AFIK).
>>>
>>> How do we represent a _conditional_ assignment (def) in a bundle MI?
>>>
>>> More contents - currently we expose internal def/use/kill
>> information
>>> to a bundle header - something like this:
>>>
>>>
>>> BUNDLE %PC<imp-def>, %R0<imp-def>, %P0<imp-use,ki...
2010 Jan 27
1
Possible bug in fisher.test() (PR#14196)
# is there a bug in the calculation of the odds ratio in fisher.test?
# Nicholas Horton, nhorton at smith.edu Fri Jan 22 08:29:07 EST 2010
x1 = c(rep(0, 244), rep(1, 209))
x2 = c(rep(0, 177), rep(1, 67), rep(0, 169), rep(1, 40))
or1 = sum(x1==1&x2==1)*sum(x1==0&x2==0)/
(sum(x1==1&x2==0)*sum(x1==0&x2==1))
library(epitools)
or2 = oddsratio.wald(x1, x2)$measure[2,1]
or3 =
2004 Apr 27
5
p-values
I apologize if this question is not completely
appropriate for this list.
I have been using SAS for a while and am now in the
process of learning some C and R as a part of my
graduate studies. All of the statistical packages I
have used generally yield p-values as a default output
to standard procedures.
This week I have been reading "Testing Precise
Hypotheses" by J.O. Berger
2005 Apr 20
6
Anova - adjusted or sequential sums of squares?
Hi
I am performing an analysis of variance with two factors, each with two
levels. I have differing numbers of observations in each of the four
combinations, but all four combinations *are* present (2 of the factor
combinations have 3 observations, 1 has 4 and 1 has 5)
I have used both anova(aov(...)) and anova(lm(...)) in R and it gave the
same result - as expected. I then plugged this into