<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div dir="ltr">
<div dir="ltr"><br>
</div>
<br>
<div class="gmail_quote">
<div dir="ltr" class="gmail_attr">On Tue, Apr 30, 2019 at 11:42 AM Sajid Ali via petsc-users <<a href="mailto:petsc-users@mcs.anl.gov">petsc-users@mcs.anl.gov</a>> wrote:<br>
</div>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div dir="ltr">
<div dir="ltr">
<div>Hi PETSc Developers, <br>
<br>
</div>
I see that in the examples for ISCreateGeneral, the index sets are created by copying values from int arrays (which were created by PetscMalloc1 which is not collective).
<br>
<br>
</div>
<div>If I the ISCreateGeneral is called with PETSC_COMM_WORLD and the int arrays on each rank are independently created, does the index set created concatenate all the int-arrays into one ? If not, what needs to be done to get such an index set ?
<br>
</div>
</div>
</blockquote>
<div>From my understanding, they are independently created and not concatenated.  I like index sets created with PETSC_COMM_SELF. They are easy to understand. </div>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div dir="ltr">
<div><br>
</div>
<div>PS: For context, I want to write a fftshift convenience function (like numpy, MATLAB) but for large distributed vectors. I thought that I could do this with VecScatter and two index sets, one shifted and one un-shifted. 
<br clear="all">
</div>
</div>
</blockquote>
<div>To achieve this, index sets created with PETSC_COMM_SELF are enough. They just need to contain global indices to indicate the MPI vector to MPI vector scatter. You can think each process provides one piece of the scatter.</div>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div dir="ltr">
<div></div>
<div dir="ltr">
<div>
<div><br>
</div>
<div>Thank You,<br>
</div>
<div>
<div dir="ltr" class="gmail-m_-6391578424711813235gmail_signature">
<div dir="ltr">
<div style="font-size:12.8px">Sajid Ali<br>
</div>
<div style="font-size:12.8px">Applied Physics<br>
</div>
<div style="font-size:12.8px">Northwestern University</div>
</div>
</div>
</div>
</div>
</div>
</div>
</blockquote>
</div>
</div>
</body>
</html>