search for: aviod

Displaying 20 results from an estimated 24 matches for "aviod".

Did you mean: avid
2013 Apr 14
2
[LLVMdev] is there any passes or compiling options that can aviod to generate vector instructions and 'select' instruction in IR
hi guys: is there any passes or compiling options that can aviod to generate vector instructions and 'select' instruction in IR. i think that these instructions can be replaced with other instructions in LLVM IR. So if there is a way to eliminate these instructions during compilation? -- View this message in context: http://llvm.1065342.n5.nabble.com/...
2013 Apr 15
0
[LLVMdev] is there any passes or compiling options that can aviod to generate vector instructions and 'select' instruction in IR
Hi, > is there any passes or compiling options that can aviod to generate vector > instructions and 'select' instruction in IR. > i think that these instructions can be replaced with other instructions in > LLVM IR. So if there is a way to eliminate these instructions during > compilation? you can avoid having optimizers create vector ins...
2013 Apr 14
1
[LLVMdev] llvm 'select' instruction
hi Sam: thank you for your reply. but i have another question about this 'select' instruction. i think that in LLVM IR, i can use a branch and two seperate assignments to replace 'select' instruction(am i right?). so is there any compiling option to aviod generate 'select' instruction? -- View this message in context: http://llvm.1065342.n5.nabble.com/llvm-select-instruction-tp56719p56728.html Sent from the LLVM - Dev mailing list archive at Nabble.com.
2004 Jan 09
2
Problem with internal traffic
...drives hde,hdg etc all of these drives are mounted in samba. When i copy file from one drive to another i notice that server sends the file to my computer and then back to itself (into the right place). The file will be copied but doing so it will eat half of my network bandwith. Is it possible to aviod this? Best Regards Patrick Betfjord
1999 Sep 07
2
weird printing problems.
...but it simply won't print. These are remote lpd connected printer to the samba server, and lpd can print fine. These are JetDirect HP printers. Any troubleshooting tips? I thought perhaps the spool names would have something to do with it. The shares and the spools are weird names to help aviod user confusion. [Bull Pen Printer] [Hall Way Printer] Thanks -jeremy http://www.xxedgexx.com | jeremy@xxedgexx.com --------------------------------------------- Y2K. We're all gonna die.
2009 May 14
2
I want to avioid unnecessary value
I have a database like this: "kol1";"kol2";"kol3" ... "2";"5";"9" "9";"6";"6" "4";"6";"5"... I looking for a kod in R which let mi aviod in column unnecessary value, for example number "9". So, if I have: Kol1 2 9 4 4... after loop in R I would like to get my column like this: Kol1 2 4 4... If you have any idea I'll be grateful to you for any idea -- View this message in context: http://www.nabble.com/I-want-to...
2013 Apr 14
8
[LLVMdev] llvm 'select' instruction
hello guys: i am thinking about what kind of C instructions can turn into llvm IR 'select' instruction. i tried "d=a?b:c" and compiled it using clang, i still didn't get 'select' is there anybody who knows this? thank you -- View this message in context: http://llvm.1065342.n5.nabble.com/llvm-select-instruction-tp56719.html Sent from the LLVM - Dev mailing list
2013 Apr 14
1
[LLVMdev] llvm 'select' instruction
hi Clemens Hammacher: thank you for your helpful answer. but i have another question about this 'select' instruction. i think that in LLVM IR, i can use a branch and two seperate assignments to replace 'select' instruction(am i right?). so is there any compiling option to aviod generate 'select' instruction? -- View this message in context: http://llvm.1065342.n5.nabble.com/llvm-select-instruction-tp56719p56726.html Sent from the LLVM - Dev mailing list archive at Nabble.com.
2002 Aug 02
1
avoiding "for()" loops: a question?
...ve its efficiency and elegance. The following iteratively drops a column from a data frame and applies a function to the reminaing columns. I replaced this for loop: for (y in 1:dim(x)[2]) my.function (x[,-y]) with this: sapply(1:dim(x)[2], function(y) my.function (x[,-y] )) in an attempt to aviod "for()". However, using system.time() to compare performance of the two functions shows no difference in performance over 30 trials with each function on a 500 X 24 matrix (any edge seems in favor of the for loop). (Win 98,PIII,128M,R 1.5.1) Is the issue with the way I used sapply? Is...
2010 Aug 21
2
t.tests on a data.frame using an apply-type function
...<-x[x$site == site, ] results[i]<-apply(x1, 2, function(x1) {t.test(x1[x1$status == "D",], x1[x1$status == "L",])}) results } But I can't figure out how to do the apply function correctly... Also wonder whether there's a way to use the apply-type function and aviod the loop all together. Thanks in advance! Ali
2006 Jul 10
6
Gruff: Display label vertical
Hi, I have stacked Bar graph which has about 20-30 items. I have to name each of these items. But there names/labels are overlapping. Is there any option to make the labels display vertical instead of horizontal? Any other ideas how can I aviod this overlapping? Please suggest. Thanks -- Posted via http://www.ruby-forum.com/.
2004 Dec 19
6
FW: Shorewall and selective access
Shoot! Sorry Tom. I thought I replaced your e-mail address with the shorewall list address. I got it working!!! I finally figured out what I was doing wrong. Pays to write down what I want to accomplish versus flying by the seat mof my pants. The ACCEPT+ is G R E A T! Took care of some of my issues along with removing the redirect rule (yeah, yeah...I should have thought it over more
2013 Apr 14
0
[LLVMdev] llvm 'select' instruction
Hi Dong, try turning optimizations on. I get the select then: > └─[$]› echo 'int min(int a, int b) { return a < b ? a : b; }' | clang -xc -O1 -S -emit-llvm -o - - > ; ModuleID = '-' > target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" >
2013 Apr 14
0
[LLVMdev] llvm 'select' instruction
On 04/14/2013 02:17 PM, Dong Chen wrote: > hello guys: > i am thinking about what kind of C instructions can turn into llvm IR > 'select' instruction. > i tried "d=a?b:c" and compiled it using clang, i still didn't get 'select' > is there anybody who knows this? > thank you Did you try to compile this with optimization enabled? (at least -O1) For
2013 Apr 14
0
[LLVMdev] llvm 'select' instruction
Hi, If you run the simplify-cfg pass, select instructions should get generated. Regards, Sam On 14/04/2013 14:17, Dong Chen wrote: > hello guys: > i am thinking about what kind of C instructions can turn into llvm IR > 'select' instruction. > i tried "d=a?b:c" and compiled it using clang, i still didn't get 'select' > is there anybody who knows this?
2007 Nov 29
0
Doing PCA
...################################# #scale profiles OGSscaled = rangescale(OGS) #do PCA result = prcomp(OGS, center=FALSE) #obtain scores matrix scores=result$rotation #PC1 vs PC2 plot plot(scores[,1], scores[,2], xlab="PC1", ylab="PC2") #add labels (0.005 and 0.003 offset to aviod obscuring points Kind Regards Amit Patel ___________________________________________________________ now. [[alternative HTML version deleted]]
2007 Jun 13
2
Removing Inf and Inf values from a fata frame
Hi, I have a csv file with empty values, when I apply the different functions (mean, std, etc.) I create a new data frame, the empty values generate Inf and -Inf values. How can I remove those Inf and -Inf values from the new data frame? I already specified na.rm in the mean and std functions, but the values are still there. Thank you, Judith
2006 Mar 03
0
Multicast only working in promiscuous mode
...FIG_SYN_COOKIES=y CONFIG_INET_AH=y CONFIG_INET_ESP=y CONFIG_INET_IPCOMP=y The server is also used as a firewall using iptables and iproute2 and thus also serves as a gateway for the uPnP clients. Something is missing, and I do not want the NIC to be in promiscuous mode permanently if it can be avioded. What do I do wrong? Regards Henrik
2013 Jul 02
2
PSON and JSON
HI, i''m currently trying to connect a rails app using the "her" gem/library (since active ressource is gone since rails 4) to Puppet''s REST API. Now, "her" or activeressource both speak json, while Puppet speaks pson, which should be nearly the same according to some posts here. Communication already works but it seems that the response objects are not
2011 Nov 22
3
SUMMARY: mounting datasets from a read-only pool with aid of tmpfs
Hello all, I''d like to report a tricky situation and a workaround I''ve found useful - hope this helps someone in similar situations. To cut the long story short, I could not properly mount some datasets from a readonly pool, which had a non-"legacy" mountpoint attribute value set, but the mountpoint was not available (directory absent or not empty). In this case