Displaying 4 results from an estimated 4 matches for "pold".
Did you mean:
old
2013 Feb 13
3
match in dependence of 2 columns
...50
And now i want to match the value to data.frame 2 in dependence of cu.nr.
and name.
data.frame2
cu.nr. name
A 33 Evo
B 1 Mer
C 1 Pold
as you can see, there is only one row with equal cu.nr. and name. How can i
match the data as desired?
The solution has to look like this one:
cu.nr. name Value
A 33 Evo
B 1...
2002 Feb 20
1
Is there a way to tell the sshd to ignore the security check on t he user's home permissions?
Is there a way to tell the sshd to ignore the security check on the user's
home permissions?
debug3: secure_filename: checking '/ftpdata/pxdata/pold/data/.ssh'
debug3: secure_filename: checking '/ftpdata/pxdata/pold/data'
Authentication refused: bad ownership or modes for directory
/ftpdata/pxdata/fold/data
debug1: restore_uid
debug2: userauth_pubkey: authenticated 0 pkalg ssh-dss
Failed publickey for bold from 3.72.144.164 port 120...
2013 Jul 28
0
[LLVMdev] [Polly] Analysis of the expensive compile-time overhead of Polly Dependence pass
...>
> + if (Parameter->getSCEVType() == scAddRecExpr) {
> + int index, maxIndex = Parameters.size();
> + const SCEVAddRecExpr *AR = cast<SCEVAddRecExpr>(Parameter);
> +
> + for (index = 0; index < Parameters.size(); ++index) {
> + const SCEV *pOld = Parameters[index];
> +
> + if (pOld->getSCEVType() != scAddRecExpr)
> + continue;
> +
> + const SCEVAddRecExpr *OAR = cast<SCEVAddRecExpr>(pOld);
> + if (AR->getNumOperands() != OAR->getNumOperands())
> + continue;
> +...
2013 Jul 26
6
[LLVMdev] [Polly] Analysis of the expensive compile-time overhead of Polly Dependence pass
Hi Sebastian,
Recently, I found the "Polly - Calculate dependences" pass would lead to significant compile-time overhead when compiling some loop-intensive source code. Tobias told me you found similar problem as follows:
http://llvm.org/bugs/show_bug.cgi?id=14240
My evaluation shows that "Polly - Calculate dependences" pass consumes 96.4% of total compile-time overhead