Displaying 14 results from an estimated 14 matches for "skidding".
Did you mean:
kidding
2008 Mar 02
1
CentOS, ISDN and Fax ...
Hey guys,
is anyone of you using CentOS (4/5) for an ISDN fax gateway? I just had
someone over here at the CentOS booth who wanted to know if there's a
possibility to integrate the AVM CAPI into CentOS and then use the
machine as a fax gateway with 2, 3 or 4 S0 buses.
Is that possible?
Cheers,
Ralph
--
Ralph Angenendt......ra at br-online.de | .."Text processing has made it possible
2011 Jan 15
4
How to *completely* stop a script after stop()?
Dear expeRts,
is there a neat way to *completely* stop a script after an error occured?
For example, consider the following script:
## ==== file.R ====
for(i in 1:10){
print(i)
if(i == 5) stop("i == 5")
}
for(i in 11:100) print(i)
## ================
stop() behaves like it should namely to stop the execution of the *current*
expression, but I was wondering if it is possible to
2011 Aug 16
2
Assignment working differently inside ifelse()
Hello all, I need to extract rows and columns from a data frame and put
them in a matrix. In some cases, there are no rows in the data frame
meeting the selection criteria. For those rows I want to put a row of
0's in the matrix. Here's my clumsy code:
tab1.m1 <- matrix(0, nrow=2, ncol=4)
tab1.m1[1,] <- ifelse(length(as.matrix(tab1[tab1$comp==the.comp & tab1$schlid==the.schl
2016 Jul 20
2
[XRay] Build instrumented Clang, some analysis results
> On 20 Jul 2016, at 20:02, C Bergström <cbergstrom at pathscale.com> wrote:
>
> Some general questions about X-Ray
> -------------
> Is there a plan to make a separate mailing list or project around
> this? Do you have a list of planned features?
Interesting question -- so far we haven't decided yet whether XRay will live as another project. I'm certainly open to
2004 Dec 28
2
Still the big Icecast problem!
If propagation of Ogg Vorbis is the (or a) goal of Icecast then
probably the best strategy is to build an embedded Ogg Flash Player of
some sort, so that people unwittingly become Ogg users without lifting
a finger, and broadcasters can start using it without fear that they'll
lose listeners due to their protocol choice. I've been streaming for
more than 7 years now with Quicktime,
2004 Dec 17
3
Still the big Icecast problem!
On Fri, Dec 17, 2004 at 10:00:19PM -0300, Mr Dihelson Mendonca wrote:
> The problem with Icecast OGG system is that common
> people doesn't want to download any other software in
> order to listen to a radio station, even a plugin...
Of course. But that's not the whole story. Microsoft only
supports MP3 because so many people listen to mp3 radio
stations and files. And before
2020 Aug 07
4
[RFC] Context-sensitive Sample PGO with Pseudo-Instrumentation
Hi All,
Our team at Facebook is building a new context-sensitive Sample PGO as an alternative to the existing AutoFDO. We’d like to share our motivation, propose a new design, and reveal preliminary results on benchmarks. We will refer to the proposed design as CSSPGO in this RFC.
The new CSSPGO leverages simultaneous LBR and stack sampling to construct a full context-sensitive profile. It
2020 Aug 07
2
[RFC] Context-sensitive Sample PGO with Pseudo-Instrumentation
Thanks for the thoughtful questions, David. See my answers inline.
Thanks,
Wenlei
From: Xinliang David Li <davidxl at google.com>
Date: Friday, August 7, 2020 at 1:24 PM
To: Wenlei He <wenlei at fb.com>
Cc: "llvm-dev at lists.llvm.org" <llvm-dev at lists.llvm.org>, Wei Mi <wmi at google.com>, Hongtao Yu <hoy at fb.com>
Subject: Re: [RFC] Context-sensitive
2013 Jan 18
0
Wine release 1.5.22
The Wine development release 1.5.22 is now available.
What's new in this release (see below for details):
- New version of the Gecko engine.
- Beginnings of the Mac graphics driver.
- Support for ARM64 platforms.
- Fixes for RTL text in Uniscribe.
- Various bug fixes.
The source is available from the following locations:
2020 Aug 08
5
[RFC] Context-sensitive Sample PGO with Pseudo-Instrumentation
See my answers inline.
From: Xinliang David Li <davidxl at google.com>
Date: Friday, August 7, 2020 at 7:57 PM
To: Wenlei He <wenlei at fb.com>
Cc: "llvm-dev at lists.llvm.org" <llvm-dev at lists.llvm.org>, Wei Mi <wmi at google.com>, Hongtao Yu <hoy at fb.com>
Subject: Re: [RFC] Context-sensitive Sample PGO with Pseudo-Instrumentation
On Fri, Aug 7,
2020 Aug 08
3
[RFC] Context-sensitive Sample PGO with Pseudo-Instrumentation
Hi Rahman,
Thanks for sharing the BB-info section proposal which is a shiny idea. I think the BB-info and pseudo probes deal with a similar problem in different spaces, i.e., mapping hardware samples to corresponding basic blocks. In the context of pseudo probes, we much focus on mapping samples back to source-level blocks which is the input to the optimizer. Therefore we are building a
2020 Aug 08
2
[RFC] Context-sensitive Sample PGO with Pseudo-Instrumentation
On Fri, Aug 7, 2020 at 11:28 PM Hongtao Yu <hoy at fb.com> wrote:
> A few add-ons.
>
>
>
> *From: *Wenlei He <wenlei at fb.com>
> *Date: *Friday, August 7, 2020 at 10:34 PM
> *To: *Xinliang David Li <davidxl at google.com>
> *Cc: *"llvm-dev at lists.llvm.org" <llvm-dev at lists.llvm.org>, Wei Mi <
> wmi at
2020 Aug 08
2
[RFC] Context-sensitive Sample PGO with Pseudo-Instrumentation
In addition to an IR block id or probe Id, we’ll also need to know the inline context of a probe if it comes from an inlinee. The current pseudo probe encoding is based on a DFS walk of the inline tree. A MIR BB may contain probes from different inlinees, and we may need to extend the BB-info format for encode the inline contexts there. I’m happy to work with you on a encoding format that can be
2020 Aug 08
2
[RFC] Context-sensitive Sample PGO with Pseudo-Instrumentation
Also see my replies inline.
From: Hongtao Yu <hoy at fb.com>
Date: Saturday, August 8, 2020 at 11:25 AM
To: Xinliang David Li <davidxl at google.com>
Cc: Wenlei He <wenlei at fb.com>, "llvm-dev at lists.llvm.org" <llvm-dev at lists.llvm.org>, Wei Mi <wmi at google.com>
Subject: Re: [RFC] Context-sensitive Sample PGO with Pseudo-Instrumentation
Replied