search for: saumya

Displaying 6 results from an estimated 6 matches for "saumya".

2020 Jan 31
2
Disabling select instructions
...ive you a fairly complete list. > > It may be better to let the optimization pipeline proceed undisturbed, > but then run a custom pass at the end that turns selects back into > control flow. This would be an easy pass to write. > > John > > > On 1/30/20 3:31 PM, Charitha Saumya via llvm-dev wrote: > > Hi, > > > > I would like to know if there's a way to avoid select instructions > > during the IR generation. What are the optimization passes that can > > result in a select instruction? > > i.e. I want to preserve branches in my code...
2005 Jan 27
1
Newbie question - limit bandwidth of a link.
I just want to limit bandwidth on a particular link. Specifically, one machine (PC1) is on wired LAN and other (PC1) on a WLAN, acess point for which is on the same LAN. Both machines have static ip addresses (AD1 and AD2) and I want to limit the bandwidth utilization of certain udp traffic from PC2 to PC1. Is is possible to do this using iptables and tc (controlling from PC1 as that has both
2020 Jan 30
2
Disabling select instructions
Hi, I would like to know if there's a way to avoid select instructions during the IR generation. What are the optimization passes that can result in a select instruction? i.e. I want to preserve branches in my code without disabling any other optimizations applicable. For example, void foo(int* x, int* y){ if(*x > 0){ *y = *x + 10; } else{ *y = *x + 20; } }
2012 Dec 21
1
How to run chaid in R
Could you please let me know how to run chaid in R.     Thanks, Saumyha [[alternative HTML version deleted]]
2005 Mar 10
3
Saving iproute2
Thank you Bert, and Wichert. I know I can put my iproute2 commands in /etc/rc.local. Is there any other place I can save my commands? I just want know so I do not have to retype all of the command on reboot. Thx again Mike Tedesco _______________________________________________ LARTC mailing list LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
2012 Dec 20
2
Filling Lists or Arrays of variable dimensions
Following problem: Say you have a bunch of parameters and want to produce results for all combinations of those: height<-c("high","low") width<-c("slim","wide") then what i used to do was something like this: l<-list() for(h in height){ l[[h]]<-list() for(w in width){ l[[h]][[w]] <- doSomething() } } Now those parameters aren't