search for: gr5

Displaying 13 results from an estimated 13 matches for "gr5".

Did you mean: gr
2003 Jan 22
3
Error when using polr() in MASS
Dear all, I get an error message when I use polr() in MASS. These are my data: skugg grupp frekv 4 1 gr3 0 5 2 gr3 3 6 3 gr3 6 10 1 gr5 1 11 2 gr5 12 12 3 gr5 1 > > summary(polr(skugg ~ grupp, weights=frekv, data= skugg.cpy1.dat)) Error in optim(start, fmin, gmin, method = "BFGS", hessian = Hess, ...) : non-finite value supplied by optim Does this depend on the very few observations...
2004 Jun 22
0
[LLVMdev] Linearscan allocator bug?
...from the > function entry till the jump. Okay, I see the problem. You need to tell the compiler that the conditional branches are terminators. You're getting code that looks like this: <LBB7> // // shortcirc_next.0.selectcont.selectcont gr1 = gr1; gr1 = gr1; gr5 = 0; gr2 - gr5; if <>0 goto LBB11; * gr2 = gr4; * gr5 = gr1; * gr6 = gr4; * gr1 = gr1; goto LBB8; I'm guessing that those copies are inserted by the register allocator, and in particular, that is probably where gr6 is supposed to get it'...
2004 Jun 22
3
[LLVMdev] Linearscan allocator bug?
...r6 the predecessor in at line 285 and the code in shortcirc_next.0.selectcont is (line 268) %gr4 = move %gr2 while I'd expect destination register should be gr6. In fact, gr6 is first used here (line 289): if <>0 goto %disp(label shortcirc_done.1) %gr2 = move %gr4 %gr5 = move %gr1 %gr6 = move %gr4 %gr1 = move %gr1 So, it's possible that jump goes to shortcirc_done.1 which then uses gr6 and gets back results. Any ideas? - Volodya -------------- next part -------------- target endian = little target pointersize = 32 %.str_1 = internal constant [32 x sbyt...
2004 Jun 09
2
[LLVMdev] Saving registers used by function
Hello! Is there an (semi)automatic way to save registers used by a function? For example, on my target I have to store ar0-ar4 and gr0-gr4, gr5, gr6. For now I just emit huge prologue code to push them all to stack -- even if they are not modified at all. Is there a way to tell LLVM which registers must be stored, and have it automatically issue pushes/pops? I can live with current design, just wondering. - Volodya
2004 Jun 23
3
[LLVMdev] Linearscan allocator bug?
...> > Okay, I see the problem. You need to tell the compiler that the > conditional branches are terminators. You're getting code that looks like > this: > > <LBB7> // // shortcirc_next.0.selectcont.selectcont > gr1 = gr1; > gr1 = gr1; > gr5 = 0; > gr2 - gr5; > if <>0 goto LBB11; > * gr2 = gr4; > * gr5 = gr1; > * gr6 = gr4; > * gr1 = gr1; > goto LBB8; > > I'm guessing that those copies are inserted by the register allocator, and > in particular, tha...
2008 Jun 11
1
Problem when combining dotplot() and textplot() using grid
...ntains the dotplot as well as a textplot() (using package gplots) of the data.frame next to the dotplot. Example code: library(lattice) library(grid) library(gplots) xx <- data.frame(f=factor(rep(1:5, each=5)), gr= rep(c("gr1", "gr2", "gr3", "gr4", "gr5"), 5), val=rnorm(25)) grid.newpage() pushViewport(viewport(layout = grid.layout(1, 2))) pushViewport(viewport(layout.pos.col=1, layout.pos.row=1)) p <- dotplot(f ~ val, groups=gr, xx, cex=1.7, pch=20) print(p, newpage=FALSE) popViewport(1) pushViewport(viewport(layout.pos.col=2, la...
2004 Jun 09
0
[LLVMdev] Saving registers used by function
On Wed, 2004-06-09 at 04:56, Vladimir Prus wrote: > Hello! > Is there an (semi)automatic way to save registers used by a function? For > example, on my target I have to store ar0-ar4 and gr0-gr4, gr5, gr6. For now > I just emit huge prologue code to push them all to stack -- even if they are > not modified at all. > > Is there a way to tell LLVM which registers must be stored, and have it > automatically issue pushes/pops? I can live with current design, just > wondering....
2004 Jun 09
2
[LLVMdev] Saving registers used by function
Alkis Evlogimenos wrote: > On Wed, 2004-06-09 at 04:56, Vladimir Prus wrote: > > Hello! > > Is there an (semi)automatic way to save registers used by a function? For > > example, on my target I have to store ar0-ar4 and gr0-gr4, gr5, gr6. For > > now I just emit huge prologue code to push them all to stack -- even if > > they are not modified at all. > > > > Is there a way to tell LLVM which registers must be stored, and have it > > automatically issue pushes/pops? I can live with current design,...
2004 Jul 01
3
[LLVMdev] Operand constraints
On my target, the multiplication can involve all general purpose registers, but there's are still some restrictions: the first and the second operand as well as the result must be in different registers, and neither register can be gr7. How can I enforce this restriction on the register allocator? - Volodya
2004 Oct 02
12
[Bug 938] "AllowGroups" option and secondary user's groups limit
...ndrot.org ReportedBy: coil93 at mail.ee Linux Suse 9.1, nss_ldap version 215, pam_ldap version 169, openldap version 2. 2.17 OpenSSH can't handle more than 5 groups via pam_ldap authentication. For example: user john has primary group gr1 and belongs to secondary groups gr2,gr3,gr4,gr5 in LDAP database. sshd_config: AllowGroups 5 UsePAM yes /etc/pam.d/sshd auth required pam_unix2.so # set_secrpc auth required pam_nologin.so auth required pam_env.so account required pam_unix2.so account required pam_nologin.so password required...
2004 Jun 09
0
[LLVMdev] Saving registers used by function
...26, Vladimir Prus wrote: > Alkis Evlogimenos wrote: > > On Wed, 2004-06-09 at 04:56, Vladimir Prus wrote: > > > Hello! > > > Is there an (semi)automatic way to save registers used by a function? For > > > example, on my target I have to store ar0-ar4 and gr0-gr4, gr5, gr6. For > > > now I just emit huge prologue code to push them all to stack -- even if > > > they are not modified at all. > > > > > > Is there a way to tell LLVM which registers must be stored, and have it > > > automatically issue pushes/pops? I can l...
2002 Jul 15
1
特价电脑配件、手提电脑、手机,货到付款
...56M/30G/DVD+RWÍâÖÃ/56K/100M/14.1"1394/1.7KG/³¬Çᳬ±¡)9500Ôª 505JS(P3 850/256M/30G/56K/100M/12.1"XGA/1394/8XDVD+RW/1.6KG/ËÍ;µ××ù) 6500Ôª 505DL (P3 1G/256M/30G/56K/100M/12.1"XGA/1394/8XDVD+RW/1.6KG/ËÍ;µ××ù) 7500Ôª GR3/F (P3M1G/256M/40G/DVD+RW/14.1"TFT/56K/100M/2.5KG/NOFDD) 6100Ôª GR5/F (P3M1.13G/40G/256M/DVD+RW/14.1"TFT/56K/100M/2.5KG/NOFDD) 7500Ôª 3.IBM A31-H5A(PIV1.6G/256M/60G/15.1"TFT/56K/DVDRW,FDD/10-100MÎÞÏßÍø¿¨3KG)18800Ôª T23-2TA/I73 (P3 1G/128M/20G/14.1"TFT/56K/DVD,FDD/10-1000M2.4KG)8750Ôª T23-8NA (P3 1.13G/128M/30G/14.1"TFT/56K/DVDFDD/10-100Íø¿¨2.4KG...
2009 Aug 02
3
[PATCH 1/4] drm/nouveau: refactor VGA font save/restore
...ioread32_native(iovram + i * 4); + } else { + iowrite32_native(dev_priv->saved_vga_font[plane][i], + iovram + i * 4); + } + } +} + void nouveau_hw_save_vga_fonts(struct drm_device *dev, bool save) { - struct drm_nouveau_private *dev_priv = dev->dev_private; uint8_t misc, gr4, gr5, gr6, seq2, seq4; bool graphicsmode; - int i; + unsigned plane; + void __iomem *iovram; if (nv_two_heads(dev)) NVSetOwner(dev, 0); @@ -552,10 +572,19 @@ nouveau_hw_save_vga_fonts(struct drm_device *dev, bool save) graphicsmode = NVReadVgaAttr(dev, 0, NV_CIO_AR_MODE_INDEX) & 1; NVSe...