<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
Hi Dave,
<div class=""><br class="">
</div>
<div class="">Thank you very much for your reply. That is indeed the problem. I have been working with matrices in Slepc but I don’t really understand it. I tried to preallocate but it still does not work. If you look at my code below:</div>
<div class=""><br class="">
</div>
<div class="">
<div class="">ierr = MatCreate(PETSC_COMM_WORLD,&A);CHKERRQ(ierr);</div>
<div class="">ierr = MatSetSizes(A,PETSC_DECIDE,PETSC_DECIDE,h_dim,h_dim);<span class="Apple-tab-span" style="white-space:pre">
</span>                     // h_dim is the dimension of the square matrix A</div>
<div class="">ierr = MatSetFromOptions(A);CHKERRQ(ierr);</div>
<div class="">ierr = MatSetUp(A);CHKERRQ(ierr);</div>
<div class="">ierr = MatGetOwnershipRange(A,&Istart,&Iend);CHKERRQ(ierr);</div>
<div class=""><br class="">
</div>
<div class="">MatSeqAIJSetPreallocation(A,0,nnz);                                      
<span class="Apple-tab-span" style="white-space:pre"></span>// I try to preallocate here, where nnz is the array containing the number of non-zero entries each row</div>
<div class=""><br class="">
</div>
<div class="">for (int i=0;i<row.size();i++) {</div>
<div class=""><span class="Apple-tab-span" style="white-space:pre"></span>MatSetValue(A,row[i],column[i],h[i],INSERT_VALUES);</div>
<div class="">}</div>
</div>
<div class=""><br class="">
</div>
<div class="">I am not sure what other information I need to give for the pre-allocation…</div>
<div class=""><br class="">
</div>
<div class="">Cheers,</div>
<div class=""><br class="">
</div>
<div class="">Yang Bo</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
<div><br class="">
<blockquote type="cite" class="">
<div class="">On 21 May 2020, at 4:08 PM, Dave May <<a href="mailto:dave.mayhem23@gmail.com" class="">dave.mayhem23@gmail.com</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class=""><b style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class="">-info
 | grep malloc</b></div>
</blockquote>
</div>
<br class="">
</div>
<hr>
<p style="font-size:10pt; color:#808080;font-family: 'Arial';">CONFIDENTIALITY: This email is intended solely for the person(s) named and may be confidential and/or privileged. If you are not the intended recipient, please delete it, notify us and do not copy,
 use, or disclose its contents. <br>
Towards a sustainable earth: Print only when necessary. Thank you. </p>
</body>
</html>