search for: 51.38

Displaying 5 results from an estimated 5 matches for "51.38".

Did you mean: 1.38
2020 Sep 19
0
help improving relevance of snippets displayed by Omega
On Fri, Sep 18, 2020 at 08:33:49PM -0400, Michael Decerbo wrote: > But expanding the sample seems like the wrong solution. Is there a way to > instead pass a hit or hits from the document to snippet generation? I'm not sure what you have in mind, but the only way I can see that working is if it read all the positional data for all the terms in the document, and then sorted it to
2020 Sep 19
2
help improving relevance of snippets displayed by Omega
Thanks Olly! But expanding the sample seems like the wrong solution. Is there a way to instead pass a hit or hits from the document to snippet generation? Michael
2017 Jul 22
4
[RFC] Add IR level interprocedural outliner for code size.
Hi Andrey, Questions and feedback are very much welcome. - The explanation as to why the improvements can vary between the IR and MIR outliner mainly boil down to the level of abstraction that each are working at. The MIR level has very accurate heuristics and is effectively the last post ISel target independent code gen pass. The IR outliner on the other hand has more estimation in the cost
2012 Apr 17
1
Test-Predict R survival analysis
Hi, I'm trying to use the R Survival analysis on a windows 7 system. The input data format is described at the end of this mail. 1/ I tried to perform a survival analysis including stratified variables using the following formula. cox.xtab_miR=coxph(Surv(time, status) ~ miR + strata(sex,nbligne, age), data=matrix) and obtain the following error message Warning message: In fitter(X, Y,
2017 Jul 20
8
[RFC] Add IR level interprocedural outliner for code size.
I’m River and I’m a compiler engineer at PlayStation. Recently, I’ve been working on an interprocedural outlining (code folding) pass for code size improvement at the IR level. We hit a couple of use cases that the current code size solutions didn’t handle well enough. Outlining is one of the avenues that seemed potentially beneficial. -- Algorithmic Approach -- The general implementation can be