Displaying 8 results from an estimated 8 matches for "cond10".
Did you mean:
cond1
2013 Nov 03
2
[LLVMdev] loop vectorizer issue
...reheader
%k.030 = phi i32 [ 20, %for.cond2.preheader ], [ %inc8, %for.body4 ]
%arrayidx6 = getelementptr inbounds i32* %0, i32 %k.030
store i32 %.pre, i32* %arrayidx6, align 4, !tbaa !0
%inc8 = add nsw i32 %k.030, 1
%exitcond32 = icmp eq i32 %inc8, 50
br i1 %exitcond32, label %for.cond10.preheader, label %for.body4
Thanks in advance,
Sara Elshobaky
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131103/23e2a4b6/attachment.html>
2013 Nov 03
0
[LLVMdev] loop vectorizer issue
....preheader ], [ %inc8, %for.body4 ]
>
> %arrayidx6 = getelementptr inbounds i32* %0, i32 %k.030
>
> store i32 %.pre, i32* %arrayidx6, align 4, !tbaa !0
>
> %inc8 = add nsw i32 %k.030, 1
>
> %exitcond32 = icmp eq i32 %inc8, 50
>
> br i1 %exitcond32, label %for.cond10.preheader, label %for.body4
>
>
>
>
>
> Thanks in advance,
>
> Sara Elshobaky
>
>
>
>
>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc...
2013 Nov 03
3
[LLVMdev] loop vectorizer issue
...reheader
%k.030 = phi i32 [ 20, %for.cond2.preheader ], [ %inc8, %for.body4 ]
%arrayidx6 = getelementptr inbounds i32* %0, i32 %k.030
store i32 %.pre, i32* %arrayidx6, align 4, !tbaa !0
%inc8 = add nsw i32 %k.030, 1
%exitcond32 = icmp eq i32 %inc8, 50
br i1 %exitcond32, label %for.cond10.preheader, label %for.body4
Thanks in advance,
Sara Elshobaky
_______________________________________________
LLVM Developers mailing list
LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
-------------- next part ----------...
2013 Nov 03
0
[LLVMdev] loop vectorizer issue
...phi i32 [ 20, %for.cond2.preheader ], [ %inc8, %for.body4 ]
> %arrayidx6 = getelementptr inbounds i32* %0, i32 %k.030
> store i32 %.pre, i32* %arrayidx6, align 4, !tbaa !0
> %inc8 = add nsw i32 %k.030, 1
> %exitcond32 = icmp eq i32 %inc8, 50
> br i1 %exitcond32, label %for.cond10.preheader, label %for.body4
>
>
> Thanks in advance,
> Sara Elshobaky
>
>
>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo...
2012 May 04
0
oddsratio epitool and chi-square
...how to use the rev option of the oddsration works here.
I'm trying to see if any of the treatments has an effect on each
condition, so for example if treatment A has an effect on cond1 compared
to treatmentB. And so on for each condition.
I also don't understand why i get an NA value on cond10 ???
> oddsratio(mat,rev="r") . Shoudl this be rev="r" or rev="c"
$data
instrument
Condition treatmentA treatmentB Total
Cond 10 14 58 72
Cond 9 28 11 39
Cond 8 70 20 90
Cond 7...
2012 May 04
0
oddsratio and some basic help on epitools
...how to use the rev option of the oddsration works here.
I'm trying to see if any of the treatments has an effect on each
condition, so for example if treatment A has an effect on cond1 compared
to treatmentB. And so on for each condition.
I also don't understand why i get an NA value on cond10 ???
> oddsratio(mat,rev="r") . Shoudl this be rev="r" or rev="c"
$data
instrument
Condition treatmentA treatmentB Total
Cond 10 14 58 72
Cond 9 28 11 39
Cond 8 70 20 90
Cond 7...
2012 May 04
0
epitools question
...how to use the rev option of the oddsration works here.
I'm trying to see if any of the treatments has an effect on each
condition, so for example if treatment A has an effect on cond1 compared
to treatmentB. And so on for each condition.
I also don't understand why i get an NA value on cond10 ???
> oddsratio(mat,rev="r") . Shoudl this be rev="r" or rev="c"
$data
instrument
Condition treatmentA treatmentB Total
Cond 10 14 58 72
Cond 9 28 11 39
Cond 8 70 20 90
Cond 7...
2012 May 04
3
[LLVMdev] Extending GetElementPointer, or Premature Linearization Considered Harmful
...4 = getelementptr inbounds [100 x [100 x i64]]* %A, i64
%arrayidx21.sum, i64 %add1411, i64 %add*
*store i64 0, i64* %arrayidx24, align 8*
*{{{(5 + ((3 + %n) * %n)),+,(2 * %n * %n)}<%for.cond1.preheader>,+,(4 *
%n)}<%for.cond4.preheader>,+,6}<%for.cond7.preheader>*
*{7,+,8}<%for.cond10.preheader>*
*{9,+,10}<%for.body12>*
This is more tedious. There are 2 easy indices hanging from the GEP, but
the rest are compressed into one SCEV. The upshot is: Whenever I look at a
memory reference, I need to attempt to delinearize the first SCEV (in the
order I've printed them) t...