search for: summari

Displaying 20 results from an estimated 22116 matches for "summari".

Did you mean: summary
2008 Mar 08
5
Non-visible functions are asterisked
Dear R-Helpers, I suspect I'm about to ask a FAQ, but I haven't been able to find an answer in the FAQ, AItR or an R Site Search. When I look at the methods of summary (below) it says, "Non-visible functions are asterisked". I looked at the help file for summary.princomp, which did not comment on it being non-visible. I ran its help file example, which printed visible output. I
2018 Apr 24
8
RFC: LLVM Assembly format for ThinLTO Summary
...fically to emit to LLVM assembly. Proposal below, please let me know your thoughts. Thanks, Teresa *RFC: LLVM Assembly format for ThinLTO Summary========================================Background-----------------ThinLTO operates on small summaries computed during the compile step (i.e. with “-c -flto=thin”), which are then analyzed and updated during the Thin Link stage, and utilized to perform IR updates during the post-link ThinLTO backends. The summaries are emitted as LLVM Bitcode, however, not currently in the LLVM assembly.There are...
2018 Apr 25
0
RFC: LLVM Assembly format for ThinLTO Summary
...fically to emit to LLVM assembly. Proposal below, please let me know your thoughts. > > Thanks, > Teresa > > RFC: LLVM Assembly format for ThinLTO Summary > ======================================== > > Background > ----------------- > > ThinLTO operates on small summaries computed during the compile step (i.e. with “-c -flto=thin”), which are then analyzed and updated during the Thin Link stage, and utilized to perform IR updates during the post-link ThinLTO backends. The summaries are emitted as LLVM Bitcode, however, not currently in the LLVM assembly. > &gt...
2018 May 03
2
RFC: LLVM Assembly format for ThinLTO Summary
On Thu, May 3, 2018 at 2:58 PM, Peter Collingbourne <peter at pcc.me.uk> wrote: > Hi Teresa, > > I have re-read your proposal, and I'm not getting how you plan to > represent combined summaries with this. Unless I'm missing something, there > doesn't seem to be a way to write out summaries that is independent of the > global values that they relate to. Is that something that you plan to > address later? > I envisioned that the combined index assembly files would onl...
2018 Apr 30
0
RFC: LLVM Assembly format for ThinLTO Summary
...ally to emit to LLVM assembly. > Proposal below, please let me know your thoughts. > > Thanks, > Teresa > > > > > > > *RFC: LLVM Assembly format for ThinLTO > Summary========================================Background-----------------ThinLTO > operates on small summaries computed during the compile step (i.e. with “-c > -flto=thin”), which are then analyzed and updated during the Thin Link > stage, and utilized to perform IR updates during the post-link ThinLTO > backends. The summaries are emitted as LLVM Bitcode, however, not currently > in the LLVM...
2018 May 03
0
RFC: LLVM Assembly format for ThinLTO Summary
Hi Teresa, I have re-read your proposal, and I'm not getting how you plan to represent combined summaries with this. Unless I'm missing something, there doesn't seem to be a way to write out summaries that is independent of the global values that they relate to. Is that something that you plan to address later? Peter On Tue, Apr 24, 2018 at 7:43 AM, Teresa Johnson <tejohnson at google.co...
2018 Apr 25
0
RFC: LLVM Assembly format for ThinLTO Summary
Hi Teresa, Thanks for sending this proposal out. I would again like to register my disagreement with the whole idea of writing summaries in LLVM assembly format. In my view it is clear that this is not the right direction, as it only invites additional complexity and more ways for things to go wrong for no real benefit. However, I don't have the energy to argue that point any further, so I won't stand in the way here. On...
2018 Apr 30
2
RFC: LLVM Assembly format for ThinLTO Summary
...Peter, Thanks for your comments, replies below. Teresa On Wed, Apr 25, 2018 at 2:08 PM Peter Collingbourne <peter at pcc.me.uk> wrote: > Hi Teresa, > > Thanks for sending this proposal out. > > I would again like to register my disagreement with the whole idea of > writing summaries in LLVM assembly format. In my view it is clear that this > is not the right direction, as it only invites additional complexity and > more ways for things to go wrong for no real benefit. However, I don't have > the energy to argue that point any further, so I won't stand in the...
2018 May 03
0
RFC: LLVM Assembly format for ThinLTO Summary
...resa Johnson <tejohnson at google.com> wrote: > > > On Thu, May 3, 2018 at 2:58 PM, Peter Collingbourne <peter at pcc.me.uk> > wrote: > >> Hi Teresa, >> >> I have re-read your proposal, and I'm not getting how you plan to >> represent combined summaries with this. Unless I'm missing something, there >> doesn't seem to be a way to write out summaries that is independent of the >> global values that they relate to. Is that something that you plan to >> address later? >> > > I envisioned that the combined index...
2018 May 03
1
RFC: LLVM Assembly format for ThinLTO Summary
...> wrote: > >> >> >> On Thu, May 3, 2018 at 2:58 PM, Peter Collingbourne <peter at pcc.me.uk> >> wrote: >> >>> Hi Teresa, >>> >>> I have re-read your proposal, and I'm not getting how you plan to >>> represent combined summaries with this. Unless I'm missing something, there >>> doesn't seem to be a way to write out summaries that is independent of the >>> global values that they relate to. Is that something that you plan to >>> address later? >>> >> >> I envisioned...
2011 Jan 08
1
summary(list) is awesome, but I want more than summary
When I load a table from a data source and run summary() on it, the summary gives me basic summary statistics I'm looking for, and it also discriminates between quantitative and qualitative data and summarizes them accordingly. For example, if I do this: mydata <- read.table("data.txt") summary(mydata) I would get output like this: > summary(mydata) County BERNALILLO:2863 DONA ANA : 772 SANTA FE : 671 SANDOVAL : 579 SAN JUAN : 471 VALENCIA : 281 (Other...
2018 Apr 30
0
RFC: LLVM Assembly format for ThinLTO Summary
...> Teresa > > On Wed, Apr 25, 2018 at 2:08 PM Peter Collingbourne <peter at pcc.me.uk> > wrote: > >> Hi Teresa, >> >> Thanks for sending this proposal out. >> >> I would again like to register my disagreement with the whole idea of >> writing summaries in LLVM assembly format. In my view it is clear that this >> is not the right direction, as it only invites additional complexity and >> more ways for things to go wrong for no real benefit. However, I don't have >> the energy to argue that point any further, so I won't...
2013 Feb 08
3
On p-values presented in the summary of Linear Models
Dear list members I have a doubt on how p-values for t-statistics are calculated in the summary of Linear Models. Here goes an example: x <- rnorm(100,50,10) y <- rnorm(100,0,5) fit1<-lm(y~x) summary(fit1) summary(fit1)$coef[2] # b summary(fit1)$coef[4] # Std. Error summary(fit1)$coef[6] # t-statistic summary(fit1)$coef[8] # Pr(>|t| summary(fit1)$df [2] # degrees of freedom #
2018 May 01
3
RFC: LLVM Assembly format for ThinLTO Summary
...eloading it and making the thin-link faster). The fundamental problem is that an analysis result has to be able to be invalidated with IR changes, attaching this directly to the module wouldn't achieve this. The risk is that when the IR and the summary get out-of-sync (`clang -O2 my_module_with_summaries.ll -emit-llvm -o my_optimized module_with_summaries.ll`) the summaries would be badly wrong. Have you looked into what it'd take to make it a "real" analysis in the pass manager? Cheers, -- Mehdi Le mar. 1 mai 2018 à 11:10, Peter Collingbourne <peter at pcc.me.uk> a éc...
2018 May 01
0
RFC: LLVM Assembly format for ThinLTO Summary
...ptable to everyone. =) > The fundamental problem is that an analysis result has to be able to be > invalidated with IR changes, attaching this directly to the module wouldn't > achieve this. The risk is that when the IR and the summary get out-of-sync > (`clang -O2 my_module_with_summaries.ll -emit-llvm -o my_optimized > module_with_summaries.ll`) the summaries would be badly wrong. > > Have you looked into what it'd take to make it a "real" analysis in the > pass manager? > Thanks for raising this issue specifically, I hadn't addressed it in my pr...
2018 May 01
3
RFC: LLVM Assembly format for ThinLTO Summary
...pr 25, 2018 at 2:08 PM Peter Collingbourne <peter at pcc.me.uk> >> wrote: >> >>> Hi Teresa, >>> >>> Thanks for sending this proposal out. >>> >>> I would again like to register my disagreement with the whole idea of >>> writing summaries in LLVM assembly format. In my view it is clear that this >>> is not the right direction, as it only invites additional complexity and >>> more ways for things to go wrong for no real benefit. However, I don't have >>> the energy to argue that point any further, so...
2018 May 03
3
RFC: LLVM Assembly format for ThinLTO Summary
...adability of the summary. > > > The fundamental problem is that an analysis result has to be able to be invalidated with IR changes, attaching this directly to the module wouldn't achieve this. The risk is that when the IR and the summary get out-of-sync (`clang -O2 my_module_with_summaries.ll -emit-llvm -o my_optimized module_with_summaries.ll`) the summaries would be badly wrong. > > Have you looked into what it'd take to make it a "real" analysis in the pass manager? > > Thanks for raising this issue specifically, I hadn't addressed it in my propos...
2018 May 03
3
RFC: LLVM Assembly format for ThinLTO Summary
...> > >> The fundamental problem is that an analysis result has to be able to be >> invalidated with IR changes, attaching this directly to the module wouldn't >> achieve this. The risk is that when the IR and the summary get out-of-sync >> (`clang -O2 my_module_with_summaries.ll -emit-llvm -o my_optimized >> module_with_summaries.ll`) the summaries would be badly wrong. >> >> Have you looked into what it'd take to make it a "real" analysis in the >> pass manager? >> > > Thanks for raising this issue specifically, I had...
2018 May 03
4
RFC: LLVM Assembly format for ThinLTO Summary
...undamental problem is that an analysis result has to be able to be >>>> invalidated with IR changes, attaching this directly to the module wouldn't >>>> achieve this. The risk is that when the IR and the summary get out-of-sync >>>> (`clang -O2 my_module_with_summaries.ll -emit-llvm -o my_optimized >>>> module_with_summaries.ll`) the summaries would be badly wrong. >>>> >>>> Have you looked into what it'd take to make it a "real" analysis in the >>>> pass manager? >>>> >>> >&g...
2010 Apr 09
1
Theora encoder directshow Filter configuration
Hi, I'am using the Xiph Theora Encoder directshow Filter in a csharp application. It works fine but I would like to modify the configuration, like the quality settings. I would like to know if there is a possibility to configure it programmatically without using the propertyPage dialog. Thanks a lot for your help Mathieu -------------- next part -------------- An HTML attachment was