This is a read only copy of the old FEniCS QA forum. Please visit the new QA forum to ask questions

Tensor Layout assemble c++

0 votes

I am trying to assemble vector just for 1 processor and I am running into seq. fault.

 TensorLayout local_vec_layout(MPI_COMM_SELF, {}, 0, 1, {}, false);
 dolfin::PETScVector local_vec;

   local_vec.init(local_vec_layout);
   assemble(local_vec, F); 

Any ides on bug?

asked May 5, 2016 by pepo_1 FEniCS Novice (280 points)
...