search for: corrensponding

Displaying 8 results from an estimated 8 matches for "corrensponding".

Did you mean: coresponding
2011 Oct 14
2
[LLVMdev] get Type of SDValue?
Hi, Once the DAG is built, is there any way to find out what the real type of a certain SDValue is (Type, not just EVT)? And as an example, in the XYZTargetLowering::lowerCall method for my target, is there any way for me to get what Type the SDValue Callee really corrensponds to? Regards, Patrik Hägglund
2006 Jun 19
2
strange digit switching
Hi, I execute the following code snippet.What I don't understand is, that in the first two cases the numbers shown don't correnspondant to the input (though I have set the options to show 22 digits). When I assign the third number which has one place, the display of the numbers is suddenly correct. Can anybody explain what happens here? (this is just a sample, my real problem lies in
2011 Nov 17
2
function sum for array
...g for a function that allows to sum the elements of an array along a dimension that can be different from the classical ones (rows or columns). Let's suppose for example that: - A is an array with dimensions 2 x 3 x 4 - I want to compute B, a 2 x 3 matrix with elements equal to the sum of the corrensponding elements on each of the 3 strata. I've tried to use apply(A,3,sum) but the result is a vector, not a matrix. Another solution is a less elegant B=matrix(rep(0,6),ncol=3) for(t in 1:4) B = B + A[ , , t] May anybody help? S -- ---------------------------------------------------------------...
2011 Oct 14
0
[LLVMdev] get Type of SDValue?
Hello Patrik, > And as an example, in the XYZTargetLowering::lowerCall method for my target, is there any way for me to get what Type the SDValue Callee really corrensponds to? Why do you need this information there? -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
2000 Jul 18
5
scp not shutting down in 2.1.1p4
Hi! as I just noted, after scp the connection does not shut down properly. When I do a "scp file targethost:path", on targethost a "sshd" process is left running. I do use --with-default-path="/usr/local/openssh/bin:/usr/bin:/usr/local/bin" to assure, that the corrensponding openssh-scp is used. It also seems, that normal sessions are not always closed properly. I run OpenSSH 2.1.1p4 (with the startup_pipe = -1; patch posted yesterday, but that should not matter here) on HP-UX 10.20. Any ideas what to do or what to look for? The behaviour occurs with both ssh-1.2.27...
2011 Nov 02
4
array manipulation
Hello, I'm at the very beginning of the learning process of this language. Sorry in advance for the (possible but plausible) stupidity of my question. I would like to find a way to permute the DIMENSIONS of an array. Something that sounds like the function "permute()" in matlab. Given an array C of dimensions c x d x T , for instance, the command permute(C, [2 1 3]) would provide
2013 Apr 07
0
Fitting distributions to financial data using volatility model to estimate VaR
..., so I have sigma_1,sigma_2,...,sigma_n,. I can calculate the VaR via (mu constant, z_alpha quantile of standard normal): VaR_(alpha,t)=mu+sigma_t * z_alpha. This is in case, I have losses, so I look at the right tail. So for each day I have a normal density with a constant mu but a different sigma corrensponding to the volatility model. Let's assume a very simple volatility model, e.g. (empirical) standard deviation of the last 10 days and the mu is set to zero. The R code could look like (data): volatility<-0 quantile<-0 for(i in 11:length(dat)){ volatility[i]<-sd(dat[(i-10):(i-1)]) } for(i...
2012 Feb 28
6
[Bug 773] New: iptables performance limits on # of rules using ipset
...pset -N UDP-x ipportiphash --network 129.129.0.0/22 where x is from 1 to X - add X number of iptables rules each of which matching on one of the above created ipsets: iptables -I FORWARD 1 -m set --match-set UDP-x src,src,dst -j ACCEPT; where x is from 1 to X When X is up to 24 (i.e. 24 ipsets and corrensponding 24 iptable rules), the average latency of packets forwarded thought the system is in the order of 100us (micro seconds) and no packets are dropped. This result is close to the case where the are no iptables rules at all. When X is around 29 or above, the latency of the very same system (no other...