similar to: [LLVMdev] identifying live in and live out variables in a basic block pass

Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] identifying live in and live out variables in a basic block pass"

2012 Mar 06
1
LOESS confidence interval
Dear all, I'm trying to construct confidence intervals for a LOWESS estimation (by not using bootstrapping). I have checked previous posts and other material online and I understand that the main procedure is: my.count<- seq(...) fit<- loess (y ~ x, data=z) pred<- pred(fit, my.count, se=TRUE) and then the plotting. However, it's not working; as confidence
2007 Mar 01
4
R File IO Slow?
Is R file IO slow in general or am I missing something? It takes me 5 minutes to do a load(MYFILE) where MYFILE is a 27 MB Rdata file. Is there any way to speed this up? The one idea I have is having R call a C or Perl routine, reading the file in that language, converting the data in to R objects, then sending them back into R. This is more work that I want to do, however, in loading Rdata
2005 Mar 09
1
Support for SIP REFER message
Hi to all, I am sending a SIP REFER message to Asterisk from a VoiceXML application using the <Transfer> element to do a Transfer through Asterisk. I need to know if Asterisk supports the full features of the SIP REFER message because if i set 'bridge=true' in the <transfer> element of the VoiceXML application to supervise the call, Asterisk sends a NOTIFY message with
2007 Jan 31
5
Testing IVR / Callcenter applications
Hello We are developing an application to be deployed on E1 lines (inbound and outbound calls) What is the best way to fully test the application if we do not have E1 lines in the development environment? Is there some kind of software tester to test IVR/Callcenter applications virtually?? thanks and best regards -------------- next part -------------- An HTML attachment was scrubbed... URL:
2019 Nov 13
2
[PATCH v3 02/14] mm/mmu_notifier: add an interval tree notifier
> +int mmu_interval_notifier_insert(struct mmu_interval_notifier *mni, > + struct mm_struct *mm, unsigned long start, > + unsigned long length, > + const struct mmu_interval_notifier_ops *ops); > +int mmu_interval_notifier_insert_locked( > + struct mmu_interval_notifier *mni, struct mm_struct *mm, > + unsigned long start, unsigned long length, > + const struct
2018 May 02
1
get unicode ranges from a TTF ???
Hello list, Is there a command line tool I run on a ttf font and get a list of the Unicode Ranges for that that font that would be compatible with the unicode-range: parameter in a CSS @fontface declaration? I'm guessing something in the python world probably exists... Hopefully something that works in CentOS 7 I need something like that for a FLOSS font server project that doesn't
2020 Mar 30
2
Plotmath on Fedora 31 broken with with pango >= 1.44 - workarounds?
On Mon, 30 Mar 2020 at 22:41, Paul Murrell <paul at stat.auckland.ac.nz> wrote: > > Hi > > On 30/03/20 10:43 pm, I?aki Ucar wrote: > > On Mon, 30 Mar 2020 at 04:24, Paul Murrell <paul at stat.auckland.ac.nz> wrote: > >> > >> Hi > >> > >> I have created an R branch that contains a potential fix ... > >> > >>
2019 May 25
2
Artwork localization
Hi Timothy, On Thu, 2019-05-23 at 14:03 +1000, Timothy Lee wrote: > I can provide zh-CN, zh-HK and zh-TW translations of the content. Your changes were pushed. See: https://git.centos.org/centos/Artwork/c/9efa093b155293bf171d6b7f9ceeb73b41170cf9?branch=c8 To render Chinese rolling notes images I had to change the final images' typography from "Overpass" to "Google
2005 Mar 16
2
[Possible SPAM] : about sip, asterisk and cisco ccme
I am starting to work on a similar solution, but with full call manager rather than CME. I am going to use Asterisk to accept POTS calls through PCI FXO ports (winmodems) and then forward the calls through to call manager via SIP. I don't have my FXO cards yet (waiting for UPS man!!) but I have * talking to the CM through SIP just fine. I am testing with the Cisco softphone, connected as a
2019 Feb 22
1
Re: [PATCH nbdkit v3 4/4] Add linuxdisk plugin.
On 2/22/19 3:07 AM, Richard W.M. Jones wrote: > From: "Richard W.M. Jones" <rjones@redhat.com> > > This plugin allows you to create a complete ext2, ext3 or ext4 > filesystem in a GPT partitioned disk image. This can be attached as a > disk to a Linux virtual machine. It is implemented using e2fsprogs > mke2fs ā€˜-dā€™ option thus allowing the implementation to be
2017 Aug 03
2
Re-computing Live-in/Live-out Physical Registers for Basic Blocks Using LivePhysRegs
Thank you for your reply! If liveness of APSR is not tracked, how does the code generator determine whether instructions like cmp are dead code or not? Is it true that, for every use of APSR (such as a conditional branch), the used def (such as cmp, add, etc.) is always in the same basic block? Is it true that APSR is never assumed to live across basic block boundaries? Thank you! Ming Zhang
2018 Oct 01
2
Authenticate users using their firstname
> On 01 October 2018 at 15:19 Steffen Kaiser <skdovecot at inf.h-brs.de> wrote: > > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Sat, 29 Sep 2018, Fady AL HAYALI wrote: > > > I'm setting up a Postfic and Dovecot with LDAP email server. My users in LDAP is like this: > > > > dn: uid=firstname,ou=People,dc=domain,dc=com > >
2019 May 23
3
Artwork localization
Hello everyone, What do you think about having localized the following CentOS components: - Rolling notes in CentOS installer. These images are shown during the installation process, once the configuration is done and you are waiting for packages to be installed. Rolling notes are a great place to promote CentOS. If they are not localized, they are shown in English language by default.
2001 Oct 12
3
ext3 mounted fs still needs fscking after crash
Hi there, I'm new to ext3, so I hope you won't find my question to be stupid. I also hope this isn't the 1,000,000th time someone posts it. My problem is the following: I converted my ext2 systems to ext3 using tune2fs -j /dev/sda2 (or 5 for my /home, 2 is my root) Then I modified fstab and put ext3 for each. After a reboot, the mount command says they are mounted as ext3. But when I
2012 May 03
1
is there a way of identifying batch mode running?
Hello list Is there a way of identifying from within R whether a script has been source(d) from Rgui.exe or via Rscript.exe in batch mode? For the code I have I use the commandArgs() function to pick up command line args when running in batch mode via Rscript.exe However I like to get the code working manually first using source("MyRCode.r") I'd like to be able to put something at
2008 Dec 03
0
[LLVMdev] Identifying backedges
Bhavani, A simple way that I'm not sure is 100% guaranteed to work is if the branch is to an earlier or later basic block. Micah -----Original Message----- From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of bhavani krishnan Sent: Wednesday, December 03, 2008 3:20 PM To: Nick Lewycky; LLVM Developers Mailing List Subject: [LLVMdev] Identifying
2009 Feb 16
0
Summary: Identifying graphics files produced by R
Thanks to all those that responded to the question below, either on-list or privately. The bottom line is that there's no identifying information from R in the metadata for PNG or JPG files (and R doesn't produce GIFs). I did however figure out a way to automate a search for PDF and PostScript files produced by R, and the details are here:
2009 Jun 14
1
Identifying clusters of size n
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Is there a library which is capable of identifying distinct clusters of size n from a series of XY coordinates? Failing this, I'd like to be able to to something like: Using a sliding window of size n along the x-axis I'd like to determine the distance between the center of the points in the window and the closest point outside the window. I
2011 Sep 21
1
identifying cells in data frames with the same value
Hi, I'm trying to find out if there is a command that tells me which cells in my data frame have the same value. I am looking at the results from an online survey, organized into a data frame with the following columns: SubjectNumber, WorkerID, Age. I know the one person must have taken the survey more than once, because there is one less level in the WorkerID column than there are rows in
2010 Jan 29
0
help in identifying the argument "formula" in the package nnet
hi everyone! I have a 40-year monthy streamflow record. And i want to fit a neural network. I already fitted an autoregressive model and found out that an AR(3) model fits my time series (time.series) the best. I am currently having problems on how to express the argument "formula" for my neural network.. I am aware that my model should be Q(t) ~ Q(t-1) + Q(t-2) + Q(t-3). But I