<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;"><br><br>--- <b>09年12月2日,周三, ming zhu <i>&lt;foolishzhu@yahoo.com.cn&gt;</i></b> 写道:<br><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;"><br>发件人: ming zhu &lt;foolishzhu@yahoo.com.cn&gt;<br>主题: Re: How to copy global data to local ?<br>收件人: "petsc-maint Maintenance" &lt;petsc-maint@mcs.anl.gov&gt;<br>日期: 2009年12月2日,周三,下午10:32<br><br><div id="yiv1172394382"><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td style="font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit; -x-system-font: none;" valign="top">Sorry. OK<br>The problem is <br>if I use  <br>// n is 5 the total column number for U<br>ierr = MatGetSubMatrix(U,ix,iy,n,
 MAT_INITIAL_MATRIX,&amp;ui);CHKERRQ(ierr);<br>&nbsp;<br>when I run mpiexec -np 2 ./program<br>it reports <br>Sum of local lengths 10 does not equal global length 5, my local length 5<br><br>if I use <br>ierr = MatGetSubMatrix(U,ix,iy,PETSC_DECIDE, MAT_INITIAL_MATRIX,&amp;ui);CHKERRQ(ierr);<br><br>it reports<br>Only local values currently supported!<br><br>--- <b>09年12月2日,周三, Barry Smith <i>&lt;bsmith@mcs.anl.gov&gt;</i></b> 写道:<br><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;"><br>发件人: Barry Smith &lt;bsmith@mcs.anl..gov&gt;<br>主题: Re: How to copy global data to local ?<br>收件人: "PETSc users list" &lt;petsc-users@mcs.anl.gov&gt;, "petsc-maint Maintenance"
 &lt;petsc-maint@mcs.anl.gov&gt;<br>日期: 2009年12月2日,周三,下午3:52<br><br><div class="plainMail"><br>&nbsp; Let's move this over to <a rel="nofollow">petsc-maint@mcs.anl.gov</a> to cut the traffic on petsc-users See below.<br>On Dec 2, 2009, at 12:33 AM, ming zhu wrote:<br><br>&gt; OK. I am now use MatGetSubMatrix.My code is as follows<br>&gt; <br>&gt;&nbsp;&nbsp;&nbsp;PetscMalloc(n*sizeof(PetscInt),&amp;indices);<br>&gt;&nbsp;&nbsp;&nbsp;for (j = 0; j &lt; n; j++)<br>&gt;&nbsp;&nbsp;&nbsp;{<br>&gt;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;indices[j] = j;<br>&gt;&nbsp;&nbsp;&nbsp;}<br>&gt;&nbsp;&nbsp;&nbsp;ISCreateGeneral(PETSC_COMM_SELF,n,indices,&amp;iy); // get all columns<br>&gt;&nbsp; .....<br>&gt; <br>&gt;&nbsp; &nbsp; PetscMalloc(2*sizeof(PetscInt),&amp;indices);<br>&gt;&nbsp; &nbsp;&nbsp;&nbsp;indices[0] = i;<br>&gt;&nbsp; &nbsp;&nbsp;&nbsp;indices[1] = j;<br>&gt;&nbsp;
 &nbsp;&nbsp;&nbsp;ISCreateGeneral(PETSC_COMM_SELF,2,indices,&amp;ix);&nbsp; &nbsp;&nbsp;&nbsp;// only get i,j rows<br>&gt; <br>&gt;&nbsp; &nbsp;&nbsp;&nbsp;Mat ui,uj;<br>&gt; // I am not sure how to set the third parameter : how many "local " columns. Since I want all columns, I set it to n<br>&gt;&nbsp; &nbsp; &nbsp; ierr = MatGetSubMatrix(U,ix,iy,n, MAT_INITIAL_MATRIX,&amp;ui);CHKERRQ(ierr);<br>&gt; <br>&gt; What I really hope is to<br>&gt; <br>&gt;&nbsp; &nbsp;&nbsp;&nbsp;for (i = 0; i &lt; n; i++)<br>&gt; {<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;PetscInt row = 0;<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;MatGetValues(ui,1,&amp;row,1,&amp;i,&amp;u_ik);<br>&gt; }<br>&gt; It does not work. I tried to change the n to PETSC_DECIDE, it still does not work<br>&nbsp; &nbsp; &nbsp; ^^^^^^^^^^^^^^^&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;^^^^^^^^^^^^^^^^^<br><br>&nbsp;&nbsp;&nbsp;Saying "it does not work" is extremely uninformative and makes it difficult for us to know what happened and thus make useful suggestions. Please say exactly what goes wrong and cut and paste all error messages. At this point we would be totally guessing what is happening.<br><br>&nbsp;&nbsp;&nbsp;Barry<br><br>&gt; <br>&gt; So, I really doubt that whether I can get the entire row of the matrix.<br>&gt; <br>&gt; BTW, the matrix is created as follows:<br>&gt;&nbsp; MatCreateMPIDense(PETSC_COMM_WORLD,PETSC_DECIDE,PETSC_DECIDE,m,n,PETSC_NULL,&amp;U)<br>&gt; <br>&gt; THank you<br>&gt; --- 09年12月2日,周三, Barry Smith &lt;<a rel="nofollow">bsmith@mcs.anl.gov</a>&gt; 写道:<br>&gt;
 <br>&gt; 发件人: Barry Smith &lt;<a rel="nofollow">bsmith@mcs.anl.gov</a>&gt;<br>&gt; 主题: Re: How to copy global data to local ?<br>&gt; 收件人: "PETSc users list" &lt;<a rel="nofollow">petsc-users@mcs.anl.gov</a>&gt;<br>&gt; 日期: 2009年12月2日,周三,下午1:46<br>&gt; <br>&gt; <br>&gt;&nbsp; &nbsp; Don't know what MatGetSubMatrixRaw() is, but based on the calling sequence you are asking for the ith row whatever that is, and n columns in the array indices<br>&gt; <br>&gt;&nbsp; &nbsp; For MatGetSubMatrix() each process can ask for any rows it wants, but all the processors have to ask for the same columns that are wanted.<br>&gt; <br>&gt;&nbsp; &nbsp; Barry<br>&gt; <br>&gt; On Dec 1, 2009, at 9:59 PM, ming zhu wrote:<br>&gt; <br>&gt; &gt; Hi<br>&gt; &gt; I tried MatGetSubMatrix() but I am a little confused
 by the column parameter. For example<br>&gt; &gt; My matrix is U (m * n). I want to get i,j rows to local.<br>&gt; &gt; my code is<br>&gt; &gt;<br>&gt; &gt; PetscInt* rowindex,colindex;<br>&gt; &gt; PetscMalloc...<br>&gt; &gt; for (k= 0; k &lt; n; k++)<br>&gt; &gt;&nbsp; &nbsp; colindex[k] = k;<br>&gt; &gt;<br>&gt; &gt; rowindex[0] = i;<br>&gt; &gt; rowindex[1] = j;<br>&gt; &gt;<br>&gt; &gt; MatGetSubMatrixRaw(U,1,&amp;i,n,indices,n,MAT_INITIAL_MATRIX,&amp;newmat);<br>&gt; &gt;<br>&gt; &gt; What I hope is newmat is 2 * n matrix. But I failed.<br>&gt; &gt;<br>&gt; &gt; Thank you<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; --- 09年12月1日,周二, Barry Smith &lt;<a rel="nofollow">bsmith@mcs.anl.gov</a>&gt; 写道:<br>&gt; &gt;<br>&gt; &gt; 发件人: Barry Smith &lt;<a rel="nofollow">bsmith@mcs.anl.gov</a>&gt;<br>&gt; &gt; 主题:
 Re: How to copy global data to local ?<br>&gt; &gt; 收件人: "PETSc users list" &lt;<a rel="nofollow">petsc-users@mcs.anl.gov</a>&gt;<br>&gt; &gt; 日期: 2009年12月1日,周二,下午10:35<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;&nbsp; &nbsp; You misunderstand the usage of MatGetSubMatrix(). Any process can request ANY row, including rows that are not originally owned by that process.<br>&gt; &gt;<br>&gt; &gt;&nbsp; &nbsp; Barry<br>&gt; &gt;<br>&gt; &gt; On Dec 1, 2009, at 8:29 AM, ming zhu wrote:<br>&gt; &gt;<br>&gt; &gt; &gt; It seems that MatGetSubMatrix() only get the local matrix for the processor&nbsp; If U is global(PETSC_COMM_WORLD), the local matrix may not store the column or row I wanted. For example, if U is 4*4, and there are 4 processors, processors one has local matrix 2*2, but i need the third row, Then,MatGetSubmatrix() may not work<br>&gt; &gt; &gt;<br>&gt; &gt;
 &gt; --- 09年12月1日,周二, Barry Smith &lt;<a rel="nofollow">bsmith@mcs.anl.gov</a>&gt; 写道:<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; 发件人: Barry Smith &lt;<a rel="nofollow">bsmith@mcs..anl.gov</a>&gt;<br>&gt; &gt; &gt; 主题: Re: How to copy global data to local ?<br>&gt; &gt; &gt; 收件人: "PETSc users list" &lt;<a rel="nofollow">petsc-users@mcs.anl.gov</a>&gt;<br>&gt; &gt; &gt; 日期: 2009年12月1日,周二,下午10:23<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; On Nov 30, 2009, at 11:21 PM, ming zhu wrote:<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; Hi<br>&gt; &gt; &gt; &gt; I have a huge matrix U for all processors (PETSC_COMM_WORLD). I only want to copy only two rows (i,j) for each local processor. i,j is different for each
 processor and not related to rank.&nbsp; I was trying to use a vector filter (like, 00000010000). However, if the vector is PETSC_COMM_WORLD, it will be changed by different processor. So, how to make it ?<br>&gt; &gt; &gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;&nbsp; &nbsp; I do not understand what this means. To do the multiply
 you can and should use a vector of PETSC_COMM_WORLD.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;&nbsp; &nbsp; Also multiplying by a vector will not give you back "rows" of a matrix. Do you truly want the entire row of nonzeros of the matrix or something else. If you want the entire row or part of a row then you can use MatGetSubMatrix().<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;&nbsp; &nbsp; Barry<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; Thank you<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; My original code is<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; Vec filter<br>&gt; &gt; &gt; &gt; VecCreate(PETSC_COMM_WORLD,&amp;filter);<br>&gt; &gt; &gt; &gt; VecSetsizes(filter,PETSC_DECIDE,m);<br>&gt; &gt; &gt; &gt; VecSetFromOptions(filter);<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; Vecset(filter,0);<br>&gt; &gt; &gt; &gt; VecSetValue(filter,i,1,INSERT_VALUES);<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; ...<br>&gt; &gt; &gt; &gt; MatMult(U, filter,ui);<br>&gt;
 &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; If I create filter with PETSC_COMM_SELF, it is impossible for U and filter to multiply.<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; 好玩贺卡等你发,邮箱贺卡全新上线!<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; 好玩贺卡等你发,邮箱贺卡全新上线!<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; 好玩贺卡等你发,邮箱贺卡全新上线!<br>&gt; <br>&gt; <br>&gt; 好玩贺卡等你发,邮箱贺卡全新上线!<br><br></div></blockquote></td></tr></tbody></table><br>


      <hr size="1"><a rel="nofollow" target="_blank" href="http://cn.rd.yahoo.com/mail_cn/tagline/card/*http://card.mail.cn.yahoo.com/">  好玩贺卡等你发,邮箱贺卡全新上线!</a></div></blockquote></td></tr></table><br>


      <hr size=1><a href="http://cn.rd.yahoo.com/mail_cn/tagline/card/*http://card.mail.cn.yahoo.com/">  好玩贺卡等你发,邮箱贺卡全新上线!</a>