similar to: [LLVMdev] Problems with paged registers and seperated program and data memory

Displaying 20 results from an estimated 1000 matches similar to: "[LLVMdev] Problems with paged registers and seperated program and data memory"

2010 Oct 30
1
writable = yes for Profiles in smb.conf.default
Hello all I'm suggesting to add line 'writable = yes' for Profiles share in file examples/smb.conf.default. Then the complete share def looked like ;[Profiles] ; path = /usr/local/samba/profiles ; browseable = no ; guest ok = yes ; writable = yes The reason is simply I spent two days figuring out why my Samba PDC did not work. That line was missing. Not very clever, I
2010 Jul 28
1
BUG: Unknown internal error
Hi, I saw this BUG message in the logfile (only one time). dovecot: IMAP(xxx): FETCH for mailbox INBOX UID 4572 failed to read message input: Input/output error dovecot: IMAP(xxx): Disconnected: BUG: Unknown internal error isp=xxx lip=xxx rip=xxx bytes=117/341182 No core file. v1.2.12 Maildir on NFS Debian 32Bit -- Neu: GMX De-Mail - Einfach wie E-Mail, sicher wie ein Brief! Jetzt
2010 Aug 19
0
Xend dont start anymore
Dear Xen Users, at first, sorry for my bad english and in fact my post is wrong here, please light me the way to the right board. My Xen Host runs since two years without a problem. As of today, some v-servers was not reachable anymore. I did a short xm top and got dozen of erros. I did a reboot of the Host. Thereafter i get the same error messages when trying to start xend (/etc/init.d/xend
2011 Jan 01
2
(XEN) physdev.c:61: dom1: map invalid irq 1251
Hello, i''m using the latest Xen 4.0 testing from the mercurial repository and i want to passthrough my Intel Core gpu. But somehow it has a weird IRQ of 1251. So i cant start the vm if i set pci=[''00:02.0'']. The device is bound to the pciback driver correctly. The interesting part of xm dmesg (appears when i start the vm): (XEN) [VT-D]iommu.c:1484: d0:PCI: unmap bdf =
2011 Jan 01
2
(XEN) physdev.c:61: dom1: map invalid irq 1251
Hello, i''m using the latest Xen 4.0 testing from the mercurial repository and i want to passthrough my Intel Core gpu. But somehow it has a weird IRQ of 1251. So i cant start the vm if i set pci=[''00:02.0'']. The device is bound to the pciback driver correctly. The interesting part of xm dmesg (appears when i start the vm): (XEN) [VT-D]iommu.c:1484: d0:PCI: unmap bdf =
2010 Sep 17
3
access VMX config on esxi with virsh
Hi, Is virsh able to access the VMX config of a virtual machine running on a esxi host? I would like to take backups of my virtual machine configs and the doku section "Converting from VMware VMX config to domain XML config" (http://libvirt.org/drvesx.html) comes close to this - but does not tell how to get access to the vmx file. I would prefer a solution where ssh access to the
2010 Aug 02
1
QQ-plot – Axes
I would like to change the position of the major tick marks in my qq-plot? Right now the ticks are set at 5.5, 6.0, 6.5 and 7.0. I would like them to be at 5.4, 5.6, 5.8, 6.0, 6.2, 6.4, 6.8 and 7.0. So I would have to remove some of the present ticks. So far I can only add ticks to the plot with: axis(1,at=c(5.4, 5.6, 5.8, 6.0, 6.2, 6.4, 6.8, 7.0)) Is there a solution to my
2008 Mar 28
0
[08/17][PATCH] kvm/ia64: Add interruption vector table for vmm.
Hi, Xiantao a comments is below. >+// 0x3000 Entry 12 (size 64 bundles) External Interrupt (4) >+ENTRY(kvm_interrupt) >+ mov r31=pr // prepare to save predicates >+ mov r19=12 >+ mov r29=cr.ipsr >+ ;; >+ tbit.z p6,p7=r29,IA64_PSR_VM_BIT >+ tbit.z p0,p15=r29,IA64_PSR_I_BIT >+ ;; >+(p7) br.sptk kvm_dispatch_interrupt >+ ;; >+ mov
2008 Mar 28
0
[08/17][PATCH] kvm/ia64: Add interruption vector table for vmm.
Hi, Xiantao a comments is below. >+// 0x3000 Entry 12 (size 64 bundles) External Interrupt (4) >+ENTRY(kvm_interrupt) >+ mov r31=pr // prepare to save predicates >+ mov r19=12 >+ mov r29=cr.ipsr >+ ;; >+ tbit.z p6,p7=r29,IA64_PSR_VM_BIT >+ tbit.z p0,p15=r29,IA64_PSR_I_BIT >+ ;; >+(p7) br.sptk kvm_dispatch_interrupt >+ ;; >+ mov
2010 Oct 05
1
Tukey HSD Test als Post Hoc Test nach einem GLM inkl. Anova
Hallo, zur Analyse von Daten zum Artenreichtum von Pflanzen, habe ich ein Glm (glm) und anschlie?end eine Anova (anova) durchgef??hrt. Nun m??chte ich f??r die signifikanten Einflussfaktoren einen Post Hoc Tukey Test durchf??hren, um zu ermitteln in wie weit die einzelnen Faktorstufen sich signifikant voneinander unterscheiden. Mit dem Befehl (TukeyHSD) komme ich nicht
2012 Aug 09
2
[LLVMdev] MI bundle liveness attributes
Hi Sergei, It seems to me that you can represent the semantics of a conditional instruction by adding a use of the conditionally defined register to the instruction. The value of the output register of an instruction is either the value of the instruction if it was conditionally executed or the value of the output register before the instruction. The Bundle would be: BUNDLE %PC<imp-def>,
2012 Aug 09
0
[LLVMdev] MI bundle liveness attributes
Arnold, Interesting point. This fake use would also need to be probably marked as isUndef(), but I could not foresee all possible corner cases from that. Could it be overly conservative? Would I lose the ability of some sort "predicate value propagation" that I seem to gain from introduction of an explicit flag? Can someone comment? Thanks. Sergei -- Qualcomm Innovation Center,
2012 Aug 09
0
[LLVMdev] MI bundle liveness attributes
Hello everyone, Let me (re)present a question that might have previously been discussed, but did not result in any code (AFIK). How do we represent a _conditional_ assignment (def) in a bundle MI? More contents - currently we expose internal def/use/kill information to a bundle header - something like this: BUNDLE %PC<imp-def>, %R0<imp-def>, %P0<imp-use,kill>,
2012 Aug 13
0
[LLVMdev] MI bundle liveness attributes
Andy, Yes, this is what Arnold has suggested also, and from this point it looks like it should work, but it will require parsing the bundle every time we care to know whether this is a real use or a conditional def. This might become awkward... but I guess I should provide a better use case to prove my point. Sergei -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum. >
2012 Aug 10
2
[LLVMdev] MI bundle liveness attributes
Hi Sergei. If an instruction conditionally writes R0 then I think it needs to implicitly use R0 for proper liveness Andy On Aug 9, 2012, at 9:48 AM, Sergei Larin <slarin at codeaurora.org> wrote: > > Hello everyone, > > Let me (re)present a question that might have previously been discussed, > but did not result in any code (AFIK). > > How do we represent a
2009 Aug 01
3
Low fps or no login on Shaiya
im useing ubuntu 8.10, on windows i got 20-40fps in towns and on ubuntu i got 2-7fps in towns, useing wine 1.0.1 beacouse any other new wine version gets my game stuck at login looked at this (http://appdb.winehq.org/objectManager.php?sClass=version&iId=10214) page and it seems that it should work on wine 1.1.23 but it doesnt work for me and added those extra dll files wine configuration is
2010 Jul 31
0
Wine and Star Craft 2 not working from DVD
I Installed the new star craft from the dvd. I have tried it with settings for every version of windows from XP up on both the normal wine and wine with the patch mentioned in the app db. It crashes with the unpatched version and with the patched version it correctly shows the loading screen but when it comes to the menu the screen is just a bunch of random colors, NOT THE MENU, the ENTIRE screen
2010 Nov 01
1
oplocks failed if user is not the owner of the file?
I have some identical windows 7 clients. All connected to Samba 3.5.4-1.1-2382-SUSE-SL11.0. If I'm the windows-owner of the file, swat shows me under "oplock" "exclusive+batch". Other users get: "none". What is the reason for this? ___________________________________________________________ Neu: WEB.DE De-Mail - Einfach wie E-Mail, sicher wie ein Brief! Jetzt
2010 Jul 21
1
"lmomRFA" package: error bounds/confidence intervals
Dear List I?m using the ?lmomRFA? package to fit different distributions to my data sample. To calculate the error bounds I used: regsimq(?) and sitequantbounds(?) So my questions are: Are error bounds and confidence intervals the same thing? And: Does regsimq(? boundprob = c(0.05, 0.95)) calculate the 90 or the 95% confidence interval? If error bounds and confidence intervals are
2011 Jan 17
1
intercept point coordinates
Hi List, Can someone help me to calculate the coordinates of the red and green points? In this example I found their approximate location by trying, but as I have to analyse many similar curves, I?d rather calculate the exact location. data<- c(0.008248005, 0.061242387, 0.099095516, 0.189943027, 0.227796157, 0.258078661, 0.280790538, 0.303502416, 0.386779301, 0.454914934, 0.545762445,