search for: sear

Displaying 20 results from an estimated 86 matches for "sear".

Did you mean: near
2011 Aug 13
2
How do I subset a dataframe
I have a dataframe zeespan. One of the columns has the name "customer". The data in the customer column is text. I would like to return a subset of the dataframe with all rows that DON'T begin with either "ibm" or "exxon", or "sears" in the customer column. I tried .... subset(zeespan, customer != c("ibm" | "exxon" | "sears") ) That didn't work and even if it did, the text would have to be an exact match where what I really want is "begins with". Suggestions on how to do th...
2015 Jan 22
3
[LLVMdev] X86TargetLowering::LowerToBT
Is that even a valid instruction? I thought TEST only took 32-bit immediates. Fiona > On Jan 22, 2015, at 2:48 PM, Chris Sears <chris.sears at gmail.com> wrote: > > The problem is that REX TEST reg,#(1<<37) is 10 bytes vs 5 bytes for REX BT reg,37. > That's a large space penalty to pay for a possible partial update stall. > > So the idea of generating BT for -Os and TEST for -Ofast makes s...
2015 Jan 22
3
[LLVMdev] X86TargetLowering::LowerToBT
Yeah, the alternative is to do movabs and then test, which is doable but I’m not sure if it’s worth it (surely BT + risk of flags merging penalty has to be better than two ops, one of which is ~9-10 bytes). Fiona > On Jan 22, 2015, at 2:59 PM, Chris Sears <chris.sears at gmail.com> wrote: > > My bad on that. So that's what the comment meant. > That means BT is pretty much req'd in the 64b case.
2010 Feb 12
1
Assign Name of Data Frame
...on a remote server. I would like the local dataframe have the same name as the source SAS dataset, and the function below is what I am developing. However, the "substitute(table)" on the left side of the assignment generates the error "Error in substitute(table) <<- sqlQuery(sears, sql.stmt) : could not find function "substitute<-". Thanks in advance MakeDF <- function(table) #------------------------------------------------------------ # Function makes dataframe from UNIX SAS datasets #------------------------------------------------------------ { st....
2015 Jan 22
2
[LLVMdev] X86TargetLowering::LowerToBT
On Thu Jan 22 2015 at 3:32:53 PM Chris Sears <chris.sears at gmail.com> wrote: > The status quo is: > > a) 40b REX+BT instruction for the 64b case > b) 48b TEST for the 32b case > c) unless it's small TEST > > > You are currently paying a 16b penalty for TEST vs BT in the 32b case. > That may be worth te...
2015 Jan 19
6
[LLVMdev] X86TargetLowering::LowerToBT
I'm tracking down an X86 code generation malfeasance regarding BT (bit test) and I have some questions. This IR *matches* and then *X86TargetLowering::LowerToBT **is called:* %and = and i64 %shl, %val * ; (val & (1 << index)) != 0 ; *bit test with a *register* index This IR *does not match* and so *X86TargetLowering::LowerToBT **is not called:* %and = lshr i64 %val, 25
2020 Jun 27
3
tablegen generated enums in tablegen
I'd like to store a tablegen generated enumeration in a record field/value. Clearly this enumeration isn't available yet so it seems that a code fragment should be the escape mechanism I need. Looking at the other backends for examples, I see things like [{ return Imm >= 0 && Imm < 64; }] // promising code Requires = [{ {} }];
2015 Jan 22
2
[LLVMdev] X86TargetLowering::LowerToBT
...di.amini at apple.com <mailto:mehdi.amini at apple.com>> wrote: >> >> >> >>> Begin forwarded message: >>> >>> Date: January 18, 2015 at 10:57:33 PM PST >>> Subject: Re: [LLVMdev] X86TargetLowering::LowerToBT >>> From: Chris Sears <chris.sears at gmail.com <mailto:chris.sears at gmail.com>> >>> To: Mehdi Amini <mehdi.amini at apple.com <mailto:mehdi.amini at apple.com>> >>> Cc: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu <mailto:llvmdev at cs.uiuc.edu>> >>...
2005 Mar 16
3
NuFone and CallerID
...all" and will not give me the calling party's caller ID info. Is this just something I have to live with using NuFOne, or did I miss some type of config in * that will grab the callerID other than the inbound 866 number...? Thanks !! ****************************************** Richard J. Sears Vice President American Internet Services ---------------------------------------------------- rsears@adnc.com http://www.adnc.com ---------------------------------------------------- 858.576.4272 - Phone 858.427.2401 - Fax INOC-DBA - 6130 -----------------------...
2015 Feb 03
3
[LLVMdev] RFC: Constant Hoisting
Hi Chris, If you have everything setup to test, can you generate the LLVM IR with -03 from 3.4.1 and 3.5 to be sure they match. Then we can focus on the backend. Thanks, Mehdi > On Feb 3, 2015, at 1:58 AM, Chris Sears <chris.sears at gmail.com> wrote: > > So between 3.4.1 and 3.5 since it isn't in 3.4.1 and it is in the current XCode. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150203/1e0b131a/attach...
2005 Feb 15
14
X-Lite Softphone
.... Running my Cisco 7960 at the same locations and it works fantastic with no issues at all. Is anyone else using this softphone or does anyone know of a better softphone or some hints on configuration that may make X-Lite work better..? TIA ****************************************** Richard J. Sears Vice President American Internet Services ---------------------------------------------------- rsears@adnc.com http://www.adnc.com ---------------------------------------------------- 858.576.4272 - Phone 858.427.2401 - Fax INOC-DBA - 6130 -----------------------...
2015 Jan 23
2
[LLVMdev] X86TargetLowering::LowerToBT
...%rsi, %rdi > btl %esi, %edi > > Does anyone at Intel have guidance for us? > > > On Thu, Jan 22, 2015 at 4:34 PM, Eric Christopher <echristo at gmail.com <mailto:echristo at gmail.com>> wrote: > > > On Thu Jan 22 2015 at 3:32:53 PM Chris Sears <chris.sears at gmail.com <mailto:chris.sears at gmail.com>> wrote: > The status quo is: > > a) 40b REX+BT instruction for the 64b case > b) 48b TEST for the 32b case > c) unless it's small TEST > > You are currently paying a 16b penalty for TEST vs BT in the...
2015 Jan 22
2
[LLVMdev] X86TargetLowering::LowerToBT
...e from Agner: "BT, BTC, BTR, and BTS change the carry flag but leave the other flags unchanged. This causes a false dependence on the previous value of the flags and costs an extra μop. Use TEST, AND, OR and XOR instead of these instructions.” – Steve > On Jan 22, 2015, at 5:05 PM, Chris Sears <chris.sears at gmail.com> wrote: > > I think the partial update issue isn't really valid concern, Agner Fogg, p 142. I don't think LLVM is going to emit this fragment. > > ; Example 10.7. Partial register access > bt eax,2 ; modifies carry flag but not zero flag &gt...
2005 Feb 14
2
ztdummy on Gentoo 2.6.10 Box
...I VIed the makefile and uncommented the ztdummy as instructed. I guess my question is - what the heck is happeneing. Why is ztdummy trying to load zaptel which I do not have in my system..? Any help would be greatly appreciated. Thanks ****************************************** Richard J. Sears Vice President American Internet Services ---------------------------------------------------- rsears@adnc.com http://www.adnc.com ---------------------------------------------------- 858.576.4272 - Phone 858.427.2401 - Fax INOC-DBA - 6130 -----------------------...
2015 Jan 19
2
[LLVMdev] X86TargetLowering::LowerToBT
...ially your first IR > sample is incomplete. > If you can also make more explicit how is the generated code wrong? > > You can give a C file if you are sure that it is reproducible with the > current clang. > > Thanks, > > Mehdi > > On Jan 18, 2015, at 5:13 PM, Chris Sears <chris.sears at gmail.com> wrote: > > I'm tracking down an X86 code generation malfeasance regarding BT (bit > test) and I have some questions. > > This IR *matches* and then *X86TargetLowering::LowerToBT **is called:* > > %and = and i64 %shl, %val * ; (val &...
2015 Jan 24
2
[LLVMdev] X86TargetLowering::LowerToBT
This is a patch to X86TargetLowering::LowerToBT() which was hashed over on the Developers list with Intel concurring. It checks whether the -Oz (optimize for size) flag is set or whether the containing function's PGO cold attribute is set. If either are true it emits BT for tests of bits 8-31 instead of TEST. Previously, TEST was always used for bits 0-31 and BT was always used for bits
2005 Mar 27
3
Can't get format_mp3 to work for music on hold
Hi Guys, I am having trouble trying to get format_mp3 working to play music on hold. I have followed the instructions in the read-me and the wiki however it seems after un-installing mpg123, asterisk is not even attempting to play MOH. My musiconhold.conf is ; Music on hold class definitions ; [classes] [moh_files] default = >/var/lib/asterisk/moh-native ;default =>
2005 Feb 25
1
WebVMail Woirks but No Audio
...ilbox=2377&context=default &password=000012&msgid=0000&format=gsm&dontcasheme=4624.gsm HTTP/1.1" 200 9438 "-" "contype" But the box at the bottom shows up as a broken link. Any ideas...? Thanks ****************************************** Richard J. Sears Vice President American Internet Services ---------------------------------------------------- rsears@adnc.com http://www.adnc.com ---------------------------------------------------- 858.576.4272 - Phone 858.427.2401 - Fax INOC-DBA - 6130 -----------------------...
2015 Jan 23
3
[LLVMdev] X86TarIgetLowering::LowerToBT
...doesn’t have a –Oz option. It has –Os and –O[123]. Also, FWIW, one of the Intel compiler experts on BT will comment on this thread, and on our rules for BT usage later this afternoon. Kevin B. Smith From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Chris Sears Sent: Friday, January 23, 2015 9:37 AM To: Stephen Canon Cc: LLVM Developers Mailing List Subject: Re: [LLVMdev] X86TargetLowering::LowerToBT Constant mask case. Sanjay, could you run this through the Intel compiler with the appropriate flags? They have an -O2 but I couldn't find an equivale...
2005 Feb 24
2
Delay after entering digits with IVR
...17. BackGround(to-dial-by-name-press) [pbx_config] 18. BackGround(digits/2) [pbx_config] 't' => 1. Goto(s|15) [pbx_config] ****************************************** Richard J. Sears Vice President American Internet Services ---------------------------------------------------- rsears@adnc.com http://www.adnc.com ---------------------------------------------------- 858.576.4272 - Phone 858.427.2401 - Fax INOC-DBA - 6130 -----------------------...