search for: v22

Displaying 20 results from an estimated 93 matches for "v22".

Did you mean: v2
2010 Jan 29
2
Create matrix with subset from unlist
...3 14.4 2 29.0 -38.1 [[2]] V1 V2 1 14.4 29.0 2 -38.1 -3.4 [[3]] V1 V2 1 29.0 -38.1 2 -3.4 55.1 [[4]] V1 V2 1 -38.1 -3.4 2 55.1 -1.0 [[5]] V1 V2 1 -3.4 55.1 2 -1.0 21.9 [[6]] V1 V2 1 55.1 -1.0 2 21.9 -10.9 ... > xx <- unlist(x) V11 V12 V21 V22 V11 V12 V21 V22 V11 V12 V21 V22 -27.3 29.0 14.4 -38.1 14.4 -38.1 29.0 -3.4 29.0 -3.4 -38.1 55.1 V11 V12 V21 V22 V11 V12 V21 V22 V11 V12 V21 V22 -38.1 55.1 -3.4 -1.0 -3.4 -1.0 55.1 21.9 55.1 21.9 -1.0 -10.9 V11 V12 V21 V22 V11 V12...
2003 Sep 30
2
FW: error predicting values from the LME
...t. Following a suggestion I even tried refactoring of the grouping variable (inter) after I created the subset. It didn't work. I have no other factor variables in the model. I really have got no clue what could be wrong. There is a sample from my data: > dnNew Grouped Data: y ~ v11 + v21 + v22 + v23 | inter v11 v21 v22 v23 inter 4 5.55186635 5.6620022 24.18033 5.003409 1 13 2.03852426 5.6620022 24.18033 5.003409 1 15 2.19825772 7.5676798 31.03986 4.746891 2 16 4.51368278 7.5676798 31.03986 4.746891 2 18 3.35322702 7.5676798 31.03986 4.746891 2 19...
2018 Jan 18
0
[PATCH v22 2/3] virtio-balloon: VIRTIO_BALLOON_F_FREE_PAGE_VQ
On Thu, Jan 18, 2018 at 10:30:18PM +0900, Tetsuo Handa wrote: > On 2018/01/18 1:44, Michael S. Tsirkin wrote: > >> +static void add_one_sg(struct virtqueue *vq, unsigned long pfn, uint32_t len) > >> +{ > >> + struct scatterlist sg; > >> + unsigned int unused; > >> + int err; > >> + > >> + sg_init_table(&sg, 1); > >> +
2018 Jan 18
0
[PATCH v22 2/3] virtio-balloon: VIRTIO_BALLOON_F_FREE_PAGE_VQ
On Fri, Jan 19, 2018 at 06:11:31AM +0900, Tetsuo Handa wrote: > Michael S. Tsirkin wrote: > > On Thu, Jan 18, 2018 at 10:30:18PM +0900, Tetsuo Handa wrote: > > > On 2018/01/18 1:44, Michael S. Tsirkin wrote: > > > >> +static void add_one_sg(struct virtqueue *vq, unsigned long pfn, uint32_t len) > > > >> +{ > > > >> + struct scatterlist
2018 Jan 17
0
[PATCH v22 3/3] virtio-balloon: don't report free pages when page poisoning is enabled
The guest free pages should not be discarded by the live migration thread when page poisoning is enabled with PAGE_POISONING_NO_SANITY=n, because skipping the transfer of such poisoned free pages will trigger false positive when new pages are allocated and checked on the destination. This patch adds a config field, poison_val. Guest writes to the config field to tell the host about the poisoning
2018 Jan 22
0
[virtio-dev] Re: [PATCH v22 2/3] virtio-balloon: VIRTIO_BALLOON_F_FREE_PAGE_VQ
On 01/19/2018 08:39 PM, Michael S. Tsirkin wrote: > On Fri, Jan 19, 2018 at 11:44:21AM +0800, Wei Wang wrote: >> On 01/18/2018 12:44 AM, Michael S. Tsirkin wrote: >>> On Wed, Jan 17, 2018 at 01:10:11PM +0800, Wei Wang wrote: >>> >>>> + vb->start_cmd_id = cmd_id; >>>> + queue_work(vb->balloon_wq, &vb->report_free_page_work);
2012 Mar 15
1
eigenvalues of matrices of partial derivatives with ryacas
...11 <- deriv(FIh, "Ih") > f12 <- deriv(FIh, "Iv") > f21 <- deriv(FIv, "Ih") > f22 <- deriv(FIv, "Iv") > v11 <- deriv(VIh, "Ih") > v12 <- deriv(VIh, "Iv") > v21 <- deriv(VIv, "Ih") > v22 <- deriv(VIv, "Iv") Next I would like to put these partial derivatives into two matrices, F and V: > F <- Expr("{{f11, f12}, {f21, f22}}") > V <- Expr("{{v11, v12}, {v21, v22}}") Finally, I would like to find the eigenvalues of F*Inverse(V). Some...
2018 Jan 24
1
[virtio-dev] Re: [PATCH v22 2/3] virtio-balloon: VIRTIO_BALLOON_F_FREE_PAGE_VQ
On 01/22/2018 07:25 PM, Wei Wang wrote: > On 01/19/2018 08:39 PM, Michael S. Tsirkin wrote: >> On Fri, Jan 19, 2018 at 11:44:21AM +0800, Wei Wang wrote: >>> On 01/18/2018 12:44 AM, Michael S. Tsirkin wrote: >>>> On Wed, Jan 17, 2018 at 01:10:11PM +0800, Wei Wang wrote: >>>> >>>>> + vb->start_cmd_id = cmd_id; >>>>> +
2018 Jan 19
0
[PATCH v22 2/3] virtio-balloon: VIRTIO_BALLOON_F_FREE_PAGE_VQ
On 01/18/2018 12:44 AM, Michael S. Tsirkin wrote: > On Wed, Jan 17, 2018 at 01:10:11PM +0800, Wei Wang wrote: > > >> +{ >> + struct scatterlist sg; >> + unsigned int unused; >> + int err; >> + >> + sg_init_one(&sg, addr, sizeof(uint32_t)); > This passes a guest-endian value to host. This is a problem: > should always pass LE values. I think
2018 Jan 24
1
[virtio-dev] Re: [PATCH v22 2/3] virtio-balloon: VIRTIO_BALLOON_F_FREE_PAGE_VQ
On Mon, Jan 22, 2018 at 07:25:45PM +0800, Wei Wang wrote: > On 01/19/2018 08:39 PM, Michael S. Tsirkin wrote: > > On Fri, Jan 19, 2018 at 11:44:21AM +0800, Wei Wang wrote: > > > On 01/18/2018 12:44 AM, Michael S. Tsirkin wrote: > > > > On Wed, Jan 17, 2018 at 01:10:11PM +0800, Wei Wang wrote: > > > > > > > > > + vb->start_cmd_id =
2009 Apr 04
1
Problem with sample()
...00000 p29 = B * 0.0009623383079593670000 p30 = B * 0.0008799959715670280000 ################Individual infection number################ v0 =0 v1 =1 v2 =2 v3 =3 v4 =4 v5 =5 v6 =6 v7 =7 v8 =8 v9 =9 v10 =10 v11 =11 v12 =12 v13 =13 v14 =14 v15 =15 v16 =16 v17 =17 v18 =18 v19 =19 v20 =20 v21 =21 v22 =22 v23 =23 v24 =24 v25 =25 v26 =26 v27 =27 v28 =28 v29 =29 v30 =30 #Set conditions of Petri Net N=list() N$M=c(susceptible, infectious, recovered) ################Pre-matrix################ N$Pre=matrix(c(0, 1, 0, v0, 1 , 0 , v1, 1 , 0 , v2, 1 , 0 , v3, 1 , 0 , v4, 1 , 0 , v5, 1 , 0 , v6,...
2015 Aug 22
3
sprintf error: "only 100 arguments allowed"
...vw', namespaces = NULL, target='V102', weight = 'weight', tag = NULL, hard_parse = F) ### error # [1] "sprintf('%f %f |A V1:%f V2:%f V3:%f V4:%f V5:%f V6:%f V7:%f V8:%f V9:%f V10:%f V11:%f V12:%f V13:%f V14:%f V15:%f V16:%f V17:%f V18:%f V19:%f V20:%f V21:%f V22:%f V23:%f V24:%f V25:%f V26:%f V27:%f V28:%f V29:%f V30:%f V31:%f V32:%f V33:%f V34:%f V35:%f V36:%f V37:%f V38:%f V39:%f V40:%f V41:%f V42:%f V43:%f V44:%f V45:%f V46:%f V47:%f V48:%f V49:%f V50:%f V51:%f V52:%f V53:%f V54:%f V55:%f V56:%f V57:%f V58:%f V59:%f V60:%f V61:%f V62:%f V63:%f V64:%f V6...
2018 Jan 17
0
[PATCH v22 2/3] virtio-balloon: VIRTIO_BALLOON_F_FREE_PAGE_VQ
On 01/17/2018 04:21 PM, Pankaj Gupta wrote: >> Negotiation of the VIRTIO_BALLOON_F_FREE_PAGE_VQ feature indicates the >> support of reporting hints of guest free pages to host via virtio-balloon. >> >> Host requests the guest to report free pages by sending a new cmd >> id to the guest via the free_page_report_cmd_id configuration register. >> >> When the
2004 Jan 20
1
evaluation of discriminant functions+multivariate homosce dasticity
...rices are not significantly different.\n') } else { cat('Covariance matrices are significantly different.\n') } return(list(MBox=MB, F=F1, df1=v1, df2=v21, pValue=P1)) } else { v1 = as.integer((p * (p + 1) * (g - 1)) / 2) ## Numerator df. v22 = as.integer(trunc((v1 + 2) / ((C^2) - Co))) ## Denominator df. b = v22 / (1 - C - (2 / v22)) F2 = (v22 * MB) / (v1 * (b - MB)) ## F approximation. ## Significance value associated to the observed F statistic. P2 = pf(F2, v1, v22, lower=FALSE) cat('\n----------...
2018 Jan 17
1
[PATCH v22 2/3] virtio-balloon: VIRTIO_BALLOON_F_FREE_PAGE_VQ
> On 01/17/2018 04:21 PM, Pankaj Gupta wrote: > >> Negotiation of the VIRTIO_BALLOON_F_FREE_PAGE_VQ feature indicates the > >> support of reporting hints of guest free pages to host via virtio-balloon. > >> > >> Host requests the guest to report free pages by sending a new cmd > >> id to the guest via the free_page_report_cmd_id configuration
2010 Sep 29
2
rpool spare
Using ZFS v22, is it possible to add a hot spare to rpool? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.opensolaris.org/pipermail/zfs-discuss/attachments/20100929/4b036d1d/attachment.html>
2010 May 24
2
import data from a csv file
..."V4" "V5" "V6" "V7" "V8" "V9" "V10" "V11" [13] "V12" "V13" "V14" "V15" "V16" "V17" "V18" "V19" "V20" "V21" "V22" "V23" [25] "V24" > plot(aalpha.data[2:14]) Somehow the plot is wrong. Can anyone give me some help? Thanks a lot!!! Hannah [[alternative HTML version deleted]]
2018 Jan 17
0
[PATCH v22 2/3] virtio-balloon: VIRTIO_BALLOON_F_FREE_PAGE_VQ
Negotiation of the VIRTIO_BALLOON_F_FREE_PAGE_VQ feature indicates the support of reporting hints of guest free pages to host via virtio-balloon. Host requests the guest to report free pages by sending a new cmd id to the guest via the free_page_report_cmd_id configuration register. When the guest starts to report, the first element added to the free page vq is the cmd id given by host. When the
2015 Aug 26
1
sprintf error: "only 100 arguments allowed"
...V102', weight = 'weight', >> tag = NULL, hard_parse = F) >> ### error >> # [1] "sprintf('%f %f |A V1:%f V2:%f V3:%f V4:%f V5:%f V6:%f V7:%f >> V8:%f V9:%f V10:%f V11:%f V12:%f V13:%f V14:%f V15:%f V16:%f V17:%f >> V18:%f V19:%f V20:%f V21:%f V22:%f V23:%f V24:%f V25:%f V26:%f V27:%f >> V28:%f V29:%f V30:%f V31:%f V32:%f V33:%f V34:%f V35:%f V36:%f V37:%f >> V38:%f V39:%f V40:%f V41:%f V42:%f V43:%f V44:%f V45:%f V46:%f V47:%f >> V48:%f V49:%f V50:%f V51:%f V52:%f V53:%f V54:%f V55:%f V56:%f V57:%f >> V58:%f V59:%f V...
2006 Jun 19
2
Nested variance-covariance matrix in Multilevel model
...g it in the lme function. The variance-covariance structure is a block diagonal matrix of the form, V1 0 0 V= 0 V2 0 0 0 V3 where V1...V3 are of the structure: v11 v12 V1= and so on. v21 v22 V1...V3 are assumed to have a compound symmetric variance-covariance structure and therefore the submatrices are of the form: Lambda Delta1 Delta1 ... Delta1 Delta1 Lambda Delta1 ... Delta1 v11=v22= ....... Delta1...