<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div dir="ltr">When processes get stuck, you can attach gdb to one process and back trace its call stack to see what it is doing, so we can have better understanding. 
<div><br clear="all">
<div>
<div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature">
<div dir="ltr">--Junchao Zhang</div>
</div>
</div>
<br>
</div>
</div>
<br>
<div class="gmail_quote">
<div dir="ltr" class="gmail_attr">On Fri, Sep 13, 2019 at 11:31 AM José Lorenzo 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>Hello,</div>
<div><br>
</div>
<div>I am solving a finite element problem with Dirichlet boundary conditions using PETSC. In the boundary conditions there are two terms: a first one that is known before hand (normally zero) and a second term that depends linearly on the unknown variable
 itself in the whole domain. Therefore, at every time step I need to iterate as the boundary condition depends on the field and the latter depends on the BC. Moreover, the problem is nonlinear and I use a ghosted vector to represent the field.<br>
</div>
<div><br>
</div>
<div>Every processor manages a portion of the domain and a portion of the boundary (if not interior). At every Newton iteration within the time loop the way I set the boundary conditions is as follows:</div>
<div><br>
</div>
<div>First, each processor computes the known term of the BC (first term) and inserts the values into the vector<br>
</div>
<div><br>
</div>
<div>call VecSetValues(H, nedge_own, edglocglo(diredg_loc) - 1, Hdir, INSERT_VALUES, ierr)<br>
call VecAssemblyBegin(H, ierr)<br>
call VecAssemblyEnd(H, ierr)</div>
<div><br>
</div>
<div>As far as I understand, at this stage VecAssembly will not need to communicate to other processors as each processor only sets values to components that belong to it.<br>
</div>
<div><br>
</div>
<div>Then, each processor computes its own contribution to the field-dependent term of the BC for the whole domain boundary as
<br>
</div>
<div><br>
</div>
<div>call VecSetValues(H, nedge_all, edgappglo(diredg_app) - 1, Hself, ADD_VALUES, ierr)<br>
call VecAssemblyBegin(H, ierr)<br>
call VecAssemblyEnd(H, ierr)</div>
<div><br>
</div>
<div>In this case communication will be needed as each processor will add values to vector components that are not stored by it, and I guess it might get very busy as all the processors will need to communicate with each other.<br>
</div>
<div><br>
</div>
<div>When using this strategy I don't find any issue for problems using a small amount of processors, but recently I've been solving using 90 processors and the simulation always hangs at the second VecSetValues at some random time step. It works fine for some
 time steps but at some point it just gets stuck and I have to cancel the simulation.
<br>
</div>
<div><br>
</div>
<div>I have managed to overcome this by making each processor contribute to its own components using first MPI_Reduce and then doing<br>
</div>
<div><br>
</div>
<div>call VecSetValues(H, nedge_own, edgappglo(diredg_app_loc), Hself_own, ADD_VALUES, ierr)<br>
call VecAssemblyBegin(H, ierr)<br>
call VecAssemblyEnd(H, ierr)<br>
</div>
<div><br>
</div>
<div>However I would like to understand whether there is something wrong in the code above.</div>
<div><br>
</div>
<div>Thank you.<br>
</div>
<div><br>
</div>
</div>
</blockquote>
</div>
</body>
</html>