<div dir="ltr">Hello everyone,<div><br></div><div>I am trying to change load balance in ParMETIS in order to give different number of elements to different processors. In the manual, it states that changing "ubvec" parameter should work. So, instead of 1.05, I gave 1.2,1.5 and so on but load balance didn't change. I always get Max 5 Min 5 when I view load balance. The partitioning part of my code is: </div><div><br></div><div> ierr = MatConvert(A,MATMPIADJ,MAT_INITIAL_MATRIX,&AL);CHKERRQ(ierr);         <br>  ierr = MatPartitioningCreate(MPI_COMM_WORLD,&part);CHKERRQ(ierr);<br>  ierr = MatPartitioningSetAdjacency(part,AL);CHKERRQ(ierr);                          <br>  ierr = MatPartitioningSetFromOptions(part);CHKERRQ(ierr);<br>  ierr = MatPartitioningApply(part,&partitioning);CHKERRQ(ierr);<br>  MatPartitioningViewImbalance(part,partitioning);<br>  <br></div><div>What should I do? Why changing ubvec didn't change anything, am I missing something?</div><div><br></div><div>Thanks,</div><div><br></div><div>Eda</div></div>