search for: clone1

Displaying 9 results from an estimated 9 matches for "clone1".

Did you mean: clone
2008 Sep 24
2
Why horizontal bars instead of a line
Hey list! It looks simple, though it's not possible for me to plot the following properly: (some made-up data) GrSe Clone1 Clone2 Clone3 Clone4 Clone... G1999 2 3 6 5 G2000 2 5 7 4 G2001 5 3 7 3 G2002 4 5 8 3 G... GrSe=Growing Season. I've read the file as "x" and then tried: plot(x$GrSe,x$Clone1) The output is 4 horizontal bars. Even if I write plot(x$GrSe,x$Clone1,type="n") R is still pl...
2011 Sep 12
1
nested anova<-R chrashing
...tch on twig) and "clone" (/plant genotype) on the survival of eggs (due to predation). Each plant was provided with three different sizes of clutches (45,15,5) and had pseudo-replications of size 15 and 5 on it. _Question 1: right code for nested Anova_ Here part of the code I used: clone1<-as.factor(ifelse(clone=="Gudrun",1,ifelse(clone=="Loden",2,ifelse(clone=="021",3,4)))) plant1<-as.factor(ifelse(plant==1,1,ifelse(plant==2,2,ifelse(plant==3,3,ifelse(plant==4,4,ifelse(plant==5,5,ifelse(plant==6,6, ifelse(plant==7,7,ifelse(plant==8,8,ifelse(pla...
2014 Nov 20
2
Libvirt Live Migration
I'm trying to implement a virtualization API. I was testing migration with libvirt I got some problems. When I use the following command : *virsh migrate --live --persistent --copy-storage-all vm-clone1 qemu+ssh://server_ip/system* the migration works fine but in the destination host the migrated vm is paused and I can't unpause it and I need to reboot the vm to be able use it in the new host. When I try to unoause it Igot the following error message: << *Error unpausing domain: interna...
2011 Jun 15
2
[LLVMdev] get LPPassManager to use it in llvm::CloneLoop
...However, I reached another problem. When the loop to be cloned has some subloops, the subloops are not properly cloned. Some clones of the clones are created and the CFG between the cloned basic blocks of the subloops is not correctly built. There are clones like for.body.clone, for.body.clone1, for.body.clone2, ... for.body.clone26 without any predecessor and for.body.clone27, for.body.clone28 .. which are included in the CFG. To be sure I did not mess up the code of CloneLoop I checked also the original version of the function (which requires LPPassManager as parameter)...
2011 Jun 15
0
[LLVMdev] get LPPassManager to use it in llvm::CloneLoop
...er, I reached another problem. When the loop to be cloned has some > subloops, the subloops are not properly cloned. Some clones of the clones > are created and the CFG between the cloned basic blocks of the subloops is > not correctly built. There are clones like for.body.clone,  for.body.clone1, >  for.body.clone2, ...  for.body.clone26 without any predecessor and >  for.body.clone27,  for.body.clone28 ..  which are included in the CFG. > > To be sure I did not mess up the code of CloneLoop I checked also the > original version of the function (which requires LPPassManager...
2014 Nov 24
0
Re: Libvirt Live Migration
[dropping libvir-list] On 20.11.2014 13:11, Dhia Abbassi wrote: > I'm trying to implement a virtualization API. I was testing migration > with libvirt I got some problems. > > When I use the following command : > > *virsh migrate --live --persistent --copy-storage-all vm-clone1 > qemu+ssh://server_ip/system* > * > * > the migration works fine but in the destination host the migrated vm is > paused and I can't unpause it and I need to reboot the vm to be able use > it in the new host. When I try to unoause it Igot the following error > message: &gt...
2014 Nov 24
2
Re: Libvirt Live Migration
...On 20.11.2014 13:11, Dhia Abbassi wrote: > >> I'm trying to implement a virtualization API. I was testing migration >> with libvirt I got some problems. >> >> When I use the following command : >> >> *virsh migrate --live --persistent --copy-storage-all vm-clone1 >> qemu+ssh://server_ip/system* >> * >> * >> the migration works fine but in the destination host the migrated vm is >> paused and I can't unpause it and I need to reboot the vm to be able use >> it in the new host. When I try to unoause it Igot the following...
2011 May 09
0
[LLVMdev] get LPPassManager to use it in llvm::CloneLoop
On Mon, May 9, 2011 at 1:06 AM, Jimborean Alexandra <xinfinity_a at yahoo.com> wrote: > Hi, > > I try to write a FunctionPass that, among other tasks, has to clone some > loops from the current function. > How can I obtain the LPPassManager in order to use the CloneLoop function. > In a LoopPass this is a parameter for the runOnLoop, but how can I obtain it > in a
2011 May 09
2
[LLVMdev] get LPPassManager to use it in llvm::CloneLoop
Hi, I try to write a FunctionPass that, among other tasks, has to clone some loops from the current function. How can I obtain the LPPassManager in order to use the CloneLoop function. In a LoopPass this is a parameter for the runOnLoop, but how can I obtain it in a FunctionPass? I tried simply by creating a new instance : ValueMap<const Value *, Value* > VMap;