search for: ac2

Displaying 20 results from an estimated 38 matches for "ac2".

Did you mean: ac
2003 Jan 28
0
OOPS on 2.4.20-ac2
Hi, I got the OOPS below on my laptop running vanilla 2.4.20-ac2; I had to copy it byhand so it may not be 100% accurate. It hasn't happened again, and this is the first problem I've had with this kernel (or any other kernel, for that matter.) Anyway, I'm not sure, if a) this is actually an ext3 problem, b) OOPS reports of 2.4.20-ac2 are of any int...
2002 Dec 22
2
2.4.20, 2.4.21-pre2 and 2.4.20-ac2
Greetings, I have just tested Syslinux 1.75 and Syslinux 2.00 on a floppy disk that worked fine with Kernel 2.4.19 on a 1.44Mb floppy disk (the kernel about 1.1Mb in size). I decided to update the Kernel to the new 2.4.20 (as well as 2.4.21-pre2 and 2.4.20-ac2) which I tested to work fine when booting from the HDD using Lilo, but when I took my original disk that used 2.4.19 and replaced the Kernel with the new one (and then updating the syslinux installation on the floppy), the boot gets to a certain point on the loading of the Kernel and stops, saying...
2005 Aug 04
1
Where the error message comes from?
...+(m-1)*ae1[2,3]) if (re1 < 0) re1 <- 0 ve1 <- var(d1[,3]) me1 <- as.vector(by(d1[,3],as.numeric(d1[,1]),mean)) re1p <- 1- m*sum(me1*(1-me1))/(k*(m-1)*mean(me1)*(1-mean(me1))) ve1m <- ve1*(1+(m-1)*re1)/(k*m) ## CONTROL ## r2 <- cor(d2[,2:3])[1,2] # COST # ac2 <- anova(lm(c~g,d2)) rc2 <- (ac2[1,3]-ac2[2,3])/(ac2[1,3]+(m-1)*ac2[2,3]) if (rc2 < 0) rc2 <- 0 vc2 <- var(d2[,2]) mc2 <- as.vector(by(d2[,2],as.numeric(d2[,1]),mean)) vc2m <- vc2*(1+(m-1)*rc2)/(k*m) # EFECT # ae2 <- anova(lm(e~g,d2)) re2 <- (ae2...
2008 Aug 04
1
Decomposing tests of interaction terms in mixed-effects models
...)) summary(aov(Y ~ Error(Block) + A*C, data = example)) # Significant 2-way interaction. Now we would like to test the effect # of A at C1 and the effect of A at C2. Construct two new variables # that decompose the interaction, so an LRT is possible. example$AC <- example$AC1 <- example$AC2 <- interaction(example$A, example$C) example$AC1[example$C == "C1"] <- "A1.C1" # A is constant at C1 example$AC2[example$C == "C2"] <- "A1.C2" # A is constant at C2 # lme fails (as does lmer) lme(Y ~ AC1 + AC, random = ~ 1 | Block, data = examp...
2012 Mar 04
1
Could not compute QR decomposition of Hessian.
...turns me the following warning message: In sem.default(ram = ram, S = S, N = N, param.names = pars, var.names = vars, : Could not compute QR decomposition of Hessian. Optimization probably did not converge. ######### Model ######## mDPDF = data.frame(mj1,mj2,mj3,mj4,mj5,eL1,eL2,eL3,eL4,eL5,aC1,aC2,aC3,aC4,disR1,disR2,disR3,disR4,disR5, difR1,difR2,difR3,difR4,difR5,difR6,dC1,dC2,dC3,dC4,aB1,aB2,aB3,aB4,aB5,deh1,deh2,deh3,deh4) mydata.cov <- cov(mDPDF) model.mydata <- specify.model() MJ -> mj1, NA, 1 MJ -> mj2, lam2, NA MJ -> mj3, lam3, NA MJ -> mj4, lam4, NA MJ -> mj5, l...
2018 Jan 28
0
Polly Dependency Analysis in MyPass
...auto &LI2 = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); auto &AA2 = getAnalysis<AAResultsWrapperPass>().getAAResults(); auto const &DL2 = F.getParent()->getDataLayout(); auto &DT2 = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); auto &AC2 = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); Result.reset(new ScopInfo{DL2, SD2, SE2, LI2, AA2, DT2, AC2}); polly::DependenceInfoWrapperPass dp; auto &SI = *getAnalysis<polly::ScopInfoWrapperPass>().getSI(); for (auto &It : SI) { assert(It.second &...
2001 Jul 13
2
0.9.2 or 0.9.3 ?
Hi, I found out that a new version of ext3-2.4 was available from the previous messages on this list, despite the fact that no 'official' announce was given... I'm currently running 0.9.1 on 2.4.6-ac2 without problems. Should I upgrade to 0.9.2 (I suppose yes by reading the changelog :-)) ? What about the 0.9.3-pre version ? What does the -pre mean exactly (any incidence on the stability ? and what about the -ac version ?) Stelian. -- Stelian Pop <stelian.pop@fr.alcove.com> |------------...
2018 Jan 28
4
Polly Dependency Analysis in MyPass
Hello, I need to analyze dependencies in my llvm ir by using polly. i created a new pass called mypass there i added polly dependency analysis pass but when i execute this pass in gdb i get no data. Why is that so? My code is follows; namespace { struct mypass : public FunctionPass { static char ID; mypass() : FunctionPass(ID) { } virtual bool runOnFunction(Function &F) {
2018 Jan 28
1
Polly Dependency Analysis in MyPass
...etAnalysis<LoopInfoWrapperPass>().getLoopInfo(); > auto &AA2 = getAnalysis<AAResultsWrapperPass>().getAAResults(); > auto const &DL2 = F.getParent()->getDataLayout(); > auto &DT2 = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); > auto &AC2 = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); > > Result.reset(new ScopInfo{DL2, SD2, SE2, LI2, AA2, DT2, AC2}); > > > polly::DependenceInfoWrapperPass dp; > > auto &SI = *getAnalysis<polly::ScopInfoWrapperPass>().getSI(); > > for (aut...
2001 Jul 18
2
Patch for latest ac release?
Lo, Is there already a patch out for latest 2.4.6-ac release? I'm pretty sure that the ext3 patch -ac2 can not be applied on this release. Bye. -- the trees the birds the air the grass the water the flies the trees
2008 May 14
1
no suitable decoder for audio codec 2
hello i tried both swfdec-0.6.6 and current git with full gstreamer install as well as with libmad. however, i get the below error message: swfdec_codec_audio.c(205): swfdec_audio_decoder_new: no suitable decoder for audio codec 2 i'm not shure if 'audio codec 2' means AC2? with gst-inspect, i find only one related tag: ffenc_ac3. what's missing here? dennis
2002 Jan 22
1
ext3-2.4-0.9.17-2418p3 patch and 2.4.18 pre 4
The ext3-2.4-0.9.17-2418p3 patch applies with 0 fuzz against both 2.4.18 pre 4 and 2.4.18 pre3-ac2. Will it be included into 2.4.18 pre 5? -- Ralf Hildebrandt (Im Auftrag des Referat V A) Ralf.Hildebrandt@charite.de Charite Campus Virchow-Klinikum Tel. +49 (0)30-450 570-155 Referat V A - Kommunikationsnetze - Fax. +49 (0)30-450 570-916 "Debugging is antici...
2002 Feb 27
1
Quotas and Win98 clients
Dear all, I've successfully setup a Samba 2.2.3a file server with quota support on a RedHat Linux 7.1 with Kernel 2.4.18-ac2. Win NT clients (NT, 2K, XP) works fine, and samba report the quota per user as disk capacity. But Win98/ME clients don't. Samba report the filesystem capacity, and even worse, users can bypass their quotas ! I solved the problem using a dfree script written in perl, but I'd like to kno...
2023 Dec 12
4
[Bug 3643] New: order_hostkeyalgs can't find host-key in KnownHostsCommand if it contains port
...Product: Portable OpenSSH Version: 9.5p1 Hardware: Other OS: Linux Status: NEW Severity: enhancement Priority: P5 Component: ssh Assignee: unassigned-bugs at mindrot.org Reporter: glance+mindrot at ac2.se I have a KnownHostsCommand which emits : [targethost]:1234 ssh-rsa ... ssh -vvv -o KnownHostsCommand=cmd -p 1234 targethost shows: ... debug1: Authenticating to targethost:9022 as 'user' debug3: put_host_port: [targethost]:9022 debug3: subprocess: KnownHostsCommand-ORDER command "...
2018 Jan 29
1
Polly Dependency Analysis in MyPass
...auto &LI2 = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); auto &AA2 = getAnalysis<AAResultsWrapperPass>().getAAResults(); auto const &DL2 = F.getParent()->getDataLayout(); auto &DT2 = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); auto &AC2 = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); Result.reset(new ScopInfo{DL2, SD2, SE2, LI2, AA2, DT2, AC2}); polly::DependenceInfoWrapperPass dp; auto &SI = *getAnalysis<polly::ScopInfoWrapperPass>().getSI(); for (auto &It : SI) { assert(It.second &a...
2018 Jan 29
0
Polly Dependency Analysis in MyPass
How do you compile the code? Within the Polly subdirectory using CMake? How do you run your pass. Using "opt -mypass inputfile.ll"? Michael 2018-01-28 9:30 GMT-06:00 hameeza ahmed via llvm-dev <llvm-dev at lists.llvm.org>: > Hello, > > I need to analyze dependencies in my llvm ir by using polly. i created a new > pass called mypass there i added polly dependency
2003 Feb 02
1
ext3 performance issue with a Berkeley db application
...lems; on the machine that needs 24 minutes to build from a 200-Mb mbox, rebuilding the database from a list of tokens took eight seconds -- this was on ext3 in ordered mode. These data were obtained on machines running linux kernels 2.4.21-pre3-ac4 and -ac5 and 2.4.21-pre4-ac1; kernel 2.4.20-ac2 appears to give similar results though this has not been thorougly tested. Results like those reported were initially obtained with db-3.1.17; the tests shown here used db-4.1.25. More info available on request; tuning hints most gratefully received and tested. -- | G r e g L o u i s...
2010 Jul 05
15
Assassins Creed2
any one knows how to INSTALL assassins Creed2?? when i run the installation file with WINE it says There is no windows program configured to open this type of file. can some one help please? this happens when i run the setup.exe and the autprun is not working well Btw the DvD is duallayer first when i inserted the DvD into the normal DvD rom it dint work well. this time it works but it says that
2006 Jul 18
0
Bug in acts_as_list?
...is set to act as a list. In this scenario, I believe that the queries that Acts::List generate are invalid, caused by IDs being strings rather than integers. System info: Rails: 1.1.4 MySQL: 4.0.26 This is the failing query: mysql> SELECT * FROM children WHERE (parent_id = e73fd179-e412-452e-8ac2-b7aac4db4ed4) ORDER BY position DESC LIMIT 1; ERROR 1064: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ''ac2-b7aac4db4ed4) ORDER BY position DESC LIMIT 1'' at line 1 However, if you put the I...
2001 Oct 24
0
Ext3 Patch for 2.4.13
Hi. Is there any ext3 patch for Kernel 2.4.13 out there. I'v been searchin all day for the patch, but can't find any then patch for 2.4.13-ac2 and others. Do they work with 2.4.13? Could anyone please mail me the link if it's avaiable. Thanks. Cheers, :0) best regards, Svavar Orn Reykjavik - Iceland svavar@fiton.is